summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2000-10-25 03:59:07 +0000
committerChristopher Faylor <me@cgf.cx>2000-10-25 03:59:07 +0000
commitd220f0b21c2b466dde5442feeb915cf2561939a2 (patch)
treeb33be70a0f8dd502fdc0ba90e621461b3e841d76
parentf8f9b12e6c3641678f931147b3f6f2c69c72201d (diff)
downloadcygnal-d220f0b21c2b466dde5442feeb915cf2561939a2.tar.gz
cygnal-d220f0b21c2b466dde5442feeb915cf2561939a2.tar.bz2
cygnal-d220f0b21c2b466dde5442feeb915cf2561939a2.zip
* dcrt0.cc (do_exit): Remove debugging statement.
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/dcrt0.cc2
2 files changed, 4 insertions, 2 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index e6e824d55..fdfe29358 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,7 @@
+Tue Oct 24 23:58:35 2000 Christopher Faylor <cgf@cygnus.com>
+
+ * dcrt0.cc (do_exit): Remove debugging statement.
+
Tue Oct 24 23:45:09 2000 Christopher Faylor <cgf@cygnus.com>
* dcrt0.cc (do_exit): Don't bother looking for pgrp children to send
diff --git a/winsup/cygwin/dcrt0.cc b/winsup/cygwin/dcrt0.cc
index 8e6098b0e..f5252a07c 100644
--- a/winsup/cygwin/dcrt0.cc
+++ b/winsup/cygwin/dcrt0.cc
@@ -1026,8 +1026,6 @@ do_exit (int status)
/* Kill orphaned children on group leader exit */
if (myself->has_pgid_children && myself->pid == myself->pgid)
{
- system_printf ("%d == pgrp %d, send SIG{HUP,CONT} to stopped children",
- myself->pid, myself->pgid);
sigproc_printf ("%d == pgrp %d, send SIG{HUP,CONT} to stopped children",
myself->pid, myself->pgid);
kill_pgrp (myself->pgid, -SIGHUP);