summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2017-07-12 23:08:22 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2017-07-12 23:08:22 -0400
commit390d7e7290ccc51e99c902a8344ef2e0c60001cb (patch)
tree0b13cca3ceb7ab644546cf6cbc28a246835bf6c1
parentb0083723ef4cff9918b151121926eb5e2d26f0cb (diff)
downloadmongo-390d7e7290ccc51e99c902a8344ef2e0c60001cb.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 209e27a27a6..8e9be8594e6 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
};