Home
last modified time | relevance | path

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

/dports/devel/R-cran-later/later/src/
H A Dtinycthread.c238 ret = TryEnterCriticalSection(&(mtx->mHandle.cs)) ? tct_thrd_success : tct_thrd_busy; in tct_mtx_trylock()
242 …t = (WaitForSingleObject(mtx->mHandle.mut, 0) == WAIT_OBJECT_0) ? tct_thrd_success : tct_thrd_busy; in tct_mtx_trylock()
250 ret = tct_thrd_busy; in tct_mtx_trylock()
259 return (pthread_mutex_trylock(mtx) == 0) ? tct_thrd_success : tct_thrd_busy; in tct_mtx_trylock()
H A Dthreadutils.h52 } else if (res == tct_thrd_busy) { in tryLock()
H A Dtinycthread.h185 #define tct_thrd_busy 3 /**< The requested operation failed because a tesource requested by a t… macro