summaryrefslogtreecommitdiff
path: root/static/netbsd/man3/sqlite3session_memory_used.3
blob: d9de94dc29a93123c1560c7025dc74d242ecf0fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.Dd January 24, 2024
.Dt SQLITE3SESSION_MEMORY_USED 3
.Os
.Sh NAME
.Nm sqlite3session_memory_used
.Nd query for the amount of heap memory used by a session object
.Sh SYNOPSIS
.In sqlite3.h
.Ft sqlite3_int64
.Fo sqlite3session_memory_used
.Fa "sqlite3_session *pSession"
.Fc
.Sh DESCRIPTION
This API returns the total amount of heap memory in bytes currently
used by the session object passed as the only argument.
.Sh IMPLEMENTATION NOTES
These declarations were extracted from the
interface documentation at line 11427.
.Bd -literal
SQLITE_API sqlite3_int64 sqlite3session_memory_used(sqlite3_session *pSession);
.Ed