From f8f9b12e6c3641678f931147b3f6f2c69c72201d Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Wed, 25 Oct 2000 03:54:50 +0000 Subject: * dcrt0.cc (do_exit): Don't bother looking for pgrp children to send SIGHUP if process has never created any children. * fork.cc (fork): Set flag indicating that there is another process with our process group. * spawn.cc (spawn_guts): Ditto. * pinfo.h (set_has_pgid_children): New methods for setting when process has children in its process group. * syscalls.cc (setpgid): Clear has_gid_children if pgid changes. --- winsup/cygwin/fork.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'winsup/cygwin/fork.cc') diff --git a/winsup/cygwin/fork.cc b/winsup/cygwin/fork.cc index a05279d9c..c304d34b0 100644 --- a/winsup/cygwin/fork.cc +++ b/winsup/cygwin/fork.cc @@ -598,6 +598,8 @@ fork () void *esp; __asm ("movl %%esp,%0": "=r" (esp)); + myself->set_has_pgid_children (); + child_info_fork ch; int res = setjmp (ch.jmp); -- cgit v1.2.3