diff options
author | drh <drh@noemail.net> | 2007-11-29 18:36:49 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-11-29 18:36:49 +0000 |
commit | ace03d1b3a14f0ef244f8e3e1b7c1408a5918d2e (patch) | |
tree | cec7e83d92eef18d8c9122461aa1a08bf3159bfd /src/mem2.c | |
parent | 21de2e755c4645778bd4e53b252909272b2c491a (diff) | |
download | sqlite-ace03d1b3a14f0ef244f8e3e1b7c1408a5918d2e.tar.gz sqlite-ace03d1b3a14f0ef244f8e3e1b7c1408a5918d2e.zip |
Add the optional (and experimental) mmap() memory allocator in the
mem4.c module. (CVS 4581)
FossilOrigin-Name: cfd683ac80fd043343e0f0af90805058daa3818d
Diffstat (limited to 'src/mem2.c')
-rw-r--r-- | src/mem2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem2.c b/src/mem2.c index 643f78955..69a641a85 100644 --- a/src/mem2.c +++ b/src/mem2.c @@ -12,7 +12,7 @@ ** This file contains the C functions that implement a memory ** allocation subsystem for use by SQLite. ** -** $Id: mem2.c,v 1.17 2007/11/05 17:54:17 drh Exp $ +** $Id: mem2.c,v 1.18 2007/11/29 18:36:49 drh Exp $ */ /* @@ -20,7 +20,7 @@ ** SQLITE_MEMDEBUG macro is defined and SQLITE_OMIT_MEMORY_ALLOCATION ** is not defined. */ -#if defined(SQLITE_MEMDEBUG) && !defined(SQLITE_MEMORY_SIZE) +#if defined(SQLITE_MEMDEBUG) /* ** We will eventually construct multiple memory allocation subsystems |