August 2010
Intermediate to advanced
526 pages
23h 39m
English
sqlite3_mutex_free() — Deallocate a mutex lock
void sqlite3_mutex_free( sqlite3_mutex* mutex );
mutex
A mutual exclusion lock. Passing in a NULL pointer are not allowed.
This function destroys and deallocates a mutual exclusion lock.
The lock should not be held by any thread when it is freed.
Applications should only free locks that the application created
with sqlite3_mutex_alloc().
Read now
Unlock full access