summaryrefslogtreecommitdiff
path: root/src/mongo/db/service_context.h
diff options
context:
space:
mode:
authorAndy Schwerin <schwerin@mongodb.com>2015-06-01 17:27:57 -0400
committerAndy Schwerin <schwerin@mongodb.com>2015-06-02 12:02:30 -0400
commit908d0cedf82b50c93932916685c4f8fa4748cc6f (patch)
tree446f8c88bf9231e31187d593b17f41b8af3e55cc /src/mongo/db/service_context.h
parent5f225a7464862686a8422bb02d1f638d5568d529 (diff)
downloadmongo-908d0cedf82b50c93932916685c4f8fa4748cc6f.tar.gz
Reapply "SERVER-14995 Move operation id, lockState and client fields to OperationContext."
This reverts commit e181ea38af737ef7aaf5f8228f870d8c7149b2bb.
Diffstat (limited to 'src/mongo/db/service_context.h')
-rw-r--r--src/mongo/db/service_context.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/service_context.h b/src/mongo/db/service_context.h
index 3833ff69d85..675b9dfd1ae 100644
--- a/src/mongo/db/service_context.h
+++ b/src/mongo/db/service_context.h
@@ -251,9 +251,9 @@ namespace mongo {
virtual void registerKillOpListener(KillOpListenerInterface* listener) = 0;
/**
- * Returns a new OperationContext. Caller owns pointer.
+ * Returns a new OperationContext.
*/
- virtual OperationContext* newOpCtx() = 0;
+ virtual std::unique_ptr<OperationContext> newOpCtx() = 0;
//
// Global OpObserver.