]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a naming problem when SQLITE_MUTEX_NOOP is used. (CVS 5827)
authordrh <drh@noemail.net>
Wed, 15 Oct 2008 19:03:02 +0000 (19:03 +0000)
committerdrh <drh@noemail.net>
Wed, 15 Oct 2008 19:03:02 +0000 (19:03 +0000)
FossilOrigin-Name: 35ce71c6f19953a17aa37abe1c0c97685070e2f6

manifest
manifest.uuid
src/mutex_noop.c

index ab17add80dab792374b87d2deda18a97eb008788..5032edd7b09ec82ee33a7182cd922e3076cb1c2f 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Do\snot\sopen\sand\ssync\sthe\sdirectory\sin\sunixDelete()\sif\sthe\sSQLITE_DISABLE_DIRSYNC\soption\sis\sdefined.\s(CVS\s5826)
-D 2008-10-15T16:02:49
+C Fix\sa\snaming\sproblem\swhen\sSQLITE_MUTEX_NOOP\sis\sused.\s(CVS\s5827)
+D 2008-10-15T19:03:03
 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
 F Makefile.in 2014e5a4010ad5ebbcaedff98240b3d14ee83838
 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -128,7 +128,7 @@ F src/mem5.c 706d462c13a9819dfec7c10d9dccedf8d199960c
 F src/mem6.c febe4db9ddef73df500989e68a9d4ac68602a075
 F src/mutex.c e9cb5fbe94afb4328869afaf3ac49bd1327559eb
 F src/mutex.h 9e686e83a88838dac8b9c51271c651e833060f1e
-F src/mutex_noop.c 5356c291c6c58c09163888d2116f830468cd8157
+F src/mutex_noop.c 0004efdbc2fd48d261d5b3416fe537e888c79a54
 F src/mutex_os2.c 9c5637aa4c307c552566d0f0b3bd206245b54a97
 F src/mutex_unix.c 29049a61755cccddb2ee53904e6906bb7674223c
 F src/mutex_w32.c f0d21ff1f6981e5aedc56796adf3a347423ef736
@@ -648,7 +648,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81
 F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
 F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
-P cd73cffab39d80393f26a20c90aa97cb73d595ea
-R 4c5fbd54f3e4fdc4fd9305cb80318942
-U danielk1977
-Z 4abc96f5783c0e1097291f0a5823404e
+P 8ef141644edc5182785c6a554222c2ffbe92fef5
+R 1bb6aba69f0e6d873811151df726637f
+U drh
+Z eb9de0203accf5058eb797c96ab867a2
index 8751ed1f8f4ba631553c8a7d57734ee2cd87f5ef..89209fdf4efa8fca3c478fe638994bfa57d81eee 100644 (file)
@@ -1 +1 @@
-8ef141644edc5182785c6a554222c2ffbe92fef5
\ No newline at end of file
+35ce71c6f19953a17aa37abe1c0c97685070e2f6
\ No newline at end of file
index 5900c4de1254e1bf15d92393e9821d9e76d0e1b2..ecee9a9a21083278fe0775e363d8e962a7878e79 100644 (file)
@@ -25,7 +25,7 @@
 ** that does error checking on mutexes to make sure they are being
 ** called correctly.
 **
-** $Id: mutex_noop.c,v 1.1 2008/10/07 15:25:48 drh Exp $
+** $Id: mutex_noop.c,v 1.2 2008/10/15 19:03:03 drh Exp $
 */
 #include "sqliteInt.h"
 
@@ -44,7 +44,7 @@ static sqlite3_mutex *noopMutexAlloc(int id){ return (sqlite3_mutex*)8; }
 static void noopMutexFree(sqlite3_mutex *p){ return; }
 static void noopMutexEnter(sqlite3_mutex *p){ return; }
 static int noopMutexTry(sqlite3_mutex *p){ return SQLITE_OK; }
-static void debugMutexLeave(sqlite3_mutex *p){ return; }
+static void noopMutexLeave(sqlite3_mutex *p){ return; }
 
 sqlite3_mutex_methods *sqlite3DefaultMutex(void){
   static sqlite3_mutex_methods sMutex = {