diff options
author | danielk1977 <danielk1977@noemail.net> | 2008-06-25 14:26:07 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2008-06-25 14:26:07 +0000 |
commit | c66c0e14a69504fecfe19cfd0e031e94c1b0b1e3 (patch) | |
tree | 55edb443e6b63863bf505e432a4e29e7bf12d6c7 /src/sqliteInt.h | |
parent | 32155ef0ff75d468632d0f1428be1bc4888060a1 (diff) | |
download | sqlite-c66c0e14a69504fecfe19cfd0e031e94c1b0b1e3.tar.gz sqlite-c66c0e14a69504fecfe19cfd0e031e94c1b0b1e3.zip |
Fix the allocator in mem5.c so that it can be enabled at run time using the sqlite3_config() function. (CVS 5304)
FossilOrigin-Name: 30ff6bb0b2d1068d28e86ac90bb9f454e4537a2d
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 7b94f368c..34a69bcde 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.727 2008/06/25 10:34:35 danielk1977 Exp $ +** @(#) $Id: sqliteInt.h,v 1.728 2008/06/25 14:26:08 danielk1977 Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -1804,6 +1804,7 @@ void *sqlite3PageMalloc(int); void sqlite3PageFree(void*); void sqlite3MemSetDefault(void); void sqlite3MemSetMemsys3(u8 *pBlock, int nBlock); +void sqlite3MemSetMemsys5(u8 *pBlock, int nBlock); void sqlite3BenignMallocHooks(void (*)(void), void (*)(void)); #ifndef SQLITE_MUTEX_NOOP |