Mercurial > hg > octave-nkf
diff src/sighandlers.h @ 5144:25b090e1be9f
[project @ 2005-02-15 12:06:05 by jwe]
author | jwe |
---|---|
date | Tue, 15 Feb 2005 12:06:44 +0000 |
parents | 0f9108f298ab |
children | 4c8a2e4e0717 |
line wrap: on
line diff
--- a/src/sighandlers.h +++ b/src/sighandlers.h @@ -61,6 +61,10 @@ } \ while (0) +#if !defined (SIGCHLD) && defined (SIGCLD) +#define SIGCHLD SIGCLD +#endif + #if defined (HAVE_POSIX_SIGNALS) #define BLOCK_CHILD(nvar, ovar) BLOCK_SIGNAL (SIGCHLD, nvar, ovar) #define UNBLOCK_CHILD(ovar) sigprocmask (SIG_SETMASK, &ovar, 0)