diff options
Diffstat (limited to 'src/pcache.c')
-rw-r--r-- | src/pcache.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/pcache.c b/src/pcache.c index 191a9d00f..13551872d 100644 --- a/src/pcache.c +++ b/src/pcache.c @@ -651,6 +651,13 @@ void sqlite3PcacheShrink(PCache *pCache){ sqlite3GlobalConfig.pcache2.xShrink(pCache->pCache); } +/* +** Return the size of the header added by this middleware layer +** in the page-cache hierarchy. +*/ +int sqlite3HeaderSizePcache(void){ return sizeof(PgHdr); } + + #if defined(SQLITE_CHECK_PAGES) || defined(SQLITE_DEBUG) /* ** For all dirty pages currently in the cache, invoke the specified |