diff options
author | danielk1977 <danielk1977@noemail.net> | 2008-06-19 08:51:23 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2008-06-19 08:51:23 +0000 |
commit | 4a9d1f665f67ddbfffd76e7691e7a024093b80c8 (patch) | |
tree | 98f06fb2547531dda4e426943215ee6a1ebc1140 /src/mutex.c | |
parent | bb5a9c3eea276ff67a2823df1cad92a3af1be354 (diff) | |
download | sqlite-4a9d1f665f67ddbfffd76e7691e7a024093b80c8.tar.gz sqlite-4a9d1f665f67ddbfffd76e7691e7a024093b80c8.zip |
Shuffle some of the mutex related documentation in sqlite.h.in to match the new sqlite3_mutex_methods based API. (CVS 5244)
FossilOrigin-Name: 9cd7f8669a59c6096331229df2e2ad87e628abab
Diffstat (limited to 'src/mutex.c')
-rw-r--r-- | src/mutex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mutex.c b/src/mutex.c index 13c75a2d7..43e1965eb 100644 --- a/src/mutex.c +++ b/src/mutex.c @@ -19,7 +19,7 @@ ** implementation is suitable for testing. ** debugging purposes ** -** $Id: mutex.c,v 1.26 2008/06/18 18:57:42 danielk1977 Exp $ +** $Id: mutex.c,v 1.27 2008/06/19 08:51:24 danielk1977 Exp $ */ #include "sqliteInt.h" @@ -257,12 +257,12 @@ static void noopMutexLeave(sqlite3_mutex *p){ sqlite3_mutex_methods *sqlite3DefaultMutex(void){ static sqlite3_mutex_methods sMutex = { noopMutexInit, + noopMutexEnd, noopMutexAlloc, noopMutexFree, noopMutexEnter, noopMutexTry, noopMutexLeave, - noopMutexEnd, noopMutexHeld, noopMutexNotheld |