summaryrefslogtreecommitdiff
path: root/src/mongo/db/service_entry_point_mongod.cpp
diff options
context:
space:
mode:
authorauto-revert-processor <dev-prod-dag@mongodb.com>2023-05-18 01:59:49 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-05-18 02:54:21 +0000
commita741f91c4c09913424751730aabccd594e94ab78 (patch)
tree93a23e52e3a8d077bea2f722912a88a6e270a8dc /src/mongo/db/service_entry_point_mongod.cpp
parentd7bf13d97da047abfe9098a6b5f98678e89cd987 (diff)
downloadmongo-master.tar.gz
Revert "SERVER-77224 Rename lock_state.h/.cpp to locker_impl.h/.cpp to match the class name"HEADmaster
This reverts commit de55cd2ac227dcc8cae2fd021abc291e86b2abb2.
Diffstat (limited to 'src/mongo/db/service_entry_point_mongod.cpp')
-rw-r--r--src/mongo/db/service_entry_point_mongod.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mongo/db/service_entry_point_mongod.cpp b/src/mongo/db/service_entry_point_mongod.cpp
index ecf95334f83..a09e32be199 100644
--- a/src/mongo/db/service_entry_point_mongod.cpp
+++ b/src/mongo/db/service_entry_point_mongod.cpp
@@ -27,10 +27,13 @@
* it in the license file.
*/
+
+#include "mongo/platform/basic.h"
+
#include "mongo/db/service_entry_point_mongod.h"
#include "mongo/db/commands/fsync_locked.h"
-#include "mongo/db/concurrency/locker_impl.h"
+#include "mongo/db/concurrency/lock_state.h"
#include "mongo/db/curop.h"
#include "mongo/db/read_concern.h"
#include "mongo/db/repl/repl_client_info.h"
@@ -50,6 +53,7 @@
#define MONGO_LOGV2_DEFAULT_COMPONENT ::mongo::logv2::LogComponent::kCommand
+
namespace mongo {
class ServiceEntryPointMongod::Hooks final : public ServiceEntryPointCommon::Hooks {