diff options
Diffstat (limited to 'winsup/cygwin/sigproc.cc')
-rw-r--r-- | winsup/cygwin/sigproc.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/winsup/cygwin/sigproc.cc b/winsup/cygwin/sigproc.cc index 3c7d19f40..93844c48a 100644 --- a/winsup/cygwin/sigproc.cc +++ b/winsup/cygwin/sigproc.cc @@ -771,7 +771,9 @@ child_info::ready (bool execed) return; } - if (!SetEvent (subproc_ready)) + if (dynamically_loaded) + sigproc_printf ("not really ready"); + else if (!SetEvent (subproc_ready)) api_fatal ("SetEvent failed"); else sigproc_printf ("signalled %p that I was ready", subproc_ready); |