diff options
author | drh <drh@noemail.net> | 2008-03-14 19:33:05 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2008-03-14 19:33:05 +0000 |
commit | befdf83f5878d4fb15a15036e37ad38b8ed02240 (patch) | |
tree | 4a72023ef94b472b3a9876c6e7c5ee3daf391872 | |
parent | 3099e1acabf9a4a468c082d79ffcfb9ab8ac2dc9 (diff) | |
download | sqlite-befdf83f5878d4fb15a15036e37ad38b8ed02240.tar.gz sqlite-befdf83f5878d4fb15a15036e37ad38b8ed02240.zip |
Reset the busy callback iteration counter at the beginning of each
lock test loop. (CVS 4864)
FossilOrigin-Name: 66777f048195e4242905c40f790ed7360af7028b
-rw-r--r-- | manifest | 12 | ||||
-rw-r--r-- | manifest.uuid | 2 | ||||
-rw-r--r-- | src/pager.c | 3 |
3 files changed, 9 insertions, 8 deletions
@@ -1,5 +1,5 @@ -C Change\san\sinstance\sof\sintptr_t\sto\ssqlite3_intptr_t.\s(CVS\s4863) -D 2008-03-14T19:17:55 +C Reset\sthe\sbusy\scallback\siteration\scounter\sat\sthe\sbeginning\sof\seach\nlock\stest\sloop.\s(CVS\s4864) +D 2008-03-14T19:33:06 F Makefile.arm-wince-mingw32ce-gcc ac5f7b2cef0cd850d6f755ba6ee4ab961b1fadf7 F Makefile.in 5be94fea84f1599672e5041de03b97990baca593 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654 @@ -129,7 +129,7 @@ F src/os_unix.c 4cdd17e768888b865047805ca49beeacf0929683 F src/os_unix.h 5768d56d28240d3fe4537fac08cc85e4fb52279e F src/os_win.c aa3f4bbee3b8c182d25a33fbc319f486857c12c1 F src/os_win.h 41a946bea10f61c158ce8645e7646b29d44f122b -F src/pager.c 8c709d6f7b1bc32418f3366439960177b38f1ab9 +F src/pager.c c2cabad85f50c895430cd317c46b43fe87ccb95b F src/pager.h 8174615ffd14ccc2cad2b081b919a398fa95e3f9 F src/parse.y 00f2698c8ae84f315be5e3f10b63c94f531fdd6d F src/pragma.c e3f39f8576234887ecd0c1de43dc51af5855930c @@ -623,7 +623,7 @@ F www/tclsqlite.tcl 8be95ee6dba05eabcd27a9d91331c803f2ce2130 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0 F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b F www/whentouse.tcl fc46eae081251c3c181bd79c5faef8195d7991a5 -P a3c12dbe95c8fb93f5b9006bf5d2c5b933fc5e87 -R 6a03c8ba37f932ba000bf40f85f91ca9 +P 6db7186c304ed5e06afb207ce11ebc2a47e491b0 +R 87d443b39169d76481a95bb272b47f45 U drh -Z 8e9f2258de90dc9ea109b62a14d9710e +Z 7ebbab3c09843c4d2af968290634f99a diff --git a/manifest.uuid b/manifest.uuid index 55c58028a..71afb0372 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -6db7186c304ed5e06afb207ce11ebc2a47e491b0
\ No newline at end of file +66777f048195e4242905c40f790ed7360af7028b
\ No newline at end of file diff --git a/src/pager.c b/src/pager.c index 5561520b9..4367c6c8c 100644 --- a/src/pager.c +++ b/src/pager.c @@ -18,7 +18,7 @@ ** file simultaneously, or one process from reading the database while ** another is writing. ** -** @(#) $Id: pager.c,v 1.415 2008/03/10 14:12:53 drh Exp $ +** @(#) $Id: pager.c,v 1.416 2008/03/14 19:33:06 drh Exp $ */ #ifndef SQLITE_OMIT_DISKIO #include "sqliteInt.h" @@ -2572,6 +2572,7 @@ static int pager_wait_on_lock(Pager *pPager, int locktype){ if( pPager->state>=locktype ){ rc = SQLITE_OK; }else{ + if( pPager->pBusyHandler ) pPager->pBusyHandler->nBusy = 0; do { rc = sqlite3OsLock(pPager->fd, locktype); }while( rc==SQLITE_BUSY && sqlite3InvokeBusyHandler(pPager->pBusyHandler) ); |