RE: nested threads
[email protected] ("Jerry D. Hedden")
| Newsgroups | perl.ithreads,perl.ithreads |
|---|---|
| Message-ID | <20060504062557.fb30e530d17747c2b054d625b8945d88.41025b7f5a.wbe@email.secureserver.net> |
> 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.