summaryrefslogtreecommitdiff
path: root/src/mongo/db/initialize_server_global_state.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/initialize_server_global_state.h')
-rw-r--r--src/mongo/db/initialize_server_global_state.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/mongo/db/initialize_server_global_state.h b/src/mongo/db/initialize_server_global_state.h
index 7085274d7af..c4953b70548 100644
--- a/src/mongo/db/initialize_server_global_state.h
+++ b/src/mongo/db/initialize_server_global_state.h
@@ -30,25 +30,25 @@
namespace mongo {
- /**
- * Perform initialization activity common across all mongo server types.
- *
- * Set up logging, daemonize the process, configure SSL, etc.
- */
- bool initializeServerGlobalState();
+/**
+ * Perform initialization activity common across all mongo server types.
+ *
+ * Set up logging, daemonize the process, configure SSL, etc.
+ */
+bool initializeServerGlobalState();
- /**
- * Forks and detaches the server, on platforms that support it, if serverGlobalParams.doFork is
- * true.
- *
- * Call after processing the command line but before running mongo initializers.
- */
- void forkServerOrDie();
+/**
+ * Forks and detaches the server, on platforms that support it, if serverGlobalParams.doFork is
+ * true.
+ *
+ * Call after processing the command line but before running mongo initializers.
+ */
+void forkServerOrDie();
- /**
- * Notify the parent that we forked from that we have successfully completed basic
- * initialization so it can stop waiting and exit.
- */
- void signalForkSuccess();
+/**
+ * Notify the parent that we forked from that we have successfully completed basic
+ * initialization so it can stop waiting and exit.
+ */
+void signalForkSuccess();
} // namespace mongo