comparison src/process.c @ 102:a145efe76779 r20-1b3

Import from CVS: tag r20-1b3
author cvs
date Mon, 13 Aug 2007 09:15:49 +0200
parents 4be1180a9e89
children cf808b4c4290
comparison
equal deleted inserted replaced
101:a0ec055d74dd 102:a145efe76779
2276 race conditions with the SIGCHLD_HAPPENED flag). */ 2276 race conditions with the SIGCHLD_HAPPENED flag). */
2277 2277
2278 static void 2278 static void
2279 record_exited_processes (int block_sigchld) 2279 record_exited_processes (int block_sigchld)
2280 { 2280 {
2281 #ifdef EMACS_BLOCK_SIGNAL
2281 if (block_sigchld) 2282 if (block_sigchld)
2282 #ifdef EMACS_BLOCK_SIGNAL
2283 EMACS_BLOCK_SIGNAL (SIGCHLD); 2283 EMACS_BLOCK_SIGNAL (SIGCHLD);
2284 #endif 2284 #endif
2285 2285
2286 while (sigchld_happened) 2286 while (sigchld_happened)
2287 { 2287 {