diff options
author | drh <drh@noemail.net> | 2008-08-04 20:13:26 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2008-08-04 20:13:26 +0000 |
commit | e9d1c720ee4e1a85a301588a02746a2bba37c8cd (patch) | |
tree | 3052a9804cc968535043c9ed124252377dd2fd93 /src/sqliteInt.h | |
parent | 33a14781c8ba8ed7ee6aad07b801a530e8355a44 (diff) | |
download | sqlite-e9d1c720ee4e1a85a301588a02746a2bba37c8cd.tar.gz sqlite-e9d1c720ee4e1a85a301588a02746a2bba37c8cd.zip |
Separate verbs of sqlite3_config() and sqlite3_db_config() into their
own namespaces. Allow SQLITE3_DBCONFIG_LOOKASIDE to specific an external
memory buffer. (CVS 5536)
FossilOrigin-Name: 5dd865da5e787c10ef4c9e96647724bfab9dea01
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 6897671a0..68de4a157 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.751 2008/08/02 15:32:40 danielk1977 Exp $ +** @(#) $Id: sqliteInt.h,v 1.752 2008/08/04 20:13:27 drh Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -575,6 +575,7 @@ struct Schema { struct Lookaside { u16 sz; /* Size of each buffer in bytes */ u8 bEnabled; /* True if use lookaside. False to ignore it */ + u8 bMalloced; /* True if pStart obtained from sqlite3_malloc() */ int nOut; /* Number of buffers currently checked out */ int mxOut; /* Highwater mark for nOut */ LookasideSlot *pFree; /* List if available buffers */ |