diff options
author | danielk1977 <danielk1977@noemail.net> | 2008-06-26 10:41:19 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2008-06-26 10:41:19 +0000 |
commit | 29bafeabcdfd107d56ae4659e5905cf0c61c79ee (patch) | |
tree | 646fbc2d5623f7886ef6824c5029ccba38902c2d /src/main.c | |
parent | 71bc31c68d1228c5ca8fcc6e50f5a77a91a06b97 (diff) | |
download | sqlite-29bafeabcdfd107d56ae4659e5905cf0c61c79ee.tar.gz sqlite-29bafeabcdfd107d56ae4659e5905cf0c61c79ee.zip |
Change the OS_XXX pre-processor symbols to SQLITE_OS_XXX. Symbols "OS_UNIX", "OS_WIN", "OS_WINCE", "OS_OS2" and "OS_OTHER" are now "SQLITE_OS_UNIX", "SQLITE_OS_WIN", "SQLITE_OS_WINCE", "SQLITE_OS_OS2" and "SQLITE_OS_OTHER", respectively. (CVS 5311)
FossilOrigin-Name: cdd4cf4ce2ab363ddc3f27c5e44896e17269a161
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c index b2cfa119b..50d933a5d 100644 --- a/src/main.c +++ b/src/main.c @@ -14,7 +14,7 @@ ** other files are for internal use by SQLite and should not be ** accessed by users of the library. ** -** $Id: main.c,v 1.463 2008/06/26 08:29:34 danielk1977 Exp $ +** $Id: main.c,v 1.464 2008/06/26 10:41:19 danielk1977 Exp $ */ #include "sqliteInt.h" #include <ctype.h> @@ -524,7 +524,7 @@ static int sqliteDefaultBusyCallback( void *ptr, /* Database connection */ int count /* Number of times table has been busy */ ){ -#if OS_WIN || (defined(HAVE_USLEEP) && HAVE_USLEEP) +#if SQLITE_OS_WIN || (defined(HAVE_USLEEP) && HAVE_USLEEP) static const u8 delays[] = { 1, 2, 5, 10, 15, 20, 25, 25, 25, 50, 50, 100 }; static const u8 totals[] = |