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