|
system() is fine for simple things. If you are looking for more sophisticated interaction of the two programs, you might want to read about fork() and wait(). Using fork(), exec..(), wait(), pipe(), open(), close(), dup(), signal() and sigaction() you can build pretty sophisticated communication mechanisms between mother and daughter processes. Good reading in this case, this is all about basic Unix functionalities. Didier Dr. Nikolaus Klepp a écrit : ever tried system() ? n. Am Samstag, 25. November 2006 02:29 schrieb Junior: |