aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-11-01 08:42:36 +0000
committerRichard M. Stallman1994-11-01 08:42:36 +0000
commit57d655926a7f1fa71a27476dfb540d42a069439c (patch)
tree9e5a5470d1e7ce1160c0775df0f6046b72d2111a /src
parent101adcb531236e59b98a5bbc7fad8661444660f0 (diff)
downloademacs-57d655926a7f1fa71a27476dfb540d42a069439c.tar.gz
emacs-57d655926a7f1fa71a27476dfb540d42a069439c.zip
[WINDOWSNT] (EMACS_KILLPG): Use win32_kill_process.
Diffstat (limited to 'src')
-rw-r--r--src/syssignal.h4
1 files changed, 4 insertions, 0 deletions
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);
135#ifdef BSD 135#ifdef BSD
136#define EMACS_KILLPG(gid, signo) (killpg ( (gid), (signo))) 136#define EMACS_KILLPG(gid, signo) (killpg ( (gid), (signo)))
137#else 137#else
138#ifdef WINDOWSNT
139#define EMACS_KILLPG(gid, signo) (win32_kill_process (gid, signo))
140#else
138#define EMACS_KILLPG(gid, signo) (kill (-(gid), (signo))) 141#define EMACS_KILLPG(gid, signo) (kill (-(gid), (signo)))
139#endif 142#endif
143#endif
140 144
141/* Define SIGCHLD as an alias for SIGCLD. There are many conditionals 145/* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
142 testing SIGCHLD. */ 146 testing SIGCHLD. */