summaryrefslogtreecommitdiff
path: root/src/mongo/db/curop.h
diff options
context:
space:
mode:
authorErnie Hershey <ernie.hershey@10gen.com>2015-05-18 17:23:31 -0400
committerErnie Hershey <ernie.hershey@10gen.com>2015-05-18 17:23:31 -0400
commitd3fda5afd4f1d65f03e0e3ef01ffb82e4f60ce26 (patch)
tree831c13c2d1d05930af0db973b1827474cc37f81e /src/mongo/db/curop.h
parenta3046362af4cb79a714c95783ca66f87f4d5a827 (diff)
downloadmongo-d3fda5afd4f1d65f03e0e3ef01ffb82e4f60ce26.tar.gz
Revert "Revert "SERVER-18515 Replace OperationContext::getCurOp with CurOp::get(OperationContext*)""
This reverts commit 7147e127644cba2bfa292945557b43664cc31f47.
Diffstat (limited to 'src/mongo/db/curop.h')
-rw-r--r--src/mongo/db/curop.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mongo/db/curop.h b/src/mongo/db/curop.h
index 634a897c16e..06fe40452e3 100644
--- a/src/mongo/db/curop.h
+++ b/src/mongo/db/curop.h
@@ -48,6 +48,7 @@ namespace mongo {
class Client;
class Command;
class CurOp;
+ class OperationContext;
/**
* stores a copy of a bson obj in a fixed size buffer
@@ -196,6 +197,8 @@ namespace mongo {
public:
static CurOp* get(const Client* client);
static CurOp* get(const Client& client);
+ static CurOp* get(const OperationContext* opCtx);
+ static CurOp* get(const OperationContext& opCtx);
explicit CurOp(Client* client);
~CurOp();