Name
sqlite3_mutex_leave() — Release a mutex lock
Definition
void sqlite3_mutex_leave( sqlite3_mutex* mutex );
-
mutex
A mutual exclusion lock. If a NULL value is
passed, the function will simply return.
Description
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.