Skip to content
Snippets Groups Projects
Commit 0ffb2230 authored by pw's avatar pw
Browse files

signal(SIGCHLD,SIG_IGN) for SVR4 (solaris)

parent 2e2f4da3
No related branches found
No related tags found
No related merge requests found
/*
$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/motif/server/main.c,v 1.12 1998/07/09 02:14:06 dtc Exp $
$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/motif/server/main.c,v 1.13 1999/03/24 15:11:38 pw Exp $
This code was written as part of the CMU Common Lisp project at
Carnegie Mellon University, and has been placed in the public domain.
......@@ -252,7 +252,7 @@ main(int argc, char **argv)
signal(SIGQUIT, server_shutdown);
#if defined BSD
signal(SIGCHLD, bury_zombie);
#elif defined(hpux)
#elif defined(hpux) || defined(SVR4)
signal(SIGCHLD, SIG_IGN);
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment