1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Fix a bug in the noop-mutex implementation. (CVS 5242)

FossilOrigin-Name: eec9a54dc3554a00ea69fc8e26d205f30a3bcabd
This commit is contained in:
drh
2008-06-19 01:50:09 +00:00
parent 65bbf29ee3
commit 8c4d6b97e0
3 changed files with 9 additions and 9 deletions

View File

@@ -19,7 +19,7 @@
** Source files should #include the sqliteInt.h file and let that file
** include this one indirectly.
**
** $Id: mutex.h,v 1.6 2008/06/19 01:03:18 drh Exp $
** $Id: mutex.h,v 1.7 2008/06/19 01:50:09 drh Exp $
*/
@@ -77,7 +77,7 @@
#define sqlite3_mutex_leave(X)
#define sqlite3_mutex_held(X) 1
#define sqlite3_mutex_notheld(X) 1
#define sqlite3MutexAlloc(X) 0
#define sqlite3MutexAlloc(X) ((sqlite3_mutex*)8)
#define sqlite3MutexInit() SQLITE_OK
#define sqlite3MutexEnd()
#endif