aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2008-06-15 02:51:47 +0000
committerdrh <drh@noemail.net>2008-06-15 02:51:47 +0000
commite5ae5735c0abbd832e12a9633d1a10e9074bf82a (patch)
treedd8af64eb83c92bd4b226f3ae983d19ad9cb7b42 /src/sqliteInt.h
parentfec00eabb3c144813164c9f04cc0fffd93c45247 (diff)
downloadsqlite-e5ae5735c0abbd832e12a9633d1a10e9074bf82a.tar.gz
sqlite-e5ae5735c0abbd832e12a9633d1a10e9074bf82a.zip
Continuing work on the new memory allocation subsystem.
Added routines for temporary memory allocation. Right the btree balance mechanism to only do one temporary allocation at a time. (CVS 5220) FossilOrigin-Name: 65fe7b62cfe7d11cd667681a64c96fe7b2fe5685
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 6b9eda6c8..cccc29e77 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -11,7 +11,7 @@
*************************************************************************
** Internal interface definitions for SQLite.
**
-** @(#) $Id: sqliteInt.h,v 1.709 2008/06/14 16:56:23 drh Exp $
+** @(#) $Id: sqliteInt.h,v 1.710 2008/06/15 02:51:48 drh Exp $
*/
#ifndef _SQLITEINT_H_
#define _SQLITEINT_H_
@@ -1791,6 +1791,8 @@ void *sqlite3Realloc(void*, int);
void *sqlite3DbReallocOrFree(sqlite3 *, void *, int);
void *sqlite3DbRealloc(sqlite3 *, void *, int);
int sqlite3MallocSize(void *);
+void *sqlite3TempMalloc(int);
+void sqlite3TempFree(void*);
void sqlite3MemSetDefault(void);
int sqlite3IsNaN(double);