diff options
author | Ernie Hershey <ernie.hershey@10gen.com> | 2015-05-18 17:23:31 -0400 |
---|---|---|
committer | Ernie Hershey <ernie.hershey@10gen.com> | 2015-05-18 17:23:31 -0400 |
commit | d3fda5afd4f1d65f03e0e3ef01ffb82e4f60ce26 (patch) | |
tree | 831c13c2d1d05930af0db973b1827474cc37f81e /src/mongo/db/curop.cpp | |
parent | a3046362af4cb79a714c95783ca66f87f4d5a827 (diff) | |
download | mongo-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.cpp | 2 |
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)) {} |