summaryrefslogtreecommitdiff
path: root/src/include/log.h
diff options
context:
space:
mode:
authorMichael Cahill <michael.cahill@wiredtiger.com>2015-03-09 12:04:17 +1100
committerMichael Cahill <michael.cahill@wiredtiger.com>2015-03-09 12:04:17 +1100
commit73be9a4ac6eda2533b2dfd8e0a20bdd22bc0e4f9 (patch)
tree4c65cc688254fbe13a768c81443b03683f2ca378 /src/include/log.h
parent4e2d01751738dc297d9cc4e3b1d251d4ecac599b (diff)
downloadmongo-73be9a4ac6eda2533b2dfd8e0a20bdd22bc0e4f9.tar.gz
Revert "Move writing into log worker thread. #1683"
This reverts commit 90f3f34a97440b6788a1a558e560a33fd116f166. We'll consider that change in a separate pull request.
Diffstat (limited to 'src/include/log.h')
-rw-r--r--src/include/log.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/log.h b/src/include/log.h
index 0515bace27b..760321d9abb 100644
--- a/src/include/log.h
+++ b/src/include/log.h
@@ -65,14 +65,14 @@
* WT_LOG_SLOT_DONE - all activity on this slot is complete.
* WT_LOG_SLOT_FREE - slot is available for allocation.
* WT_LOG_SLOT_PENDING - slot is transitioning from ready to active.
- * WT_LOG_SLOT_WRITE_READY - slot should be written by worker.
+ * WT_LOG_SLOT_WRITTEN - slot is written and should be processed by worker.
* WT_LOG_SLOT_READY - slot is ready for threads to join.
* > WT_LOG_SLOT_READY - threads are actively consolidating on this slot.
*/
#define WT_LOG_SLOT_DONE 0
#define WT_LOG_SLOT_FREE 1
#define WT_LOG_SLOT_PENDING 2
-#define WT_LOG_SLOT_WRITE_READY 3
+#define WT_LOG_SLOT_WRITTEN 3
#define WT_LOG_SLOT_READY 4
typedef WT_COMPILER_TYPE_ALIGN(WT_CACHE_LINE_ALIGNMENT) struct {
int64_t slot_state; /* Slot state */