summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2017-07-12 09:42:16 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2017-07-12 22:37:40 -0400
commita889b0d79a17eeed1f548a227e13ad553d1b32a2 (patch)
treed890ae70fe5bc83dcc3111c9f0c59a74b533d96b
parent68c14e13d5840f700dffc52a6658edb918a2868a (diff)
downloadmongo-a889b0d79a17eeed1f548a227e13ad553d1b32a2.tar.gz
SERVER-29947 Implement Storage Node Watchdog
(cherry picked from commit eb333b92cae5e71affb0fe76cd388801afa8e79f)
-rw-r--r--src/mongo/util/exit_code.h1
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
};