Home
last modified time | relevance | path

Searched refs:PyThread_acquire_lock_timed (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Modules/
D_queuemodule.c218 r = PyThread_acquire_lock_timed(self->lock, 0, 0); in _queue_SimpleQueue_get_impl()
221 r = PyThread_acquire_lock_timed(self->lock, microseconds, 1); in _queue_SimpleQueue_get_impl()
D_threadmodule.c60 r = PyThread_acquire_lock_timed(lock, 0, 0); in acquire_timed()
63 r = PyThread_acquire_lock_timed(lock, microseconds, 1); in acquire_timed()
Dfaulthandler.c602 st = PyThread_acquire_lock_timed(thread.cancel_event, in faulthandler_thread()
/external/python/cpython3/Python/
Dthread_pthread.h427 PyThread_acquire_lock_timed(PyThread_type_lock lock, PY_TIMEOUT_T microseconds, in PyThread_acquire_lock_timed() function
599 PyThread_acquire_lock_timed(PyThread_type_lock lock, PY_TIMEOUT_T microseconds, in PyThread_acquire_lock_timed() function
720 return PyThread_acquire_lock_timed(lock, waitflag ? -1 : 0, /*intr_flag=*/0); in PyThread_acquire_lock()
Dthread_nt.h299 PyThread_acquire_lock_timed(PyThread_type_lock aLock, in PyThread_acquire_lock_timed() function
338 return PyThread_acquire_lock_timed(aLock, waitflag ? -1 : 0, 0); in PyThread_acquire_lock()
/external/python/cpython3/Include/
Dpythread.h87 PyAPI_FUNC(PyLockStatus) PyThread_acquire_lock_timed(PyThread_type_lock,
/external/python/cpython3/Modules/_io/
Dbufferedio.c289 st = PyThread_acquire_lock_timed(self->lock, (PY_TIMEOUT_T)1e6, 0); in _enter_buffered_busy()
/external/python/cpython3/Misc/NEWS.d/
D3.7.0a3.rst846 Fix the pthread+semaphore implementation of PyThread_acquire_lock_timed()