Reset signal handler.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@10213 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2001-06-20 18:51:59 +00:00
parent 901b88c57a
commit f4655c3323
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2001-06-20 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSTask.m: handleSignal() ... reset signal handler for
systems that don't have BSD signal semantics.
2001-06-15 Adam Fedor <fedor@gnu.org>
* Version: 1.0.2

View file

@ -72,6 +72,9 @@ static BOOL hadChildSignal = NO;
static void handleSignal(int sig)
{
hadChildSignal = YES;
#ifndef __MINGW__
signal(SIGCHLD, handleSignal);
#endif
}
#ifdef __MINGW__