From: Richard M. Stallman Date: Tue, 1 Nov 1994 08:42:36 +0000 (+0000) Subject: [WINDOWSNT] (EMACS_KILLPG): Use win32_kill_process. X-Git-Tag: emacs-19.34~6059 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=57d655926a7f1fa71a27476dfb540d42a069439c;p=emacs.git [WINDOWSNT] (EMACS_KILLPG): Use win32_kill_process. --- diff --git a/src/syssignal.h b/src/syssignal.h index 171cd24db65..d5af069ae71 100644 --- a/src/syssignal.h +++ b/src/syssignal.h @@ -135,8 +135,12 @@ sigset_t sys_sigsetmask (sigset_t new_mask); #ifdef BSD #define EMACS_KILLPG(gid, signo) (killpg ( (gid), (signo))) #else +#ifdef WINDOWSNT +#define EMACS_KILLPG(gid, signo) (win32_kill_process (gid, signo)) +#else #define EMACS_KILLPG(gid, signo) (kill (-(gid), (signo))) #endif +#endif /* Define SIGCHLD as an alias for SIGCLD. There are many conditionals testing SIGCHLD. */