aboutsummaryrefslogtreecommitdiff
path: root/src/test_mutex.c
diff options
context:
space:
mode:
authordanielk1977 <danielk1977@noemail.net>2008-06-19 08:51:23 +0000
committerdanielk1977 <danielk1977@noemail.net>2008-06-19 08:51:23 +0000
commit4a9d1f665f67ddbfffd76e7691e7a024093b80c8 (patch)
tree98f06fb2547531dda4e426943215ee6a1ebc1140 /src/test_mutex.c
parentbb5a9c3eea276ff67a2823df1cad92a3af1be354 (diff)
downloadsqlite-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/test_mutex.c')
-rw-r--r--src/test_mutex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test_mutex.c b/src/test_mutex.c
index 0becbee30..ee3037e0d 100644
--- a/src/test_mutex.c
+++ b/src/test_mutex.c
@@ -10,7 +10,7 @@
**
*************************************************************************
**
-** $Id: test_mutex.c,v 1.2 2008/06/18 17:09:10 danielk1977 Exp $
+** $Id: test_mutex.c,v 1.3 2008/06/19 08:51:25 danielk1977 Exp $
*/
#include "tcl.h"
@@ -146,12 +146,12 @@ static int test_install_mutex_counters(
sqlite3_mutex_methods counter_methods = {
counterMutexInit,
+ counterMutexEnd,
counterMutexAlloc,
counterMutexFree,
counterMutexEnter,
counterMutexTry,
counterMutexLeave,
- counterMutexEnd,
counterMutexHeld,
counterMutexNotheld
};