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>2014-02-09 22:31:37 +0400
committerChristopher Faylor <me@cgf.cx>2014-02-09 22:31:37 +0400
commit01fc6f8d21299ef8e196d2155cd35973d08f398e (patch)
treefe5aa635f93b79dff6f9907837fe75eda95271ca /winsup/cygwin/sigproc.cc
parentd0e5dd3abe4f93dca0288c9eb18a7a6e660a3b8f (diff)
* sigproc.cc (sig_send): Don't bother with an error message if we are exiting.
Diffstat (limited to 'winsup/cygwin/sigproc.cc')
-rw-r--r--winsup/cygwin/sigproc.cc9
1 files changed, 3 insertions, 6 deletions
diff --git a/winsup/cygwin/sigproc.cc b/winsup/cygwin/sigproc.cc
index 2dfec5a0b..71b407d28 100644
--- a/winsup/cygwin/sigproc.cc
+++ b/winsup/cygwin/sigproc.cc
@@ -639,12 +639,9 @@ sig_send (_pinfo *p, siginfo_t& si, _cygtls *tls)
sigproc_printf ("WriteFile for pipe %p failed, %E", sendsig);
ForceCloseHandle (sendsig);
}
- else
- {
- if (!p->exec_sendsig)
- system_printf ("error sending signal %d to pid %d, pipe handle %p, %E",
- si.si_signo, p->pid, sendsig);
- }
+ else if (!p->exec_sendsig && !exit_state)
+ system_printf ("error sending signal %d, pipe handle %p, nb %u, packsize %u, %E",
+ si.si_signo, p->pid, sendsig, nb, packsize);
if (GetLastError () == ERROR_BROKEN_PIPE)
set_errno (ESRCH);
else