Searched refs:waitflag (Results 1 – 3 of 3) sorted by relevance
342 PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag) in PyThread_acquire_lock() argument344 return PyThread_acquire_lock_timed(aLock, waitflag ? -1 : 0, 0); in PyThread_acquire_lock()
750 PyThread_acquire_lock(PyThread_type_lock lock, int waitflag) in PyThread_acquire_lock() argument752 return PyThread_acquire_lock_timed(lock, waitflag ? -1 : 0, /*intr_flag=*/0); in PyThread_acquire_lock()
158 .. method:: lock.acquire(waitflag=1, timeout=-1)164 If the integer *waitflag* argument is present, the action depends on its172 a *timeout* if *waitflag* is zero.