1.Dd December 19, 2018 2.Dt SQLITE3_MUTEX 3 3.Os 4.Sh NAME 5.Nm sqlite3_mutex 6.Nd Mutex Handle 7.Sh SYNOPSIS 8.Vt typedef struct sqlite3_mutex sqlite3_mutex; 9.Sh DESCRIPTION 10The mutex module within SQLite defines sqlite3_mutex to 11be an abstract type for a mutex object. 12The SQLite core never looks at the internal representation of an sqlite3_mutex. 13It only deals with pointers to the sqlite3_mutex object. 14.Pp 15Mutexes are created using sqlite3_mutex_alloc(). 16.Sh SEE ALSO 17.Xr sqlite3_mutex 3 , 18.Xr sqlite3_mutex_alloc 3 19