From dc880dc65d930d4c88ead793a83467a9779a18f0 Mon Sep 17 00:00:00 2001 From: Ed Costello Date: Mon, 15 Oct 2012 18:15:42 -0400 Subject: [PATCH 1/2] DOCS-83 Document exit codes --- source/reference/exit-codes.txt | 48 +++++++++++++++++++ source/reference/exit-codes/exit_abrupt.txt | 18 +++++++ .../reference/exit-codes/exit_bad_options.txt | 20 ++++++++ source/reference/exit-codes/exit_clean.txt | 19 ++++++++ .../reference/exit-codes/exit_clock_skew.txt | 13 +++++ source/reference/exit-codes/exit_fs.txt | 14 ++++++ source/reference/exit-codes/exit_kill.txt | 13 +++++ .../exit-codes/exit_need_upgrade.txt | 17 +++++++ .../reference/exit-codes/exit_net_error.txt | 15 ++++++ .../exit-codes/exit_ntservice_error.txt | 22 +++++++++ .../exit-codes/exit_replication_error.txt | 15 ++++++ .../exit-codes/exit_sharding_error.txt | 13 +++++ source/reference/exit-codes/exit_uncaught.txt | 13 +++++ .../exit-codes/exit_windows_service_stop.txt | 16 +++++++ 14 files changed, 256 insertions(+) create mode 100644 source/reference/exit-codes.txt create mode 100644 source/reference/exit-codes/exit_abrupt.txt create mode 100644 source/reference/exit-codes/exit_bad_options.txt create mode 100644 source/reference/exit-codes/exit_clean.txt create mode 100644 source/reference/exit-codes/exit_clock_skew.txt create mode 100644 source/reference/exit-codes/exit_fs.txt create mode 100644 source/reference/exit-codes/exit_kill.txt create mode 100644 source/reference/exit-codes/exit_need_upgrade.txt create mode 100644 source/reference/exit-codes/exit_net_error.txt create mode 100644 source/reference/exit-codes/exit_ntservice_error.txt create mode 100644 source/reference/exit-codes/exit_replication_error.txt create mode 100644 source/reference/exit-codes/exit_sharding_error.txt create mode 100644 source/reference/exit-codes/exit_uncaught.txt create mode 100644 source/reference/exit-codes/exit_windows_service_stop.txt diff --git a/source/reference/exit-codes.txt b/source/reference/exit-codes.txt new file mode 100644 index 00000000000..18a7112bbe0 --- /dev/null +++ b/source/reference/exit-codes.txt @@ -0,0 +1,48 @@ +============================ +MongoDB Exit and Error Codes +============================ + +.. errors:: + +.. include:: /reference/exit-codes/exit_clean.txt + :start-after: mongod + +.. include:: /reference/exit-codes/exit_bad_options.txt + :start-after: mongod + +.. include:: /reference/exit-codes/exit_replication_error.txt + :start-after: mongod + +.. include:: /reference/exit-codes/exit_need_upgrade.txt + :start-after: mongod + +.. include:: /reference/exit-codes/exit_sharding_error.txt + :start-after: mongod + +.. include:: /reference/exit-codes/exit_kill.txt + :start-after: mongod + +.. include:: /reference/exit-codes/exit_abrupt.txt + :start-after: mongod + +.. include:: /reference/exit-codes/exit_ntservice_error.txt + :start-after: mongod + +.. include:: /reference/exit-codes/exit_ntservice_error.txt + :start-after: mongod + +.. include:: /reference/exit-codes/exit_fs.txt + :start-after: mongod + +.. include:: /reference/exit-codes/exit_clock_skew.txt + :start-after: mongod + +.. include:: /reference/exit-codes/exit_net_error.txt + :start-after: mongod + +.. include:: /reference/exit-codes/exit_windows_service_stop.txt + :start-after: mongod + +.. include:: /reference/exit-codes/exit_uncaught.txt + :start-after: mongod + diff --git a/source/reference/exit-codes/exit_abrupt.txt b/source/reference/exit-codes/exit_abrupt.txt new file mode 100644 index 00000000000..6550df01044 --- /dev/null +++ b/source/reference/exit-codes/exit_abrupt.txt @@ -0,0 +1,18 @@ +============== +14 Abrupt Exit +============== + +.. default-domain:: mongodb + +.. error:: 14 + + Returned by MongoDB applications which encounter an unrecoverable + error, an uncaught exception or uncaught signal. The system exits + without performing a clean shut down. + +.. symbol: EXIT_ABRUPT = 14 +.. mongo/src/mongo/client/mongo_client_lib.cpp +.. mongo/src/mongo/db/db.cpp +.. mongo/src/mongo/s/server.cpp +.. mongo/src/mongo/util/exit_code.h +.. mongo/src/mongo/util/signal_handlers.cpp diff --git a/source/reference/exit-codes/exit_bad_options.txt b/source/reference/exit-codes/exit_bad_options.txt new file mode 100644 index 00000000000..cfcec52d7c9 --- /dev/null +++ b/source/reference/exit-codes/exit_bad_options.txt @@ -0,0 +1,20 @@ +======================== +2 Bad Options +======================== + +.. default-domain:: mongodb + +.. error:: 2 + + The specified options are in error or are incompatible + with other options. + +.. symbol: EXIT_BADOPTIONS 2 + +.. /Users/epc/Documents/github/epc/mongo/src/mongo/db/db.cpp +.. /Users/epc/Documents/github/epc/mongo/src/mongo/db/repl.cpp +.. /Users/epc/Documents/github/epc/mongo/src/mongo/dbtests/framework.cpp +.. /Users/epc/Documents/github/epc/mongo/src/mongo/s/config.cpp +.. /Users/epc/Documents/github/epc/mongo/src/mongo/shell/dbshell.cpp +.. /Users/epc/Documents/github/epc/mongo/src/mongo/tools/tool.cpp +.. /Users/epc/Documents/github/epc/mongo/src/mongo/util/ntservice.cpp \ No newline at end of file diff --git a/source/reference/exit-codes/exit_clean.txt b/source/reference/exit-codes/exit_clean.txt new file mode 100644 index 00000000000..a59218df10e --- /dev/null +++ b/source/reference/exit-codes/exit_clean.txt @@ -0,0 +1,19 @@ +============ +0 Clean exit +============ + +.. default-domain:: mongodb + +.. error:: 0 + + Returned by MongoDB applications upon successful exit. + +.. symbol: EXIT_CLEAN +.. ./src/mongo/db/db.cpp +.. ./src/mongo/db/dbcommands_generic.cpp +.. ./src/mongo/dbtests/framework.cpp +.. ./src/mongo/s/server.cpp +.. ./src/mongo/shell/dbshell.cpp +.. ./src/mongo/tools/restore.cpp +.. ./src/mongo/tools/tool.cpp +.. ./src/mongo/util/ntservice.cpp diff --git a/source/reference/exit-codes/exit_clock_skew.txt b/source/reference/exit-codes/exit_clock_skew.txt new file mode 100644 index 00000000000..cac9040b156 --- /dev/null +++ b/source/reference/exit-codes/exit_clock_skew.txt @@ -0,0 +1,13 @@ +=============== +47 Clock Skewed +=============== + +.. default-domain:: mongodb + +.. error:: 47 + + MongoDB applications exit cleanly if a large clock skew (32768 + milliseconds) occurs. + +.. symbol: EXIT_CLOCK_SKEW +.. mongo/src/mongo/db/db.cpp \ No newline at end of file diff --git a/source/reference/exit-codes/exit_fs.txt b/source/reference/exit-codes/exit_fs.txt new file mode 100644 index 00000000000..95521e64769 --- /dev/null +++ b/source/reference/exit-codes/exit_fs.txt @@ -0,0 +1,14 @@ +=================== +45 Cannot open file +=================== + +.. default-domain:: mongodb + +.. error:: 45 + + Returned when a MongoDB application cannot open a file or cannot + obtain a lock on a file. + +.. Symbol: EXIT_FS +.. found-in: mongo/db/namespace_details.cpp:192 +.. found-in: mongo/tools/tool.cpp:238 \ No newline at end of file diff --git a/source/reference/exit-codes/exit_kill.txt b/source/reference/exit-codes/exit_kill.txt new file mode 100644 index 00000000000..b90b9f32534 --- /dev/null +++ b/source/reference/exit-codes/exit_kill.txt @@ -0,0 +1,13 @@ +=================== +12 Killed (Windows) +=================== + +.. default-domain:: mongodb + +.. error: 12 + + Returned by the :program:`mongod.exe` process on Windows when it + receives a Control-C, Close, Break or Shutdown event. + +.. symbol: EXIT_KILL = 12 +.. mongo/src/mongo/db/db.cpp \ No newline at end of file diff --git a/source/reference/exit-codes/exit_need_upgrade.txt b/source/reference/exit-codes/exit_need_upgrade.txt new file mode 100644 index 00000000000..81a25e2522d --- /dev/null +++ b/source/reference/exit-codes/exit_need_upgrade.txt @@ -0,0 +1,17 @@ +================================ +4 Database Format Upgrade Needed +================================ + +.. default-domain:: mongodb + +.. error: 4 + + The version of the database is different from the version supported + by the :program:`mongod` (or :program:`mongod.exe`) instance. The + instance exits cleanly. Restart :program:`mongod` with the + :option:`--upgrade ` option to upgrade the + database to the version supported by this :program:`mongod` + instance. + +.. symbol: EXIT_NEED_UPGRADE = 4 +.. mongo/src/mongo/db/db.cpp \ No newline at end of file diff --git a/source/reference/exit-codes/exit_net_error.txt b/source/reference/exit-codes/exit_net_error.txt new file mode 100644 index 00000000000..9e352926411 --- /dev/null +++ b/source/reference/exit-codes/exit_net_error.txt @@ -0,0 +1,15 @@ +================ +48 Network Error +================ + +.. default-domain:: mongodb + +.. error:: 48 + + :program:`mongod` exits cleanly if the server socket (either + `27017` or the port specified with :option:`--port `). + + +.. symbol: EXIT_NET_ERROR = 48 , +.. mongo/src/mongo/s/server.cpp +.. mongo/src/mongo/db/db.cpp \ No newline at end of file diff --git a/source/reference/exit-codes/exit_ntservice_error.txt b/source/reference/exit-codes/exit_ntservice_error.txt new file mode 100644 index 00000000000..cd390664174 --- /dev/null +++ b/source/reference/exit-codes/exit_ntservice_error.txt @@ -0,0 +1,22 @@ +============================== +20 NT Service Errors (Windows) +============================== + +.. default-domain:: mongodb + + :program:`mongod.exe` returns this error code for multiple errors. + +.. error:: 20 ERROR: wsastartup failed {reason} + + Returned by MongoDB applications on Windows due to an error in the + WSAStartup function. + +.. error:: 20 NT Service Error + + Returned by MongoDB applications for Windows due to failures installing, + starting or removing the NT Service for the application. + +.. symbol: EXIT_NTSERVICE_ERROR = 20 + +.. mongo/src/mongo/util/net/sock.cpp +.. mongo/src/mongo/util/ntservice.cpp \ No newline at end of file diff --git a/source/reference/exit-codes/exit_replication_error.txt b/source/reference/exit-codes/exit_replication_error.txt new file mode 100644 index 00000000000..fcaba61c21d --- /dev/null +++ b/source/reference/exit-codes/exit_replication_error.txt @@ -0,0 +1,15 @@ +=================== +3 Replication Error +=================== + +.. default-domain:: mongodb + +.. error:: 3 + + Returned by :program:`mongod` if there is a mismatch between hostnames + specified on the command line and in the :data:`local.sources` collection or + if the local :term:`oplog` collection cannot be read. + +.. symbol: EXIT_REPLICATION_ERROR = 3 +.. mongo/src/mongo/db/repl.cpp +.. mongo/src/mongo/db/repl/rs.cpp \ No newline at end of file diff --git a/source/reference/exit-codes/exit_sharding_error.txt b/source/reference/exit-codes/exit_sharding_error.txt new file mode 100644 index 00000000000..5fb14a64b90 --- /dev/null +++ b/source/reference/exit-codes/exit_sharding_error.txt @@ -0,0 +1,13 @@ +================ +5 Sharding Error +================ + +.. default-domain:: mongodb + +.. error:: 5 + + Returned by :program:`mongod` if a :dbcommand:`moveChunk` operation + fails to confirm a commit. + +.. symbol: EXIT_SHARDING_ERROR = 5 +.. mongo/src/mongo/s/d_migrate.cpp \ No newline at end of file diff --git a/source/reference/exit-codes/exit_uncaught.txt b/source/reference/exit-codes/exit_uncaught.txt new file mode 100644 index 00000000000..fb115373114 --- /dev/null +++ b/source/reference/exit-codes/exit_uncaught.txt @@ -0,0 +1,13 @@ +====================== +100 Uncaught Exception +====================== + +.. default-domain:: mongodb + +.. error:: 100 + + Returned by :program:`mongod` when an uncaught exception is thrown. + +.. symbol: EXIT_UNCAUGHT = 100 +.. mongo/src/mongo/util/net/message_server_port.cpp +.. mongo/src/mongo/db/db.cpp \ No newline at end of file diff --git a/source/reference/exit-codes/exit_windows_service_stop.txt b/source/reference/exit-codes/exit_windows_service_stop.txt new file mode 100644 index 00000000000..bab0dc6edf8 --- /dev/null +++ b/source/reference/exit-codes/exit_windows_service_stop.txt @@ -0,0 +1,16 @@ +======================= +49 Windows Service Stop +======================= + +.. default-domain:: mongodb + +.. error:: 49 + + Returned by :program:`mongod.exe` or :program:`mongos.exe` on Windows + when either receives a shutdown message from the + Windows Service Control Manager. + +.. mongo/src/mongo/util/ntservice.cpp +.. mongo/src/mongo/s/server.cpp + +.. symbol: EXIT_WINDOWS_SERVICE_STOP 49 \ No newline at end of file From 9fb09bba601a7280df91a9bf47257689303c0fed Mon Sep 17 00:00:00 2001 From: Ed Costello Date: Mon, 15 Oct 2012 18:30:00 -0400 Subject: [PATCH 2/2] Clean up formatting, eliminate sphinx errors --- source/reference/exit-codes.txt | 34 +++++++++---------- source/reference/exit-codes/exit_abrupt.txt | 2 ++ .../reference/exit-codes/exit_bad_options.txt | 4 ++- source/reference/exit-codes/exit_clean.txt | 2 ++ .../reference/exit-codes/exit_clock_skew.txt | 4 ++- source/reference/exit-codes/exit_fs.txt | 4 ++- source/reference/exit-codes/exit_kill.txt | 4 ++- .../exit-codes/exit_need_upgrade.txt | 4 ++- .../reference/exit-codes/exit_net_error.txt | 11 +++--- .../exit-codes/exit_ntservice_error.txt | 9 +++-- .../exit-codes/exit_replication_error.txt | 4 ++- .../exit-codes/exit_sharding_error.txt | 4 ++- source/reference/exit-codes/exit_uncaught.txt | 4 ++- .../exit-codes/exit_windows_service_stop.txt | 4 ++- 14 files changed, 57 insertions(+), 37 deletions(-) diff --git a/source/reference/exit-codes.txt b/source/reference/exit-codes.txt index 18a7112bbe0..40eed34b71f 100644 --- a/source/reference/exit-codes.txt +++ b/source/reference/exit-codes.txt @@ -1,48 +1,46 @@ +:orphan: + ============================ MongoDB Exit and Error Codes ============================ -.. errors:: +.. default-domain:: mongodb .. include:: /reference/exit-codes/exit_clean.txt - :start-after: mongod + :start-after: default-domain:: mongodb .. include:: /reference/exit-codes/exit_bad_options.txt - :start-after: mongod + :start-after: default-domain:: mongodb .. include:: /reference/exit-codes/exit_replication_error.txt - :start-after: mongod + :start-after: default-domain:: mongodb .. include:: /reference/exit-codes/exit_need_upgrade.txt - :start-after: mongod + :start-after: default-domain:: mongodb .. include:: /reference/exit-codes/exit_sharding_error.txt - :start-after: mongod + :start-after: default-domain:: mongodb .. include:: /reference/exit-codes/exit_kill.txt - :start-after: mongod + :start-after: default-domain:: mongodb .. include:: /reference/exit-codes/exit_abrupt.txt - :start-after: mongod - -.. include:: /reference/exit-codes/exit_ntservice_error.txt - :start-after: mongod + :start-after: default-domain:: mongodb .. include:: /reference/exit-codes/exit_ntservice_error.txt - :start-after: mongod + :start-after: default-domain:: mongodb .. include:: /reference/exit-codes/exit_fs.txt - :start-after: mongod + :start-after: default-domain:: mongodb .. include:: /reference/exit-codes/exit_clock_skew.txt - :start-after: mongod + :start-after: default-domain:: mongodb .. include:: /reference/exit-codes/exit_net_error.txt - :start-after: mongod + :start-after: default-domain:: mongodb .. include:: /reference/exit-codes/exit_windows_service_stop.txt - :start-after: mongod + :start-after: default-domain:: mongodb .. include:: /reference/exit-codes/exit_uncaught.txt - :start-after: mongod - + :start-after: default-domain:: mongodb diff --git a/source/reference/exit-codes/exit_abrupt.txt b/source/reference/exit-codes/exit_abrupt.txt index 6550df01044..aebe32cc451 100644 --- a/source/reference/exit-codes/exit_abrupt.txt +++ b/source/reference/exit-codes/exit_abrupt.txt @@ -1,3 +1,5 @@ +:orphan: + ============== 14 Abrupt Exit ============== diff --git a/source/reference/exit-codes/exit_bad_options.txt b/source/reference/exit-codes/exit_bad_options.txt index cfcec52d7c9..0614f53d15f 100644 --- a/source/reference/exit-codes/exit_bad_options.txt +++ b/source/reference/exit-codes/exit_bad_options.txt @@ -1,3 +1,5 @@ +:orphan: + ======================== 2 Bad Options ======================== @@ -17,4 +19,4 @@ .. /Users/epc/Documents/github/epc/mongo/src/mongo/s/config.cpp .. /Users/epc/Documents/github/epc/mongo/src/mongo/shell/dbshell.cpp .. /Users/epc/Documents/github/epc/mongo/src/mongo/tools/tool.cpp -.. /Users/epc/Documents/github/epc/mongo/src/mongo/util/ntservice.cpp \ No newline at end of file +.. /Users/epc/Documents/github/epc/mongo/src/mongo/util/ntservice.cpp diff --git a/source/reference/exit-codes/exit_clean.txt b/source/reference/exit-codes/exit_clean.txt index a59218df10e..e6fc9fd5605 100644 --- a/source/reference/exit-codes/exit_clean.txt +++ b/source/reference/exit-codes/exit_clean.txt @@ -1,3 +1,5 @@ +:orphan: + ============ 0 Clean exit ============ diff --git a/source/reference/exit-codes/exit_clock_skew.txt b/source/reference/exit-codes/exit_clock_skew.txt index cac9040b156..1ea0a7e812e 100644 --- a/source/reference/exit-codes/exit_clock_skew.txt +++ b/source/reference/exit-codes/exit_clock_skew.txt @@ -1,3 +1,5 @@ +:orphan: + =============== 47 Clock Skewed =============== @@ -10,4 +12,4 @@ milliseconds) occurs. .. symbol: EXIT_CLOCK_SKEW -.. mongo/src/mongo/db/db.cpp \ No newline at end of file +.. mongo/src/mongo/db/db.cpp diff --git a/source/reference/exit-codes/exit_fs.txt b/source/reference/exit-codes/exit_fs.txt index 95521e64769..aa70dee554e 100644 --- a/source/reference/exit-codes/exit_fs.txt +++ b/source/reference/exit-codes/exit_fs.txt @@ -1,3 +1,5 @@ +:orphan: + =================== 45 Cannot open file =================== @@ -11,4 +13,4 @@ .. Symbol: EXIT_FS .. found-in: mongo/db/namespace_details.cpp:192 -.. found-in: mongo/tools/tool.cpp:238 \ No newline at end of file +.. found-in: mongo/tools/tool.cpp:238 diff --git a/source/reference/exit-codes/exit_kill.txt b/source/reference/exit-codes/exit_kill.txt index b90b9f32534..3d8352d8003 100644 --- a/source/reference/exit-codes/exit_kill.txt +++ b/source/reference/exit-codes/exit_kill.txt @@ -1,3 +1,5 @@ +:orphan: + =================== 12 Killed (Windows) =================== @@ -10,4 +12,4 @@ receives a Control-C, Close, Break or Shutdown event. .. symbol: EXIT_KILL = 12 -.. mongo/src/mongo/db/db.cpp \ No newline at end of file +.. mongo/src/mongo/db/db.cpp diff --git a/source/reference/exit-codes/exit_need_upgrade.txt b/source/reference/exit-codes/exit_need_upgrade.txt index 81a25e2522d..0a6b24a30f9 100644 --- a/source/reference/exit-codes/exit_need_upgrade.txt +++ b/source/reference/exit-codes/exit_need_upgrade.txt @@ -1,3 +1,5 @@ +:orphan: + ================================ 4 Database Format Upgrade Needed ================================ @@ -14,4 +16,4 @@ instance. .. symbol: EXIT_NEED_UPGRADE = 4 -.. mongo/src/mongo/db/db.cpp \ No newline at end of file +.. mongo/src/mongo/db/db.cpp diff --git a/source/reference/exit-codes/exit_net_error.txt b/source/reference/exit-codes/exit_net_error.txt index 9e352926411..d0dfc872240 100644 --- a/source/reference/exit-codes/exit_net_error.txt +++ b/source/reference/exit-codes/exit_net_error.txt @@ -1,3 +1,5 @@ +:orphan: + ================ 48 Network Error ================ @@ -6,10 +8,9 @@ .. error:: 48 - :program:`mongod` exits cleanly if the server socket (either - `27017` or the port specified with :option:`--port `). - + :program:`mongod` exits cleanly if the server socket is closed (either + `27017` or the port specified with :option:`--port `). -.. symbol: EXIT_NET_ERROR = 48 , +.. symbol: EXIT_NET_ERROR = 48 .. mongo/src/mongo/s/server.cpp -.. mongo/src/mongo/db/db.cpp \ No newline at end of file +.. mongo/src/mongo/db/db.cpp diff --git a/source/reference/exit-codes/exit_ntservice_error.txt b/source/reference/exit-codes/exit_ntservice_error.txt index cd390664174..3c73406768d 100644 --- a/source/reference/exit-codes/exit_ntservice_error.txt +++ b/source/reference/exit-codes/exit_ntservice_error.txt @@ -1,12 +1,12 @@ +:orphan: + ============================== 20 NT Service Errors (Windows) ============================== .. default-domain:: mongodb - :program:`mongod.exe` returns this error code for multiple errors. - -.. error:: 20 ERROR: wsastartup failed {reason} +.. error:: 20 ERROR: wsastartup failed _reason_ Returned by MongoDB applications on Windows due to an error in the WSAStartup function. @@ -17,6 +17,5 @@ starting or removing the NT Service for the application. .. symbol: EXIT_NTSERVICE_ERROR = 20 - .. mongo/src/mongo/util/net/sock.cpp -.. mongo/src/mongo/util/ntservice.cpp \ No newline at end of file +.. mongo/src/mongo/util/ntservice.cpp diff --git a/source/reference/exit-codes/exit_replication_error.txt b/source/reference/exit-codes/exit_replication_error.txt index fcaba61c21d..d9076118f65 100644 --- a/source/reference/exit-codes/exit_replication_error.txt +++ b/source/reference/exit-codes/exit_replication_error.txt @@ -1,3 +1,5 @@ +:orphan: + =================== 3 Replication Error =================== @@ -12,4 +14,4 @@ .. symbol: EXIT_REPLICATION_ERROR = 3 .. mongo/src/mongo/db/repl.cpp -.. mongo/src/mongo/db/repl/rs.cpp \ No newline at end of file +.. mongo/src/mongo/db/repl/rs.cpp diff --git a/source/reference/exit-codes/exit_sharding_error.txt b/source/reference/exit-codes/exit_sharding_error.txt index 5fb14a64b90..895651fa957 100644 --- a/source/reference/exit-codes/exit_sharding_error.txt +++ b/source/reference/exit-codes/exit_sharding_error.txt @@ -1,3 +1,5 @@ +:orphan: + ================ 5 Sharding Error ================ @@ -10,4 +12,4 @@ fails to confirm a commit. .. symbol: EXIT_SHARDING_ERROR = 5 -.. mongo/src/mongo/s/d_migrate.cpp \ No newline at end of file +.. mongo/src/mongo/s/d_migrate.cpp diff --git a/source/reference/exit-codes/exit_uncaught.txt b/source/reference/exit-codes/exit_uncaught.txt index fb115373114..10b388d8a4b 100644 --- a/source/reference/exit-codes/exit_uncaught.txt +++ b/source/reference/exit-codes/exit_uncaught.txt @@ -1,3 +1,5 @@ +:orphan: + ====================== 100 Uncaught Exception ====================== @@ -10,4 +12,4 @@ .. symbol: EXIT_UNCAUGHT = 100 .. mongo/src/mongo/util/net/message_server_port.cpp -.. mongo/src/mongo/db/db.cpp \ No newline at end of file +.. mongo/src/mongo/db/db.cpp diff --git a/source/reference/exit-codes/exit_windows_service_stop.txt b/source/reference/exit-codes/exit_windows_service_stop.txt index bab0dc6edf8..f12cd86d651 100644 --- a/source/reference/exit-codes/exit_windows_service_stop.txt +++ b/source/reference/exit-codes/exit_windows_service_stop.txt @@ -1,3 +1,5 @@ +:orphan: + ======================= 49 Windows Service Stop ======================= @@ -13,4 +15,4 @@ .. mongo/src/mongo/util/ntservice.cpp .. mongo/src/mongo/s/server.cpp -.. symbol: EXIT_WINDOWS_SERVICE_STOP 49 \ No newline at end of file +.. symbol: EXIT_WINDOWS_SERVICE_STOP 49