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

Remove public APIs sqlite3_mutex_init() and sqlite3_mutex_end(). This commit only changes the code, documentation is not updated yet. (CVS 5238)

FossilOrigin-Name: 42a2a8f49324e2e07b81fd08e24f636a2d98a961
This commit is contained in:
danielk1977
2008-06-18 18:57:42 +00:00
parent 9ac3fe979f
commit d025174f0b
7 changed files with 26 additions and 26 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.4 2008/06/15 02:51:48 drh Exp $
** $Id: mutex.h,v 1.5 2008/06/18 18:57:42 danielk1977 Exp $
*/
@@ -77,8 +77,8 @@
#define sqlite3_mutex_leave(X)
#define sqlite3_mutex_held(X) 1
#define sqlite3_mutex_notheld(X) 1
#define sqlite3_mutex_init() SQLITE_OK
#define sqlite3_mutex_end()
#define sqlite3MutexInit() SQLITE_OK
#define sqlite3MutexEnd()
#endif
#endif /* SQLITE_MUTEX_APPDEF */