xref: /netbsd-src/external/public-domain/sqlite/man/sqlite3_mutex.3 (revision bdc22b2e01993381dcefeff2bc9b56ca75a4235c)
1.Dd March 11, 2017
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