diff options
author | shaneh <shaneh@noemail.net> | 2011-04-04 21:48:01 +0000 |
---|---|---|
committer | shaneh <shaneh@noemail.net> | 2011-04-04 21:48:01 +0000 |
commit | 3a2d29f8f46554ba3c74bc17964a4dd844a9ac1d (patch) | |
tree | 0b113b4e9a4a762f69d7e719aba6e48f12fe6154 /src/test_server.c | |
parent | 6a64d6788452870759825dc74872f388c082599b (diff) | |
download | sqlite-3a2d29f8f46554ba3c74bc17964a4dd844a9ac1d.tar.gz sqlite-3a2d29f8f46554ba3c74bc17964a4dd844a9ac1d.zip |
Changes for consistent use of SQLITE_OS_UNIX and removal of legacy OS_UNIX from testfixture source;
FossilOrigin-Name: 78b6eee200cab363be520d771375e44898f80e01
Diffstat (limited to 'src/test_server.c')
-rw-r--r-- | src/test_server.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test_server.c b/src/test_server.c index 3eb754442..f7b596c78 100644 --- a/src/test_server.c +++ b/src/test_server.c @@ -206,7 +206,7 @@ ** and only if the SQLITE_SERVER macro is defined. */ #if defined(SQLITE_SERVER) && !defined(SQLITE_OMIT_SHARED_CACHE) -#if defined(SQLITE_OS_UNIX) && OS_UNIX && SQLITE_THREADSAFE +#if SQLITE_OS_UNIX && SQLITE_THREADSAFE /* ** We require only pthreads and the public interface of SQLite. @@ -487,5 +487,5 @@ void sqlite3_server_stop(void){ pthread_mutex_unlock(&g.serverMutex); } -#endif /* defined(SQLITE_OS_UNIX) && OS_UNIX && SQLITE_THREADSAFE */ +#endif /* SQLITE_OS_UNIX && SQLITE_THREADSAFE */ #endif /* defined(SQLITE_SERVER) */ |