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.
Get Using SQLite now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.