sl@0
|
1 |
/*
|
sl@0
|
2 |
** 2007 August 28
|
sl@0
|
3 |
**
|
sl@0
|
4 |
** The author disclaims copyright to this source code. In place of
|
sl@0
|
5 |
** a legal notice, here is a blessing:
|
sl@0
|
6 |
**
|
sl@0
|
7 |
** May you do good and not evil.
|
sl@0
|
8 |
** May you find forgiveness for yourself and forgive others.
|
sl@0
|
9 |
** May you share freely, never taking more than you give.
|
sl@0
|
10 |
**
|
sl@0
|
11 |
*************************************************************************
|
sl@0
|
12 |
**
|
sl@0
|
13 |
** This file contains the common header for all mutex implementations.
|
sl@0
|
14 |
** The sqliteInt.h header #includes this file so that it is available
|
sl@0
|
15 |
** to all source files. We break it out in an effort to keep the code
|
sl@0
|
16 |
** better organized.
|
sl@0
|
17 |
**
|
sl@0
|
18 |
** NOTE: source files should *not* #include this header file directly.
|
sl@0
|
19 |
** Source files should #include the sqliteInt.h file and let that file
|
sl@0
|
20 |
** include this one indirectly.
|
sl@0
|
21 |
**
|
sl@0
|
22 |
** $Id: mutex.h,v 1.8 2008/06/26 10:41:19 danielk1977 Exp $
|
sl@0
|
23 |
*/
|
sl@0
|
24 |
|
sl@0
|
25 |
|
sl@0
|
26 |
#ifdef SQLITE_MUTEX_APPDEF
|
sl@0
|
27 |
/*
|
sl@0
|
28 |
** If SQLITE_MUTEX_APPDEF is defined, then this whole module is
|
sl@0
|
29 |
** omitted and equivalent functionality must be provided by the
|
sl@0
|
30 |
** application that links against the SQLite library.
|
sl@0
|
31 |
*/
|
sl@0
|
32 |
#else
|
sl@0
|
33 |
/*
|
sl@0
|
34 |
** Figure out what version of the code to use. The choices are
|
sl@0
|
35 |
**
|
sl@0
|
36 |
** SQLITE_MUTEX_NOOP For single-threaded applications that
|
sl@0
|
37 |
** do not desire error checking.
|
sl@0
|
38 |
**
|
sl@0
|
39 |
** SQLITE_MUTEX_NOOP_DEBUG For single-threaded applications with
|
sl@0
|
40 |
** error checking to help verify that mutexes
|
sl@0
|
41 |
** are being used correctly even though they
|
sl@0
|
42 |
** are not needed. Used when SQLITE_DEBUG is
|
sl@0
|
43 |
** defined on single-threaded builds.
|
sl@0
|
44 |
**
|
sl@0
|
45 |
** SQLITE_MUTEX_PTHREADS For multi-threaded applications on Unix.
|
sl@0
|
46 |
**
|
sl@0
|
47 |
** SQLITE_MUTEX_W32 For multi-threaded applications on Win32.
|
sl@0
|
48 |
**
|
sl@0
|
49 |
** SQLITE_MUTEX_OS2 For multi-threaded applications on OS/2.
|
sl@0
|
50 |
*/
|
sl@0
|
51 |
#define SQLITE_MUTEX_NOOP 1 /* The default */
|
sl@0
|
52 |
#if defined(SQLITE_DEBUG) && !SQLITE_THREADSAFE
|
sl@0
|
53 |
# undef SQLITE_MUTEX_NOOP
|
sl@0
|
54 |
# define SQLITE_MUTEX_NOOP_DEBUG
|
sl@0
|
55 |
#endif
|
sl@0
|
56 |
#if defined(SQLITE_MUTEX_NOOP) && SQLITE_THREADSAFE && SQLITE_OS_UNIX
|
sl@0
|
57 |
# undef SQLITE_MUTEX_NOOP
|
sl@0
|
58 |
# define SQLITE_MUTEX_PTHREADS
|
sl@0
|
59 |
#endif
|
sl@0
|
60 |
#if defined(SQLITE_MUTEX_NOOP) && SQLITE_THREADSAFE && SQLITE_OS_WIN
|
sl@0
|
61 |
# undef SQLITE_MUTEX_NOOP
|
sl@0
|
62 |
# define SQLITE_MUTEX_W32
|
sl@0
|
63 |
#endif
|
sl@0
|
64 |
#if defined(SQLITE_MUTEX_NOOP) && SQLITE_THREADSAFE && SQLITE_OS_OS2
|
sl@0
|
65 |
# undef SQLITE_MUTEX_NOOP
|
sl@0
|
66 |
# define SQLITE_MUTEX_OS2
|
sl@0
|
67 |
#endif
|
sl@0
|
68 |
#if defined(SQLITE_MUTEX_NOOP) && SQLITE_THREADSAFE && SQLITE_OS_SYMBIAN
|
sl@0
|
69 |
# undef SQLITE_MUTEX_NOOP
|
sl@0
|
70 |
# define SQLITE_MUTEX_SYMBIAN
|
sl@0
|
71 |
#endif
|
sl@0
|
72 |
|
sl@0
|
73 |
#ifdef SQLITE_MUTEX_NOOP
|
sl@0
|
74 |
/*
|
sl@0
|
75 |
** If this is a no-op implementation, implement everything as macros.
|
sl@0
|
76 |
*/
|
sl@0
|
77 |
#define sqlite3_mutex_alloc(X) ((sqlite3_mutex*)8)
|
sl@0
|
78 |
#define sqlite3_mutex_free(X)
|
sl@0
|
79 |
#define sqlite3_mutex_enter(X)
|
sl@0
|
80 |
#define sqlite3_mutex_try(X) SQLITE_OK
|
sl@0
|
81 |
#define sqlite3_mutex_leave(X)
|
sl@0
|
82 |
#define sqlite3_mutex_held(X) 1
|
sl@0
|
83 |
#define sqlite3_mutex_notheld(X) 1
|
sl@0
|
84 |
#define sqlite3MutexAlloc(X) ((sqlite3_mutex*)8)
|
sl@0
|
85 |
#define sqlite3MutexInit() SQLITE_OK
|
sl@0
|
86 |
#define sqlite3MutexEnd()
|
sl@0
|
87 |
#endif
|
sl@0
|
88 |
|
sl@0
|
89 |
#endif /* SQLITE_MUTEX_APPDEF */
|