◐ Shell
clean mode source ↗

Message 216871 - Python tracker

Hum, your comment about deferring is wrong, since thread_nt.h also does the deferring:

int
PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag)
{
    return PyThread_acquire_lock_timed(aLock, waitflag ? -1 : 0, 0);
}