diff options
author | drh <drh@noemail.net> | 2008-06-13 18:24:27 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2008-06-13 18:24:27 +0000 |
commit | 40257ffd0a8fd292cd59769d8a1cd5873ae27fbb (patch) | |
tree | f369a8f6577d5768cdf1c22355f5984839e51d4f /src/os_unix.c | |
parent | 655194d6ae6f8fde6184ce5e9d7b0a1965cb4973 (diff) | |
download | sqlite-40257ffd0a8fd292cd59769d8a1cd5873ae27fbb.tar.gz sqlite-40257ffd0a8fd292cd59769d8a1cd5873ae27fbb.zip |
Progress toward implementation of sqlite3_config() and a rework of the
mutex and memory allocation subsystems. This is an incremental check-in. (CVS 5218)
FossilOrigin-Name: a03c5af115889f477e17187a198a7d2d40bc76bf
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 63e1950cc..9b5533983 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -12,7 +12,7 @@ ** ** This file contains code that is specific to Unix systems. ** -** $Id: os_unix.c,v 1.186 2008/06/06 15:49:30 danielk1977 Exp $ +** $Id: os_unix.c,v 1.187 2008/06/13 18:24:27 drh Exp $ */ #include "sqliteInt.h" #if OS_UNIX /* This file is used on unix only */ @@ -2810,5 +2810,13 @@ sqlite3_vfs *sqlite3OsDefaultVfs(void){ return &unixVfs; } + +/* +** Initialize and deinitialize the operating system interface. +** These are stubs for now - populate with real code later... +*/ +int sqlite3_os_init(void){ return SQLITE_OK; } +int sqlite3_os_end(void){ return SQLITE_OK; } + #endif /* OS_UNIX */ |