sl@0: /* sl@0: ** 2008 Jan 22 sl@0: ** sl@0: ** The author disclaims copyright to this source code. In place of sl@0: ** a legal notice, here is a blessing: sl@0: ** sl@0: ** May you do good and not evil. sl@0: ** May you find forgiveness for yourself and forgive others. sl@0: ** May you share freely, never taking more than you give. sl@0: ** sl@0: ************************************************************************* sl@0: ** sl@0: ** $Id: fault.c,v 1.10 2008/06/22 12:37:58 drh Exp $ sl@0: */ sl@0: sl@0: /* sl@0: ** This file contains code to support the concept of "benign" sl@0: ** malloc failures (when the xMalloc() or xRealloc() method of the sl@0: ** sqlite3_mem_methods structure fails to allocate a block of memory sl@0: ** and returns 0). sl@0: ** sl@0: ** Most malloc failures are non-benign. After they occur, SQLite sl@0: ** abandons the current operation and returns an error code (usually sl@0: ** SQLITE_NOMEM) to the user. However, sometimes a fault is not necessarily sl@0: ** fatal. For example, if a malloc fails while resizing a hash table, this sl@0: ** is completely recoverable simply by not carrying out the resize. The sl@0: ** hash table will continue to function normally. So a malloc failure sl@0: ** during a hash table resize is a benign fault. sl@0: */ sl@0: sl@0: #include "sqliteInt.h" sl@0: sl@0: #ifndef SQLITE_OMIT_BUILTIN_TEST sl@0: sl@0: /* sl@0: ** Global variables. sl@0: */ sl@0: static struct BenignMallocHooks { sl@0: void (*xBenignBegin)(void); sl@0: void (*xBenignEnd)(void); sl@0: } hooks; sl@0: sl@0: /* sl@0: ** Register hooks to call when sqlite3BeginBenignMalloc() and sl@0: ** sqlite3EndBenignMalloc() are called, respectively. sl@0: */ sl@0: void sqlite3BenignMallocHooks( sl@0: void (*xBenignBegin)(void), sl@0: void (*xBenignEnd)(void) sl@0: ){ sl@0: hooks.xBenignBegin = xBenignBegin; sl@0: hooks.xBenignEnd = xBenignEnd; sl@0: } sl@0: sl@0: /* sl@0: ** This (sqlite3EndBenignMalloc()) is called by SQLite code to indicate that sl@0: ** subsequent malloc failures are benign. A call to sqlite3EndBenignMalloc() sl@0: ** indicates that subsequent malloc failures are non-benign. sl@0: */ sl@0: void sqlite3BeginBenignMalloc(void){ sl@0: if( hooks.xBenignBegin ){ sl@0: hooks.xBenignBegin(); sl@0: } sl@0: } sl@0: void sqlite3EndBenignMalloc(void){ sl@0: if( hooks.xBenignEnd ){ sl@0: hooks.xBenignEnd(); sl@0: } sl@0: } sl@0: sl@0: #endif /* #ifndef SQLITE_OMIT_BUILTIN_TEST */