[issue8411] Improve condition variable emulation on NT

Kristján Valur Jónsson report at bugs.python.org
Mon Aug 9 10:40:19 CEST 2010


Kristján Valur Jónsson <kristjan at ccpgames.com> added the comment:

You wan't to have the Semaphore with a max count of infinite because
a) of the "race condition" mentioned (actually, possible discrepancy between n_waiting and actual semaphore value), which can cause the semaphore count to temporarily go positive, and
b) If you implement _cond_broadcast(), which would have code like:
  int waiting = cond->n_waiting;
  if (waiting > 0) {
    cond->n_waiting = 0
    ReleaseSemaphore(cond->sem, waiting, 0);
}

The semaphore value going above 0 is not a "bug" but an implementation detail stemming from the fact that n_waiting cannot reliably reflect the semaphore state at each particular time.  Due to locking, it may lag behind the state a little bit.

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue8411>
_______________________________________


More information about the Python-bugs-list mailing list