From 01fc6f8d21299ef8e196d2155cd35973d08f398e Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Sun, 9 Feb 2014 18:31:37 +0000 Subject: [PATCH] * sigproc.cc (sig_send): Don't bother with an error message if we are exiting. --- winsup/cygwin/ChangeLog | 5 +++++ winsup/cygwin/sigproc.cc | 9 +++------ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index be0a3f7fa..644930c36 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2014-02-09 Christopher Faylor + + * sigproc.cc (sig_send): Don't bother with an error message if we are + exiting. + 2014-02-08 Corinna Vinschen * miscfuncs.h (class NT_readline): New class to implement line-wise 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