August 2010
Intermediate to advanced
526 pages
23h 39m
English
sqlite3_mutex_leave() — Release a mutex lock
void sqlite3_mutex_leave( sqlite3_mutex* mutex );
mutex
A mutual exclusion lock. If a NULL value is passed, the function will simply return.
This function allows a thread to release its hold on a mutual exclusion lock. This makes the lock available to other threads. This is typically done when leaving a critical section of code.
Read now
Unlock full access