> assume you are creating a thread boss which himself creates a thread > assistant. Is it possible > > 1. that the process which created boss calls a assistant->join, or
Yes, the 'main' thread can ->join on the assistant. It would need to get the threads object using threads->object($tid). > 2. is it possible to gain back control over a detached thread? No. Once detached, you cannot gain any control over it.
