* dcrt0.cc (do_exit): Remove debugging statement.

This commit is contained in:
Christopher Faylor 2000-10-25 03:59:07 +00:00
parent f8f9b12e6c
commit d220f0b21c
2 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -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);