Update contrib.
4 ** The author disclaims copyright to this source code. In place of
5 ** a legal notice, here is a blessing:
7 ** May you do good and not evil.
8 ** May you find forgiveness for yourself and forgive others.
9 ** May you share freely, never taking more than you give.
11 *************************************************************************
13 ** This file contains low-level memory allocation drivers for when
14 ** SQLite will use the standard C-library malloc/realloc/free interface
15 ** to obtain the memory it needs.
17 ** This file contains implementations of the low-level memory allocation
18 ** routines specified in the sqlite3_mem_methods object.
20 ** $Id: mem1.c,v 1.26 2008/09/01 18:34:20 danielk1977 Exp $
22 #include "sqliteInt.h"
25 ** This version of the memory allocator is the default. It is
26 ** used when no other memory allocator is specified using compile-time
29 #ifdef SQLITE_SYSTEM_MALLOC
32 ** Like malloc(), but remember the size of the allocation
33 ** so that we can find it later using sqlite3MemSize().
35 ** For this low-level routine, we are guaranteed that nByte>0 because
36 ** cases of nByte<=0 will be intercepted and dealt with by higher level
39 static void *sqlite3MemMalloc(int nByte){
43 p = malloc( nByte+8 );
52 ** Like free() but works for allocations obtained from sqlite3MemMalloc()
53 ** or sqlite3MemRealloc().
55 ** For this low-level routine, we already know that pPrior!=0 since
56 ** cases where pPrior==0 will have been intecepted and dealt with
57 ** by higher-level routines.
59 static void sqlite3MemFree(void *pPrior){
60 sqlite3_int64 *p = (sqlite3_int64*)pPrior;
67 ** Like realloc(). Resize an allocation previously obtained from
68 ** sqlite3MemMalloc().
70 ** For this low-level interface, we know that pPrior!=0. Cases where
71 ** pPrior==0 while have been intercepted by higher-level routine and
72 ** redirected to xMalloc. Similarly, we know that nByte>0 becauses
73 ** cases where nByte<=0 will have been intercepted by higher-level
74 ** routines and redirected to xFree.
76 static void *sqlite3MemRealloc(void *pPrior, int nByte){
77 sqlite3_int64 *p = (sqlite3_int64*)pPrior;
78 assert( pPrior!=0 && nByte>0 );
80 p = (sqlite3_int64*)pPrior;
82 p = realloc(p, nByte+8 );
91 ** Report the allocated size of a prior return from xMalloc()
94 static int sqlite3MemSize(void *pPrior){
96 if( pPrior==0 ) return 0;
97 p = (sqlite3_int64*)pPrior;
103 ** Round up a request size to the next valid allocation size.
105 static int sqlite3MemRoundup(int n){
110 ** Initialize this module.
112 static int sqlite3MemInit(void *NotUsed){
117 ** Deinitialize this module.
119 static void sqlite3MemShutdown(void *NotUsed){
123 const sqlite3_mem_methods *sqlite3MemGetDefault(void){
124 static const sqlite3_mem_methods defaultMethods = {
134 return &defaultMethods;
138 ** This routine is the only routine in this file with external linkage.
140 ** Populate the low-level memory allocation function pointers in
141 ** sqlite3GlobalConfig.m with pointers to the routines in this file.
143 void sqlite3MemSetDefault(void){
144 sqlite3_config(SQLITE_CONFIG_MALLOC, sqlite3MemGetDefault());
147 #endif /* SQLITE_SYSTEM_MALLOC */