Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
Dthread_pth.h27 pth_cond_t lock_released; member
103 status = pth_cond_init(&lock->lock_released); in PyThread_allocate_lock()
146 status = pth_cond_await(&thelock->lock_released, in PyThread_acquire_lock()
176 status = pth_cond_notify( &thelock->lock_released, 0 ); in PyThread_release_lock()
Dthread_pthread.h116 pthread_cond_t lock_released; member
378 status = pthread_cond_init(&lock->lock_released, in PyThread_allocate_lock()
404 status = pthread_cond_destroy( &thelock->lock_released ); in PyThread_free_lock()
437 status = pthread_cond_wait(&thelock->lock_released, in PyThread_acquire_lock()
472 status = pthread_cond_signal( &thelock->lock_released ); in PyThread_release_lock()
/external/python/cpython3/Python/
Dthread_pthread.h131 pthread_cond_t lock_released; member
475 status = pthread_cond_init(&lock->lock_released, in PyThread_allocate_lock()
501 status = pthread_cond_destroy( &thelock->lock_released ); in PyThread_free_lock()
545 &thelock->lock_released, in PyThread_acquire_lock_timed()
553 &thelock->lock_released, in PyThread_acquire_lock_timed()
596 status = pthread_cond_signal( &thelock->lock_released ); in PyThread_release_lock()