xref: /netbsd-src/external/public-domain/sqlite/man/sqlite3_mutex.3 (revision b9988867a8ad969c45a52aa7628bc932ec98d46b)
1.Dd January 24, 2024
2.Dt SQLITE3_MUTEX 3
3.Os
4.Sh NAME
5.Nm sqlite3_mutex
6.Nd mutex handle
7.Sh SYNOPSIS
8.In sqlite3.h
9.Vt typedef struct sqlite3_mutex sqlite3_mutex;
10.Sh DESCRIPTION
11The mutex module within SQLite defines sqlite3_mutex to
12be an abstract type for a mutex object.
13The SQLite core never looks at the internal representation of an sqlite3_mutex.
14It only deals with pointers to the sqlite3_mutex object.
15.Pp
16Mutexes are created using
17.Fn sqlite3_mutex_alloc .
18.Sh IMPLEMENTATION NOTES
19These declarations were extracted from the
20interface documentation at line 1253.
21.Bd -literal
22typedef struct sqlite3_mutex sqlite3_mutex;
23.Ed
24.Sh SEE ALSO
25.Xr sqlite3_mutex_alloc 3
26