diff options
author | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2017-07-12 09:42:16 -0400 |
---|---|---|
committer | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2017-07-12 22:37:40 -0400 |
commit | a889b0d79a17eeed1f548a227e13ad553d1b32a2 (patch) | |
tree | d890ae70fe5bc83dcc3111c9f0c59a74b533d96b /src | |
parent | 68c14e13d5840f700dffc52a6658edb918a2868a (diff) | |
download | mongo-a889b0d79a17eeed1f548a227e13ad553d1b32a2.tar.gz |
SERVER-29947 Implement Storage Node Watchdog
(cherry picked from commit eb333b92cae5e71affb0fe76cd388801afa8e79f)
Diffstat (limited to 'src')
-rw-r--r-- | src/mongo/util/exit_code.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mongo/util/exit_code.h b/src/mongo/util/exit_code.h index c8020684a83..b6cd33ce865 100644 --- a/src/mongo/util/exit_code.h +++ b/src/mongo/util/exit_code.h @@ -52,6 +52,7 @@ enum ExitCode : int { EXIT_WINDOWS_SERVICE_STOP = 49, EXIT_POSSIBLE_CORRUPTION = 60, // this means we detected a possible corruption situation, like a buf overflow + EXIT_WATCHDOG = 61, // Internal Watchdog has terminated mongod EXIT_UNCAUGHT = 100, // top level exception that wasn't caught EXIT_TEST = 101 }; |