Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dos_unix.c737 static sqlite3_mutex *unixBigLock = 0; variable
739 assert( sqlite3_mutex_notheld(unixBigLock) ); /* Not a recursive mutex */ in unixEnterMutex()
740 sqlite3_mutex_enter(unixBigLock); in unixEnterMutex()
743 assert( sqlite3_mutex_held(unixBigLock) ); in unixLeaveMutex()
744 sqlite3_mutex_leave(unixBigLock); in unixLeaveMutex()
748 return sqlite3_mutex_held(unixBigLock); in unixMutexHeld()
8071 unixBigLock = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_VFS1); in sqlite3_os_init()
8105 unixBigLock = 0; in sqlite3_os_end()