summaryrefslogtreecommitdiff
path: root/src/syssignal.h
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-11-01 08:42:36 +0000
committerRichard M. Stallman <rms@gnu.org>1994-11-01 08:42:36 +0000
commit57d655926a7f1fa71a27476dfb540d42a069439c (patch)
tree9e5a5470d1e7ce1160c0775df0f6046b72d2111a /src/syssignal.h
parent101adcb531236e59b98a5bbc7fad8661444660f0 (diff)
downloademacs-57d655926a7f1fa71a27476dfb540d42a069439c.tar.gz
[WINDOWSNT] (EMACS_KILLPG): Use win32_kill_process.
Diffstat (limited to 'src/syssignal.h')
-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);
#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. */