HomeSort by relevance Sort by last modified time
    Searched refs:id_mutex (Results 1 - 3 of 3) sorted by null

  /external/python/cpython3/Python/
pystate.c 133 interp->id_mutex = NULL;
255 if (interp->id_mutex != NULL) {
256 PyThread_free_lock(interp->id_mutex);
299 if (interp->id_mutex != NULL) {
302 interp->id_mutex = PyThread_allocate_lock();
303 if (interp->id_mutex == NULL) {
316 if (interp->id_mutex == NULL) {
319 PyThread_acquire_lock(interp->id_mutex, WAIT_LOCK);
321 PyThread_release_lock(interp->id_mutex);
328 if (interp->id_mutex == NULL)
    [all...]
  /external/libdrm/radeon/
radeon_cs_gem.c 81 static pthread_mutex_t id_mutex = PTHREAD_MUTEX_INITIALIZER; variable
100 pthread_mutex_lock( &id_mutex );
109 pthread_mutex_unlock( &id_mutex );
118 pthread_mutex_lock( &id_mutex );
122 pthread_mutex_unlock( &id_mutex );
  /external/python/cpython3/Include/
pystate.h 120 PyThread_type_lock id_mutex; member in struct:_is

Completed in 91 milliseconds