diff options
author | drh <drh@noemail.net> | 2013-06-27 23:54:02 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2013-06-27 23:54:02 +0000 |
commit | 4f7d3a5f069202a12a78f17d960120a6018cd37a (patch) | |
tree | 29c792378cfb46f33e38c1f1b7d377afa0cdbeb6 /src/sqliteInt.h | |
parent | c0c3c2628dd07946a3240a07ee0b31a5491f994d (diff) | |
download | sqlite-4f7d3a5f069202a12a78f17d960120a6018cd37a.tar.gz sqlite-4f7d3a5f069202a12a78f17d960120a6018cd37a.zip |
Refactor names of fields in the sqlite3 object: "activeVdbeCnt" becomes
"nVdbeActive". Related fields becomes "nVdbeRead", "nVdbeWrite", and
"nVdbeExec".
FossilOrigin-Name: 14f796963474350e7aee8d3757acd3315fe78e4f
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index dd626303f..2c19b84c9 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -897,10 +897,10 @@ struct sqlite3 { u8 busy; /* TRUE if currently initializing */ u8 orphanTrigger; /* Last statement is orphaned TEMP trigger */ } init; - int activeVdbeCnt; /* Number of VDBEs currently executing */ - int noIOVdbeCnt; /* Nr of active VDBEs with no FROM clause */ - int writeVdbeCnt; /* Number of active VDBEs that are writing */ - int vdbeExecCnt; /* Number of nested calls to VdbeExec() */ + int nVdbeActive; /* Number of VDBEs currently executing */ + int nVdbeRead; /* Number of active VDBEs that read or write */ + int nVdbeWrite; /* Number of active VDBEs that read and write */ + int nVdbeExec; /* Number of nested calls to VdbeExec() */ int nExtension; /* Number of loaded extensions */ void **aExtension; /* Array of shared library handles */ void (*xTrace)(void*,const char*); /* Trace function */ |