HomeSort by relevance Sort by last modified time
    Searched defs:mtx_trylock (Results 1 - 2 of 2) sorted by null

  /external/mesa3d/include/c11/
threads_posix.h 44 Otherwise use mtx_trylock() + *busy loop* emulation.
231 mtx_trylock(mtx_t *mtx);
256 while (mtx_trylock(mtx) != thrd_success) {
270 mtx_trylock(mtx_t *mtx) function
threads_win32.h 43 Otherwise emulate by mtx_trylock() + *busy loop* for WinXP.
121 static inline int mtx_trylock(mtx_t *mtx);
129 - Emulated `mtx_timelock()' with mtx_trylock() + *busy loop*
447 while (mtx_trylock(mtx) != thrd_success) {
459 mtx_trylock(mtx_t *mtx) function

Completed in 56 milliseconds