summaryrefslogtreecommitdiff
path: root/src/mongo/db/service_context_noop.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/service_context_noop.cpp')
-rw-r--r--src/mongo/db/service_context_noop.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/mongo/db/service_context_noop.cpp b/src/mongo/db/service_context_noop.cpp
index fd94b35db89..0280d1b4742 100644
--- a/src/mongo/db/service_context_noop.cpp
+++ b/src/mongo/db/service_context_noop.cpp
@@ -67,23 +67,6 @@ StorageFactoriesIterator* ServiceContextNoop::makeStorageFactoriesIterator() {
return new EmptySFI();
}
-void ServiceContextNoop::setKillAllOperations() {}
-
-void ServiceContextNoop::unsetKillAllOperations() {}
-
-bool ServiceContextNoop::getKillAllOperations() {
- return false;
-}
-
-bool ServiceContextNoop::killOperation(unsigned int opId) {
- return false;
-}
-
-void ServiceContextNoop::killAllUserOperations(const OperationContext* txn,
- ErrorCodes::Error killCode) {}
-
-void ServiceContextNoop::registerKillOpListener(KillOpListenerInterface* listener) {}
-
std::unique_ptr<OperationContext> ServiceContextNoop::_newOpCtx(Client* client) {
return stdx::make_unique<OperationContextNoop>(client, _nextOpId.fetchAndAdd(1));
}