mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-14 00:22:38 +03:00
Add files that should have gone in with the previous checkin. (CVS 6935)
FossilOrigin-Name: 64c7afc704e95e13fb3315be402525d277a0d8d8
This commit is contained in:
14
manifest
14
manifest
@@ -1,5 +1,5 @@
|
||||
C Add\sa\scomplex\sassert()\sthat\schecks\sa\spager\sinvariant.\s(CVS\s6934)
|
||||
D 2009-07-25T11:40:08
|
||||
C Add\sfiles\sthat\sshould\shave\sgone\sin\swith\sthe\sprevious\scheckin.\s(CVS\s6935)
|
||||
D 2009-07-25T11:46:49
|
||||
F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
|
||||
F Makefile.in df9359da7a726ccb67a45db905c5447d5c00c6ef
|
||||
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
|
||||
@@ -150,8 +150,8 @@ F src/os_win.c 725c38a524d168ce280446ad8761d731bc516405
|
||||
F src/pager.c 2ccb1152741996d3f6125232f14dfcf654bdd29f
|
||||
F src/pager.h 11852d044c86cf5a9d6e34171fb0c4fcf1f6265f
|
||||
F src/parse.y bcd46d43fbd23a22b8c020a3eb1806b794794ed5
|
||||
F src/pcache.c 1dae135b70a029f81ed66f6e9b5d0db91480d5d0
|
||||
F src/pcache.h 9b927ccc5a538e31b4c3bc7eec4f976db42a1324
|
||||
F src/pcache.c c92ffd4f3e1279b3766854c6d18b5bf4aac0d1fa
|
||||
F src/pcache.h 435ef324197f79391f9c92b71d7f92b548ad7a36
|
||||
F src/pcache1.c 6dc833c89feac405dd8b4858232c97e679f182ec
|
||||
F src/pragma.c 9eb44ac1d3dc1ac3ea4f444abe1a10ae8acaa16c
|
||||
F src/prepare.c 312ba96867ae9df6bd1a57cb84a9fd315e61cf8d
|
||||
@@ -738,7 +738,7 @@ F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
|
||||
F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
|
||||
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
|
||||
F tool/vdbe-compress.tcl 672f81d693a03f80f5ae60bfefacd8a349e76746
|
||||
P 3b6d370ed68eaf9636b26c7240a8b3a43d2edd70
|
||||
R 6427dd1fa4bac8adebaeed3a85e8f4b9
|
||||
P 2e08ad7bf629485a79ccebcf4c413e9dcc0d3ccf
|
||||
R 538b80e40ca2c7a090fa9bcf0676dfb6
|
||||
U danielk1977
|
||||
Z ea5eb9c594b637c9c13eaf08f55c7f0a
|
||||
Z 6c9a0b4779aa816678e6e58c258feb6f
|
||||
|
||||
@@ -1 +1 @@
|
||||
2e08ad7bf629485a79ccebcf4c413e9dcc0d3ccf
|
||||
64c7afc704e95e13fb3315be402525d277a0d8d8
|
||||
@@ -11,7 +11,7 @@
|
||||
*************************************************************************
|
||||
** This file implements that page cache.
|
||||
**
|
||||
** @(#) $Id: pcache.c,v 1.46 2009/07/21 19:25:24 danielk1977 Exp $
|
||||
** @(#) $Id: pcache.c,v 1.47 2009/07/25 11:46:49 danielk1977 Exp $
|
||||
*/
|
||||
#include "sqliteInt.h"
|
||||
|
||||
@@ -561,7 +561,7 @@ void sqlite3PcacheSetCachesize(PCache *pCache, int mxPage){
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef SQLITE_CHECK_PAGES
|
||||
#if defined(SQLITE_CHECK_PAGES) || defined(SQLITE_DEBUG)
|
||||
/*
|
||||
** For all dirty pages currently in the cache, invoke the specified
|
||||
** callback. This is only used if the SQLITE_CHECK_PAGES macro is
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
** This header file defines the interface that the sqlite page cache
|
||||
** subsystem.
|
||||
**
|
||||
** @(#) $Id: pcache.h,v 1.19 2009/01/20 17:06:27 danielk1977 Exp $
|
||||
** @(#) $Id: pcache.h,v 1.20 2009/07/25 11:46:49 danielk1977 Exp $
|
||||
*/
|
||||
|
||||
#ifndef _PCACHE_H_
|
||||
@@ -124,7 +124,7 @@ int sqlite3PcachePageRefcount(PgHdr*);
|
||||
/* Return the total number of pages stored in the cache */
|
||||
int sqlite3PcachePagecount(PCache*);
|
||||
|
||||
#ifdef SQLITE_CHECK_PAGES
|
||||
#if defined(SQLITE_CHECK_PAGES) || defined(SQLITE_DEBUG)
|
||||
/* Iterate through all dirty pages currently stored in the cache. This
|
||||
** interface is only available if SQLITE_CHECK_PAGES is defined when the
|
||||
** library is built.
|
||||
|
||||
Reference in New Issue
Block a user