On Wed, 17 Jun 1998, Renato wrote:
> Remember when your in the child process you must kill the child before
> returning back to the parent process. You can use exit(1) or whatever takes
> your fancy. Good Luck
U should avoid exit() because it will flush the I/O buffers (the file
descriptors are inherited after fork()) and will call the cleanup code
registered by atexit() so it *may* affect the parent in some way .
The way to exit from child without affecting the parent process is
_exit()
Bets regards
Marin
-= Why do we need gates in a world without fences? =-