diff options
Diffstat (limited to 'src/mongo/base/initializer.h')
-rw-r--r-- | src/mongo/base/initializer.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mongo/base/initializer.h b/src/mongo/base/initializer.h index eff1500387c..c7297abacbf 100644 --- a/src/mongo/base/initializer.h +++ b/src/mongo/base/initializer.h @@ -97,14 +97,14 @@ Status runGlobalInitializers(int argc, const char* const* argv, const char* cons void runGlobalInitializersOrDie(int argc, const char* const* argv, const char* const* envp); /** -* Run the global deinitializers. They will execute in reverse order from initialization. -* -* It's a programming error for this to fail, but if it does it will return a status other -* than Status::OK. -* -* This means that the few initializers that might want to terminate the program by failing -* should probably arrange to terminate the process themselves. -*/ + * Run the global deinitializers. They will execute in reverse order from initialization. + * + * It's a programming error for this to fail, but if it does it will return a status other + * than Status::OK. + * + * This means that the few initializers that might want to terminate the program by failing + * should probably arrange to terminate the process themselves. + */ Status runGlobalDeinitializers(); } // namespace mongo |