Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dmutex_w32.c116 static int winMutex_isNt = -1; /* <0 means "need to query" */ variable
327 assert( winMutex_isNt>=-1 && winMutex_isNt<=1 ); in winMutexTry()
328 if( winMutex_isNt<0 ){ in winMutexTry()
329 winMutex_isNt = sqlite3_win32_is_nt(); in winMutexTry()
331 assert( winMutex_isNt==0 || winMutex_isNt==1 ); in winMutexTry()
332 if( winMutex_isNt && TryEnterCriticalSection(&p->mutex) ){ in winMutexTry()