diff options
author | danielk1977 <danielk1977@noemail.net> | 2005-12-15 10:11:30 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2005-12-15 10:11:30 +0000 |
commit | 13a68c3f61385c5e05e73d976127c1108fd624bb (patch) | |
tree | df063d568da0e892d332d7c02b3090616719c2e7 /src/sqliteInt.h | |
parent | af9a7c22b5b25d557eab2f7e1a66a65fde78005d (diff) | |
download | sqlite-13a68c3f61385c5e05e73d976127c1108fd624bb.tar.gz sqlite-13a68c3f61385c5e05e73d976127c1108fd624bb.zip |
Add the sqlite3_os_routine_set()/get() functions. (CVS 2818)
FossilOrigin-Name: c1ed79f594fb85009c2e9e5e281cbe66a9d2fa17
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 aa1bf3e26..daf146da0 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.435 2005/12/15 03:04:11 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.436 2005/12/15 10:11:32 danielk1977 Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -268,6 +268,7 @@ extern int sqlite3_iMallocReset; /* Set iMallocFail to this when it reaches 0 */ */ typedef struct SqliteTsd SqliteTsd; struct SqliteTsd { + int isInit; /* True if structure has been initialised */ int mallocFailed; /* True after a malloc() has failed */ #ifndef SQLITE_OMIT_SOFTHEAPLIMIT unsigned int nSoftHeapLimit; /* (uint)-1 for unlimited */ |