Home
last modified time | relevance | path

Searched refs:thrd_busy (Results 1 – 4 of 4) sorted by relevance

/hardware/google/gfxstream/guest/mesa/src/c11/
Dthreads.h145 thrd_busy, // resource busy enumerator
/hardware/google/gfxstream/guest/mesa/src/util/
Dsimple_mtx.h192 assert(ret == thrd_busy);
/hardware/google/gfxstream/guest/mesa/src/c11/impl/
Dthreads_posix.c255 return (pthread_mutex_trylock(mtx) == 0) ? thrd_success : thrd_busy; in mtx_trylock()
Dthreads_win32.c268 return TryEnterCriticalSection((PCRITICAL_SECTION)mtx) ? thrd_success : thrd_busy; in mtx_trylock()