summaryrefslogtreecommitdiff
path: root/src/mongo/db/curop.cpp
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.cpp
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.cpp')
-rw-r--r--src/mongo/db/curop.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mongo/db/curop.cpp b/src/mongo/db/curop.cpp
index 06c86a71941..8ede1ff1c1f 100644
--- a/src/mongo/db/curop.cpp
+++ b/src/mongo/db/curop.cpp
@@ -146,6 +146,8 @@ namespace mongo {
CurOp* CurOp::get(const Client* client) { return _curopStack(client).top(); }
CurOp* CurOp::get(const Client& client) { return _curopStack(client).top(); }
+ CurOp* CurOp::get(const OperationContext* opCtx) { return get(opCtx->getClient()); }
+ CurOp* CurOp::get(const OperationContext& opCtx) { return get(opCtx.getClient()); }
CurOp::CurOp(Client* client) : CurOp(client, &_curopStack(client)) {}