Tim Peters added the comment:

Nasty problem ;-)

I don't understand the need for all the indirections in the second patch.  
Like, why use a weakref?  It's not like we have to worry about an immortal 
tstate keeping a measly little lock object alive forever, right?  Seems to me 
that if the tstate object held the new lock directly, the tstate destructor 
could release the lock directly (and so also skip the new tstate->on_delete and 
tstate->on_delete_data indirections too).

Then again, I'd settle for Py_EndInterpreter simply sleeping for a second and 
trying again when it finds "another thread" hanging around (effectively moving 
Tamas's sleep() into Py_EndInterpreter, but only sleeping if needed).  Yes, 
that's theoretically insecure.

But if we're worried about wildly improbable timing problems, then the patched 
code can appear not to honor a non-None Thread.join() `timeout` argument too.  
That is, the first call to the new `pred()` can theoretically consume any 
amount of time, due to its self._tstate_lock.acquire().  The same kinds of 
timing implausibilities that could cause a short sleep to fail could also cause 
that acquire() to take "a long time" (maybe even 2 seconds - LOL).

But, ya, it's better to really fix it.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue18808>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to