aboutsummaryrefslogtreecommitdiff
path: root/butl
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-04-26 21:34:04 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-04-26 21:34:04 +0300
commit4b7dfd5a9c0e8f5aeacd14b2e629993550eef2b7 (patch)
tree4e4e0708352cd8bd0dbf2123f17252fa561d29fb /butl
parent1bea889fd59b4ac3a32232e8f7a9ba34506717dc (diff)
Add STATUS_DLL_INIT_FAILED process exit status description
Diffstat (limited to 'butl')
-rw-r--r--butl/process.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/butl/process.cxx b/butl/process.cxx
index c427aa8..c0355d4 100644
--- a/butl/process.cxx
+++ b/butl/process.cxx
@@ -1282,7 +1282,7 @@ namespace butl
switch (status)
{
case STATUS_ACCESS_VIOLATION: return "access violation";
- case STATUS_STACK_OVERFLOW: return "stack overflow";
+ case STATUS_DLL_INIT_FAILED: return "DLL initialization failed";
case STATUS_INTEGER_DIVIDE_BY_ZERO: return "integer divided by zero";
// VC-compiled program that calls abort() terminates with this error code
@@ -1291,6 +1291,7 @@ namespace butl
// program exits with status 3 for both VC and MinGW GCC. Sounds weird.
//
case STATUS_STACK_BUFFER_OVERRUN: return "stack buffer overrun";
+ case STATUS_STACK_OVERFLOW: return "stack overflow";
default:
{