summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/mmap_v1/dur.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/storage/mmap_v1/dur.h')
-rw-r--r--src/mongo/db/storage/mmap_v1/dur.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/storage/mmap_v1/dur.h b/src/mongo/db/storage/mmap_v1/dur.h
index e4aec954749..b505de833f6 100644
--- a/src/mongo/db/storage/mmap_v1/dur.h
+++ b/src/mongo/db/storage/mmap_v1/dur.h
@@ -86,7 +86,7 @@ public:
@return true if --dur is on.
@return false if --dur is off. (in which case there is action)
*/
- virtual bool commitNow(OperationContext* txn) = 0;
+ virtual bool commitNow(OperationContext* opCtx) = 0;
/** Commit if enough bytes have been modified. Current threshold is 50MB
@@ -112,7 +112,7 @@ public:
*
* Must be called under the global X lock.
*/
- virtual void commitAndStopDurThread(OperationContext* txn) = 0;
+ virtual void commitAndStopDurThread(OperationContext* opCtx) = 0;
/**
* Commits pending changes, flushes all changes to main data files, then removes the
@@ -125,7 +125,7 @@ public:
* through recovery and be applied to files that have had changes made after this call
* applied.
*/
- virtual void syncDataAndTruncateJournal(OperationContext* txn) = 0;
+ virtual void syncDataAndTruncateJournal(OperationContext* opCtx) = 0;
virtual bool isDurable() const = 0;