Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2008-03-27 04:50:40 +0300
committerChristopher Faylor <me@cgf.cx>2008-03-27 04:50:40 +0300
commit93d606f60aed779c555017828656c8a4e3c9c6a9 (patch)
treea1064ee801fa9606f9c06a4dc7f03f79db0314d9 /winsup/cygwin/sigproc.cc
parent73de02f44b83eeccdacf7b803cc37074660f75b2 (diff)
* hookapi.cc (find_first_notloaded_dll): New function.
* pinfo.cc (status_exit): New function. Issue message when dll not found. Use find_first_notloaded_dll to find a nonexistent dll. (pinfo::maybe_set_exit_code_from_windows): Call status_exit when exit code >= 0xc0000000UL. * sigproc.cc (child_info::proc_retry): Return exit code when STATUS_DLL_NOT_FOUND. * spawn.cc (spawn_guts): Minor cleanup. * syscalls.cc (close_all_files): Don't actually close stderr filehandle. Just make it noninheritable. * winsup.h (find_first_notloaded_dll): Declare new function. * ntdll.h: Add several missing NTSTATUS defines.
Diffstat (limited to 'winsup/cygwin/sigproc.cc')
-rw-r--r--winsup/cygwin/sigproc.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/winsup/cygwin/sigproc.cc b/winsup/cygwin/sigproc.cc
index af2b023d7..4c8c471e9 100644
--- a/winsup/cygwin/sigproc.cc
+++ b/winsup/cygwin/sigproc.cc
@@ -32,6 +32,7 @@ details. */
#include "cygtls.h"
#include "sigproc.h"
#include "exceptions.h"
+#include "ntdll.h"
/*
* Convenience defines
@@ -935,6 +936,8 @@ child_info::proc_retry (HANDLE h)
case STILL_ACTIVE: /* shouldn't happen */
sigproc_printf ("STILL_ACTIVE? How'd we get here?");
break;
+ case STATUS_DLL_NOT_FOUND:
+ return exit_code;
case STATUS_CONTROL_C_EXIT:
if (saw_ctrl_c ())
return EXITCODE_OK;