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.9 2008/10/07 15:25:48 drh Exp $
|
sl@0
|
23 |
*/
|
sl@0
|
24 |
|
sl@0
|
25 |
|
sl@0
|
26 |
/*
|
sl@0
|
27 |
** Figure out what version of the code to use. The choices are
|
sl@0
|
28 |
**
|
sl@0
|
29 |
** SQLITE_MUTEX_OMIT No mutex logic. Not even stubs. The
|
sl@0
|
30 |
** mutexes implemention cannot be overridden
|
sl@0
|
31 |
** at start-time.
|
sl@0
|
32 |
**
|
sl@0
|
33 |
** SQLITE_MUTEX_NOOP For single-threaded applications. No
|
sl@0
|
34 |
** mutual exclusion is provided. But this
|
sl@0
|
35 |
** implementation can be overridden at
|
sl@0
|
36 |
** start-time.
|
sl@0
|
37 |
**
|
sl@0
|
38 |
** SQLITE_MUTEX_PTHREADS For multi-threaded applications on Unix.
|
sl@0
|
39 |
**
|
sl@0
|
40 |
** SQLITE_MUTEX_W32 For multi-threaded applications on Win32.
|
sl@0
|
41 |
**
|
sl@0
|
42 |
** SQLITE_MUTEX_OS2 For multi-threaded applications on OS/2.
|
sl@0
|
43 |
*/
|
sl@0
|
44 |
#if !SQLITE_THREADSAFE
|
sl@0
|
45 |
# define SQLITE_MUTEX_OMIT
|
sl@0
|
46 |
#endif
|
sl@0
|
47 |
#if SQLITE_THREADSAFE && !defined(SQLITE_MUTEX_NOOP)
|
sl@0
|
48 |
# if SQLITE_OS_UNIX
|
sl@0
|
49 |
# define SQLITE_MUTEX_PTHREADS
|
sl@0
|
50 |
# elif SQLITE_OS_WIN
|
sl@0
|
51 |
# define SQLITE_MUTEX_W32
|
sl@0
|
52 |
# elif SQLITE_OS_OS2
|
sl@0
|
53 |
# define SQLITE_MUTEX_OS2
|
sl@0
|
54 |
# else
|
sl@0
|
55 |
# define SQLITE_MUTEX_NOOP
|
sl@0
|
56 |
# endif
|
sl@0
|
57 |
#endif
|
sl@0
|
58 |
|
sl@0
|
59 |
#ifdef SQLITE_MUTEX_OMIT
|
sl@0
|
60 |
/*
|
sl@0
|
61 |
** If this is a no-op implementation, implement everything as macros.
|
sl@0
|
62 |
*/
|
sl@0
|
63 |
#define sqlite3_mutex_alloc(X) ((sqlite3_mutex*)8)
|
sl@0
|
64 |
#define sqlite3_mutex_free(X)
|
sl@0
|
65 |
#define sqlite3_mutex_enter(X)
|
sl@0
|
66 |
#define sqlite3_mutex_try(X) SQLITE_OK
|
sl@0
|
67 |
#define sqlite3_mutex_leave(X)
|
sl@0
|
68 |
#define sqlite3_mutex_held(X) 1
|
sl@0
|
69 |
#define sqlite3_mutex_notheld(X) 1
|
sl@0
|
70 |
#define sqlite3MutexAlloc(X) ((sqlite3_mutex*)8)
|
sl@0
|
71 |
#define sqlite3MutexInit() SQLITE_OK
|
sl@0
|
72 |
#define sqlite3MutexEnd()
|
sl@0
|
73 |
#endif /* defined(SQLITE_OMIT_MUTEX) */
|