Mercurial > hg > xemacs-beta
comparison src/syssignal.h @ 369:1d62742628b6 r21-1-14
Import from CVS: tag r21-1-14
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:01:51 +0200 |
parents | 558f606b08ae |
children | cc15677e0335 |
comparison
equal
deleted
inserted
replaced
368:397a7324211a | 369:1d62742628b6 |
---|---|
207 | 207 |
208 #endif | 208 #endif |
209 | 209 |
210 /* On bsd, [man says] kill does not accept a negative number to kill a pgrp. | 210 /* On bsd, [man says] kill does not accept a negative number to kill a pgrp. |
211 Must do that using the killpg call. */ | 211 Must do that using the killpg call. */ |
212 #ifdef BSD | 212 #ifdef HAVE_KILLPG |
213 #define EMACS_KILLPG(gid, signo) killpg (gid, signo) | 213 #define EMACS_KILLPG(gid, signo) killpg (gid, signo) |
214 #else | 214 #else |
215 #ifdef WINDOWSNT | 215 #ifdef WINDOWSNT |
216 #define EMACS_KILLPG(gid, signo) (kill (gid, signo)) | 216 #define EMACS_KILLPG(gid, signo) (kill (gid, signo)) |
217 #else | 217 #else |