diff options
author | danielk1977 <danielk1977@noemail.net> | 2008-09-04 17:17:38 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2008-09-04 17:17:38 +0000 |
commit | 0a732f59b03f9776113a227b0f8de5989c1d6322 (patch) | |
tree | e4fb31a30e53b36adb7ce1f32f5263fb4a1d9b65 /src/os_unix.c | |
parent | 145834a44f05bfadfb145ecfc09c8b86a31ec131 (diff) | |
download | sqlite-0a732f59b03f9776113a227b0f8de5989c1d6322.tar.gz sqlite-0a732f59b03f9776113a227b0f8de5989c1d6322.zip |
Add support for the SQLITE_THREADSAFE=2 and SQLITE_DEFAULT_MEMSTATUS compilation options. (CVS 5676)
FossilOrigin-Name: 85c2a58901338c1c4652c2cbee51e5f48d289191
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 45625ffe6..cd8cd521c 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.199 2008/09/04 06:22:26 danielk1977 Exp $ +** $Id: os_unix.c,v 1.200 2008/09/04 17:17:39 danielk1977 Exp $ */ #include "sqliteInt.h" #if SQLITE_OS_UNIX /* This file is used on unix only */ @@ -2030,7 +2030,6 @@ static int flockCheckReservedLock(sqlite3_file *id, int *pResOut){ static int flockLock(sqlite3_file *id, int locktype) { int rc = SQLITE_OK; - int lrc; unixFile *pFile = (unixFile*)id; assert( pFile ); |