Home
last modified time | relevance | path

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

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