Home
last modified time | relevance | path

Searched refs:PyCOND_TIMEDWAIT (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Python/
Dcondvar.h69 PyCOND_TIMEDWAIT(PyCOND_T *cond, PyMUTEX_T *mut, long long us) in PyCOND_TIMEDWAIT() function
199 PyCOND_TIMEDWAIT(PyCOND_T *cv, PyMUTEX_T *cs, long long us) in PyCOND_TIMEDWAIT() function
285 PyCOND_TIMEDWAIT(PyCOND_T *cv, PyMUTEX_T *cs, long long us) in PyCOND_TIMEDWAIT() function
Dceval_gil.h81 int r = PyCOND_TIMEDWAIT(&(cond), &(mut), (microseconds)); \
Dthread_nt.h81 if (PyCOND_TIMEDWAIT(&mutex->cv, &mutex->cs, (long long)milliseconds*1000) < 0) { in EnterNonRecursiveMutex()