Re: nested threading

2010-04-09 Thread Aahz
In article <4566e767-768f-4399-8a6b-5530ec90b...@a37g2000prd.googlegroups.com>, Omer Ihsan wrote: > >is there anything as "nested threading"that is, call a thread from >within a thread. >in this case how will thread locking take place. > >for example initi

Re: nested threading

2010-03-25 Thread Chris Colbert
Spawning a thread from within a thread works just fine. Calling thread.start() is a non-blocking function and returns immediately. On Thu, Mar 25, 2010 at 11:23 AM, Omer Ihsan wrote: > is there anything as "nested threading"that is, call a thread from > within a thread. &g

nested threading

2010-03-25 Thread Omer Ihsan
is there anything as "nested threading"that is, call a thread from within a thread. in this case how will thread locking take place. for example initially there were two functions that were called using threading.Thread. these wont get unlocked unless both of them are done with wha