xref: /netbsd-src/external/public-domain/sqlite/man/SQLITE_SHM_NLOCK.3 (revision b9988867a8ad969c45a52aa7628bc932ec98d46b)
1.Dd January 24, 2024
2.Dt SQLITE_SHM_NLOCK 3
3.Os
4.Sh NAME
5.Nm SQLITE_SHM_NLOCK
6.Nd maximum xShmLock index
7.Sh SYNOPSIS
8.In sqlite3.h
9.Fd #define SQLITE_SHM_NLOCK
10.Sh DESCRIPTION
11The xShmLock method on sqlite3_io_methods may use
12values between 0 and this upper bound as its "offset" argument.
13The SQLite core will never attempt to acquire or release a lock outside
14of this range
15.Sh IMPLEMENTATION NOTES
16These declarations were extracted from the
17interface documentation at line 1556.
18.Bd -literal
19#define SQLITE_SHM_NLOCK        8
20.Ed
21.Sh SEE ALSO
22.Xr sqlite3_io_methods 3
23