sl@0: /* sl@0: ** 2007 August 28 sl@0: ** sl@0: ** The author disclaims copyright to this source code. In place of sl@0: ** a legal notice, here is a blessing: sl@0: ** sl@0: ** May you do good and not evil. sl@0: ** May you find forgiveness for yourself and forgive others. sl@0: ** May you share freely, never taking more than you give. sl@0: ** sl@0: ************************************************************************* sl@0: ** sl@0: ** This file contains the common header for all mutex implementations. sl@0: ** The sqliteInt.h header #includes this file so that it is available sl@0: ** to all source files. We break it out in an effort to keep the code sl@0: ** better organized. sl@0: ** sl@0: ** NOTE: source files should *not* #include this header file directly. sl@0: ** Source files should #include the sqliteInt.h file and let that file sl@0: ** include this one indirectly. sl@0: ** sl@0: ** $Id: mutex.h,v 1.8 2008/06/26 10:41:19 danielk1977 Exp $ sl@0: */ sl@0: sl@0: sl@0: #ifdef SQLITE_MUTEX_APPDEF sl@0: /* sl@0: ** If SQLITE_MUTEX_APPDEF is defined, then this whole module is sl@0: ** omitted and equivalent functionality must be provided by the sl@0: ** application that links against the SQLite library. sl@0: */ sl@0: #else sl@0: /* sl@0: ** Figure out what version of the code to use. The choices are sl@0: ** sl@0: ** SQLITE_MUTEX_NOOP For single-threaded applications that sl@0: ** do not desire error checking. sl@0: ** sl@0: ** SQLITE_MUTEX_NOOP_DEBUG For single-threaded applications with sl@0: ** error checking to help verify that mutexes sl@0: ** are being used correctly even though they sl@0: ** are not needed. Used when SQLITE_DEBUG is sl@0: ** defined on single-threaded builds. sl@0: ** sl@0: ** SQLITE_MUTEX_PTHREADS For multi-threaded applications on Unix. sl@0: ** sl@0: ** SQLITE_MUTEX_W32 For multi-threaded applications on Win32. sl@0: ** sl@0: ** SQLITE_MUTEX_OS2 For multi-threaded applications on OS/2. sl@0: */ sl@0: #define SQLITE_MUTEX_NOOP 1 /* The default */ sl@0: #if defined(SQLITE_DEBUG) && !SQLITE_THREADSAFE sl@0: # undef SQLITE_MUTEX_NOOP sl@0: # define SQLITE_MUTEX_NOOP_DEBUG sl@0: #endif sl@0: #if defined(SQLITE_MUTEX_NOOP) && SQLITE_THREADSAFE && SQLITE_OS_UNIX sl@0: # undef SQLITE_MUTEX_NOOP sl@0: # define SQLITE_MUTEX_PTHREADS sl@0: #endif sl@0: #if defined(SQLITE_MUTEX_NOOP) && SQLITE_THREADSAFE && SQLITE_OS_WIN sl@0: # undef SQLITE_MUTEX_NOOP sl@0: # define SQLITE_MUTEX_W32 sl@0: #endif sl@0: #if defined(SQLITE_MUTEX_NOOP) && SQLITE_THREADSAFE && SQLITE_OS_OS2 sl@0: # undef SQLITE_MUTEX_NOOP sl@0: # define SQLITE_MUTEX_OS2 sl@0: #endif sl@0: #if defined(SQLITE_MUTEX_NOOP) && SQLITE_THREADSAFE && SQLITE_OS_SYMBIAN sl@0: # undef SQLITE_MUTEX_NOOP sl@0: # define SQLITE_MUTEX_SYMBIAN sl@0: #endif sl@0: sl@0: #ifdef SQLITE_MUTEX_NOOP sl@0: /* sl@0: ** If this is a no-op implementation, implement everything as macros. sl@0: */ sl@0: #define sqlite3_mutex_alloc(X) ((sqlite3_mutex*)8) sl@0: #define sqlite3_mutex_free(X) sl@0: #define sqlite3_mutex_enter(X) sl@0: #define sqlite3_mutex_try(X) SQLITE_OK sl@0: #define sqlite3_mutex_leave(X) sl@0: #define sqlite3_mutex_held(X) 1 sl@0: #define sqlite3_mutex_notheld(X) 1 sl@0: #define sqlite3MutexAlloc(X) ((sqlite3_mutex*)8) sl@0: #define sqlite3MutexInit() SQLITE_OK sl@0: #define sqlite3MutexEnd() sl@0: #endif sl@0: sl@0: #endif /* SQLITE_MUTEX_APPDEF */