diff options
author | dan <dan@noemail.net> | 2010-05-11 12:19:26 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2010-05-11 12:19:26 +0000 |
commit | 5543759b1b27d9c954673bba3f032f2aa2e10a69 (patch) | |
tree | 26e55170195c13ec77a3e2c60627a26b27a7e518 /src/wal.h | |
parent | a10069dd22e81b1b92771bd035a2f0f67b9d1e61 (diff) | |
download | sqlite-5543759b1b27d9c954673bba3f032f2aa2e10a69.tar.gz sqlite-5543759b1b27d9c954673bba3f032f2aa2e10a69.zip |
Changes so that WAL and exclusive-locking mode work together.
FossilOrigin-Name: 71e7b1cf9f4cd02a2a9bc8a3e58acd7a7e3c7e60
Diffstat (limited to 'src/wal.h')
-rw-r--r-- | src/wal.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -96,5 +96,10 @@ int sqlite3WalCheckpoint( */ int sqlite3WalCallback(Wal *pWal); +/* Tell the wal layer that an EXCLUSIVE lock has been obtained (or released) +** by the pager layer on the database file. +*/ +int sqlite3WalExclusiveMode(Wal *pWal, int op); + #endif /* ifndef SQLITE_OMIT_WAL */ #endif /* _WAL_H_ */ |