What is the best way to launch a child process from a Cocoa application. The thing I really need to ensure is that all child processes terminate when the parent application quits.

I'm more than familiar with how to use fork and exec, but do I really want to create an entire copy of my not-too-heavy but also not-that-lightweight Cocoa application?

link|improve this question

58% accept rate
What is your child process doing? – Rob Keniger Feb 16 at 4:40
Just running a simple Unix command, but it's not able to exit on it's own. I've tried using NSTask for this, but it doesn't reliably terminate the command in all cases, hence why I'm looking into a more reliable parent-child process approach. – Anonymous Feb 16 at 6:11
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.