Declare the invalidateCursorsOnModifiedBtrees function to be static.

Ticket #2792. (CVS 4559)

FossilOrigin-Name: 94f25fc1129c7fb8697a67e509ab9de54a173a58
This commit is contained in:
drh 2007-11-24 10:23:44 +00:00
parent 8255feca02
commit ade6c9c513
3 changed files with 8 additions and 8 deletions

View File

@ -1,5 +1,5 @@
C The\sFTS3\samalgamation\scan\snow\sbe\sappended\sto\sthe\sSQLite\samalgamation\sto\ngenerate\sa\ssingle\ssource\sfile\sthat\scontains\sboth\scomponents.\s(CVS\s4558)
D 2007-11-24T00:41:52
C Declare\sthe\sinvalidateCursorsOnModifiedBtrees\sfunction\sto\sbe\sstatic.\nTicket\s#2792.\s(CVS\s4559)
D 2007-11-24T10:23:45
F Makefile.arm-wince-mingw32ce-gcc ac5f7b2cef0cd850d6f755ba6ee4ab961b1fadf7
F Makefile.in 35396fd58890420b29edcf27b6c0e2d054862a6b
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@ -170,7 +170,7 @@ F src/vdbe.c 791d056da2c264c2cfed6e2150852926845875e5
F src/vdbe.h 79e09ff13b85457abe437d9814454534ebbc1fe3
F src/vdbeInt.h 630145b9bfaa19190ab491f52658a7db550f2247
F src/vdbeapi.c dd2c43317294e0a013e9f634ee4209a3ea459b43
F src/vdbeaux.c ffc2610c0d29a6e7b5c1d5dfea2ad406f7f9aff1
F src/vdbeaux.c ecda6d92276c61aa9d8d4466444a980b7163827b
F src/vdbeblob.c 82f51cdf9b0c0af729732fde48c824e498c0a1ca
F src/vdbefifo.c 334c838c8f42d61a94813d136019ee566b5dc2f6
F src/vdbemem.c 123994fcd344993d2fb050a83b91b341bbbd08b4
@ -590,7 +590,7 @@ F www/tclsqlite.tcl 8be95ee6dba05eabcd27a9d91331c803f2ce2130
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
F www/whentouse.tcl fc46eae081251c3c181bd79c5faef8195d7991a5
P 8c0b2157f2a2f8ecfa641a041279faf21aedd4e0
R cdfb152187a9296f913494eaf2c01ee9
P 0fc61f99b54bd269fcc011f448b9b971e902cb01
R a314c7a29cbfffced0c652613fe340e1
U drh
Z eba6c82b1c5d7dceb4b3e7cae88033fd
Z ef78acb28db3ec4e15d6c19b7209bfc1

View File

@ -1 +1 @@
0fc61f99b54bd269fcc011f448b9b971e902cb01
94f25fc1129c7fb8697a67e509ab9de54a173a58

View File

@ -1323,7 +1323,7 @@ static void checkActiveVdbeCnt(sqlite3 *db){
** the state of the cursor. We have to invalidate the cursor
** so that it is never used again.
*/
void invalidateCursorsOnModifiedBtrees(sqlite3 *db){
static void invalidateCursorsOnModifiedBtrees(sqlite3 *db){
int i;
for(i=0; i<db->nDb; i++){
Btree *p = db->aDb[i].pBt;