Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c39627 static sqlite3_mutex *unixBigLock = 0; variable
39629 assert( sqlite3_mutex_notheld(unixBigLock) ); /* Not a recursive mutex */ in unixEnterMutex()
39630 sqlite3_mutex_enter(unixBigLock); in unixEnterMutex()
39633 assert( sqlite3_mutex_held(unixBigLock) ); in unixLeaveMutex()
39634 sqlite3_mutex_leave(unixBigLock); in unixLeaveMutex()
39638 return sqlite3_mutex_held(unixBigLock); in unixMutexHeld()
47088 unixBigLock = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_VFS1); in sqlite3_os_init()
47122 unixBigLock = 0; in sqlite3_os_end()