Name

sqlite3_mutex_free() — Deallocate a mutex lock

Definition

void sqlite3_mutex_free( sqlite3_mutex* mutex );
mutex

A mutual exclusion lock. Passing in a NULL pointer are not allowed.

Description

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().

See Also

sqlite3_mutex_alloc()