This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: threading.Thread objects are not reusable after join()
Type: behavior Stage:
Components: Library (Lib) Versions: Python 2.4, Python 2.5
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: amaury.forgeotdarc, dweeves, loewis
Priority: normal Keywords:

Created on 2007-12-14 12:11 by dweeves, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
unnamed dweeves, 2007-12-14 14:31
Messages (4)
msg58622 - (view) Author: Sebastien BRACQUEMONT (dweeves) Date: 2007-12-14 12:11
After a call to join() method on a Threading.thread object,there is no
way to successfully call start() method on it.

Indeed, the __started flag is not reset in the theading.Thread join()
method. 
Since the start() method checks for __started flag , this flag is always  
true after a first start, despite the thread was effectively stopped by
the join() call

Since it's perfectly legal to store a threading.Thread object in a
variable or an object member, i think the join() behaviour is odd
because it prevents instance reusability.
msg58625 - (view) Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) Date: 2007-12-14 13:03
From the documentation:
http://docs.python.org/dev/library/threading.html#threading.Thread.start
start() must be called at most once per thread object.

I think this will not change: when a system thread terminates, you
cannot restart it; you have to create another thread.
The same argument applies to threading.Thread. It would be surprising
that this object can represent multiple system threads.

You should create and start different Threads each time.
msg58627 - (view) Author: Sebastien BRACQUEMONT (dweeves) Date: 2007-12-14 14:31
Hi Amaury,

to me,Thread objects are meant to be abstract representation of a processing that will occur in a separate execution unit at thread start time.
Indeed, that's what the following text (from the link you provided tries to explain)

"Once a thread object is created, its activity must be started by calling the thread’s start() method. This invokes the run() method in a separate thread of control."

So, the 'System Thread' is only created at start() call (which is a good implementation choice)
Moreover, the join() method (when completed) will wait for the System Thread to be disallocated.

However, the Thread object instance and the processing bound to it are still valid.

So in an object oriented point of view, (and syntactically too) , it should be valid to reuse the object (and so repeat the processing bound to it) as many times as necessary without the need to create a new instance as long as the Thread object state is not Alive.

What suprises me , is that the current implementation  of threading.Thread (apart from the __started flag behaviour) is compatible with that point of view and i see no limitations (apart that bug) preventing such a use of threads.

I think the threading API will provide better 'high-level' view if it didn't depend on low level considerations (as the dependency on the existence / reusability of the peer System Thread that will be used to effectively host the code execution)

Regards,

Sebastien

_________________________________________________________________
Express yourself instantly with MSN Messenger! Download today it's FREE!
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/
msg58631 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2007-12-14 16:58
I agree with Amaury. This all works exactly as it should work, and will
not change.
History
Date User Action Args
2022-04-11 14:56:28adminsetgithub: 45967
2007-12-14 16:58:06loewissetnosy: + loewis
messages: + msg58631
2007-12-14 14:31:24dweevessetfiles: + unnamed
messages: + msg58627
2007-12-14 13:03:54amaury.forgeotdarcsetstatus: open -> closed
resolution: not a bug
messages: + msg58625
nosy: + amaury.forgeotdarc
2007-12-14 12:11:47dweevescreate