1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Remove the tests that enable tracing based on the existance of the "vdbe_*"

files when in SQLITE_DEBUG mode.

FossilOrigin-Name: cdbb4e7ca7ec27e7e80dd66529d9d565f547887a
This commit is contained in:
drh
2010-05-31 14:28:25 +00:00
parent dcb1169fb7
commit 4222441dee
4 changed files with 22 additions and 40 deletions

View File

@@ -3180,8 +3180,8 @@ struct unixShm {
/*
** Constants used for locking
*/
#define UNIX_SHM_BASE 81 /* Byte offset of the first lock byte */
#define UNIX_SHM_DMS 80 /* The deadman switch lock */
#define UNIX_SHM_BASE ((18+SQLITE_SHM_NLOCK)*4) /* first lock byte */
#define UNIX_SHM_DMS (UNIX_SHM_BASE+SQLITE_SHM_NLOCK) /* deadman switch */
#ifdef SQLITE_DEBUG
/*