summaryrefslogtreecommitdiff
path: root/src/include/flags.h
diff options
context:
space:
mode:
authorKeith Bostic <keith.bostic@mongodb.com>2016-07-07 22:10:17 -0400
committerAlex Gorrod <alexander.gorrod@mongodb.com>2016-07-08 12:10:17 +1000
commitc33bc33a9afb6f1e980e95cc581b4ba474eb3573 (patch)
tree031d560b6b912567e46bdd5806ddf99a126052c4 /src/include/flags.h
parent037a70e027491bbd2744164f550c99504b07cb7c (diff)
downloadmongo-c33bc33a9afb6f1e980e95cc581b4ba474eb3573.tar.gz
WT-2746 Add a new statistic tracking I/O for checkpoints (#2853)
Separate cache write statistics into checkpoint and non-checkpoint I/O.
Diffstat (limited to 'src/include/flags.h')
-rw-r--r--src/include/flags.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/include/flags.h b/src/include/flags.h
index 2145174ca6f..a411e997793 100644
--- a/src/include/flags.h
+++ b/src/include/flags.h
@@ -2,6 +2,7 @@
* DO NOT EDIT: automatically built by dist/flags.py.
* flags section: BEGIN
*/
+#define WT_CHECKPOINTING 0x00000001
#define WT_CONN_CACHE_POOL 0x00000001
#define WT_CONN_CKPT_SYNC 0x00000002
#define WT_CONN_CLOSING 0x00000004
@@ -21,12 +22,12 @@
#define WT_CONN_SERVER_STATISTICS 0x00010000
#define WT_CONN_SERVER_SWEEP 0x00020000
#define WT_CONN_WAS_BACKUP 0x00040000
-#define WT_EVICTING 0x00000001
-#define WT_EVICT_CLEAN 0x00000002
-#define WT_EVICT_INMEM_SPLIT 0x00000004
-#define WT_EVICT_IN_MEMORY 0x00000008
-#define WT_EVICT_LOOKASIDE 0x00000010
-#define WT_EVICT_UPDATE_RESTORE 0x00000020
+#define WT_EVICTING 0x00000002
+#define WT_EVICT_CLEAN 0x00000004
+#define WT_EVICT_INMEM_SPLIT 0x00000008
+#define WT_EVICT_IN_MEMORY 0x00000010
+#define WT_EVICT_LOOKASIDE 0x00000020
+#define WT_EVICT_UPDATE_RESTORE 0x00000040
#define WT_LOGSCAN_FIRST 0x00000001
#define WT_LOGSCAN_FROM_CKP 0x00000002
#define WT_LOGSCAN_ONE 0x00000004
@@ -102,7 +103,7 @@
#define WT_VERB_VERIFY 0x00800000
#define WT_VERB_VERSION 0x01000000
#define WT_VERB_WRITE 0x02000000
-#define WT_VISIBILITY_ERR 0x00000040
+#define WT_VISIBILITY_ERR 0x00000080
/*
* flags section: END
* DO NOT EDIT: automatically built by dist/flags.py.