diff options
author | danielk1977 <danielk1977@noemail.net> | 2008-06-27 13:27:03 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2008-06-27 13:27:03 +0000 |
commit | 5099be5e85c9ea74da082bc8ba5b49ed634e6fb0 (patch) | |
tree | 72c5e4cf54b92463a9e1aeee881499aeb4567056 /src/sqliteInt.h | |
parent | 6fccc35a9187673f97fed9ddedd06363e4c9b55e (diff) | |
download | sqlite-5099be5e85c9ea74da082bc8ba5b49ed634e6fb0.tar.gz sqlite-5099be5e85c9ea74da082bc8ba5b49ed634e6fb0.zip |
Change mem5.c so that the minimum allocation size is runtime configurable. (CVS 5320)
FossilOrigin-Name: 4f95f4cdf77e134fab42148e10198c7b008d4ae6
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 2d6581761..c5d42152f 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.732 2008/06/26 18:04:03 danielk1977 Exp $ +** @(#) $Id: sqliteInt.h,v 1.733 2008/06/27 13:27:04 danielk1977 Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -1807,7 +1807,7 @@ void *sqlite3PageMalloc(int); void sqlite3PageFree(void*); void sqlite3MemSetDefault(void); void sqlite3MemSetMemsys3(u8 *pBlock, int nBlock); -void sqlite3MemSetMemsys5(u8 *pBlock, int nBlock); +const sqlite3_mem_methods *sqlite3MemGetMemsys5(void); void sqlite3BenignMallocHooks(void (*)(void), void (*)(void)); #ifndef SQLITE_MUTEX_NOOP |