Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can you please help me in this:

How to create a child thread in a parent thread. And the parent thread should be terminated only after the child thread is terminated. and the parent thread is completed only after completing child thread.

share|improve this question

1 Answer

Use NSCondition. Have the child thread signal the condition on termination. Have the parent wait on the condition. Add a predicate (a bool will do it) to work around the 'spurious signals' issues. See Using Conditions on the Threading Programming Guide.

share|improve this answer
Note though that your definition of a 'child thread' matches exactly the definition of a function call, so most likely you should use a function call not a 'thread'. – Remus Rusanu Dec 28 '10 at 6:18
Can you please give me a sample code of parent thread and child thread program. Thanks in advance – bharath gangupalli Dec 28 '10 at 6:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.