diff options
| author | Jim Blandy | 1992-09-23 11:51:59 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-09-23 11:51:59 +0000 |
| commit | 63528b78dd8017483c06e785dae100c9af6844e6 (patch) | |
| tree | fb75ea08bee6a235c33dea6e9fb633e2cc5d5801 /src/process.c | |
| parent | f125a9e8b5f2894df9d731f6479afd86d60d93fe (diff) | |
| download | emacs-63528b78dd8017483c06e785dae100c9af6844e6.tar.gz emacs-63528b78dd8017483c06e785dae100c9af6844e6.zip | |
* process.c [SIGCHLD && !BSD && !UNIPLUS && !HPUX]
(create_process): #if 0 out the code which sets the child's
handler for SIGCHLD to sigchld; the code which gives sigchld its
value has been diked out under these CPP symbols, so this should
be diked out too.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/process.c b/src/process.c index d3f13fd15ce..3239afa8b76 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -1274,7 +1274,9 @@ create_process (process, new_argv) | |||
| 1274 | #if defined (BSD) || defined (UNIPLUS) || defined (HPUX) | 1274 | #if defined (BSD) || defined (UNIPLUS) || defined (HPUX) |
| 1275 | sigsetmask (SIGEMPTYMASK); | 1275 | sigsetmask (SIGEMPTYMASK); |
| 1276 | #else /* ordinary USG */ | 1276 | #else /* ordinary USG */ |
| 1277 | #if 0 | ||
| 1277 | signal (SIGCHLD, sigchld); | 1278 | signal (SIGCHLD, sigchld); |
| 1279 | #endif | ||
| 1278 | #endif /* ordinary USG */ | 1280 | #endif /* ordinary USG */ |
| 1279 | #endif /* not BSD4_1 */ | 1281 | #endif /* not BSD4_1 */ |
| 1280 | #endif /* SIGCHLD */ | 1282 | #endif /* SIGCHLD */ |