|
|
|
|
|
by cryptonector
2628 days ago
|
|
fork() is generally unsafe for that reason, and OS X is only special in this regard in that it has more of these hidden C library handles that can blow up on the child-side of fork(). vfork()+exec()-or-_exit() is much safer. |
|