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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
thread.c 220 * associations. File static keyhead heads the list. keymutex is used
236 static PyThread_type_lock keymutex = NULL; variable
251 * Caution: this used to be too clever, trying to hold keymutex only
266 if (!keymutex)
268 PyThread_acquire_lock(keymutex, 1);
296 PyThread_release_lock(keymutex);
310 if (keymutex == NULL)
311 keymutex = PyThread_allocate_lock();
321 PyThread_acquire_lock(keymutex, 1);
332 PyThread_release_lock(keymutex);
    [all...]
  /external/python/cpython2/Python/
thread.c 220 * associations. File static keyhead heads the list. keymutex is used
236 static PyThread_type_lock keymutex = NULL; variable
251 * Caution: this used to be too clever, trying to hold keymutex only
266 if (!keymutex)
268 PyThread_acquire_lock(keymutex, 1);
296 PyThread_release_lock(keymutex);
310 if (keymutex == NULL)
311 keymutex = PyThread_allocate_lock();
321 PyThread_acquire_lock(keymutex, 1);
332 PyThread_release_lock(keymutex);
    [all...]
  /external/python/cpython3/Python/
thread.c 167 * associations. File static keyhead heads the list. keymutex is used
183 static PyThread_type_lock keymutex = NULL; variable
198 * Caution: this used to be too clever, trying to hold keymutex only
213 if (!keymutex)
215 PyThread_acquire_lock(keymutex, 1);
246 PyThread_release_lock(keymutex);
260 if (keymutex == NULL)
261 keymutex = PyThread_allocate_lock();
271 PyThread_acquire_lock(keymutex, 1);
282 PyThread_release_lock(keymutex);
    [all...]

Completed in 727 milliseconds