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/test_server.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/test_server.c')
-rw-r--r-- | src/test_server.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test_server.c b/src/test_server.c index cc313a966..6862d7c64 100644 --- a/src/test_server.c +++ b/src/test_server.c @@ -10,7 +10,7 @@ ** ****************************************************************************** ** -** $Id: test_server.c,v 1.7 2008/05/16 04:51:55 danielk1977 Exp $ +** $Id: test_server.c,v 1.8 2008/06/26 10:41:19 danielk1977 Exp $ ** ** This file contains demonstration code. Nothing in this file gets compiled ** or linked into the SQLite library unless you use a non-standard option: @@ -208,7 +208,7 @@ ** and only if the SQLITE_SERVER macro is defined. */ #if defined(SQLITE_SERVER) && !defined(SQLITE_OMIT_SHARED_CACHE) -#if defined(OS_UNIX) && OS_UNIX && SQLITE_THREADSAFE +#if defined(SQLITE_OS_UNIX) && OS_UNIX && SQLITE_THREADSAFE /* ** We require only pthreads and the public interface of SQLite. @@ -489,5 +489,5 @@ void sqlite3_server_stop(void){ pthread_mutex_unlock(&g.serverMutex); } -#endif /* defined(OS_UNIX) && OS_UNIX && SQLITE_THREADSAFE */ +#endif /* defined(SQLITE_OS_UNIX) && OS_UNIX && SQLITE_THREADSAFE */ #endif /* defined(SQLITE_SERVER) */ |