diff options
| author | Kim F. Storm | 2006-06-24 22:55:08 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2006-06-24 22:55:08 +0000 |
| commit | 85a71b3757471b356d4f495a3b4164588c19bf6a (patch) | |
| tree | cf2b9ebf7169308d938f0a432eb55b4e12de2778 /src/s/gnu-linux.h | |
| parent | 86b2ba0d671ee4027b7410394e59ab6c7159e719 (diff) | |
| download | emacs-85a71b3757471b356d4f495a3b4164588c19bf6a.tar.gz emacs-85a71b3757471b356d4f495a3b4164588c19bf6a.zip | |
(SIGNALS_VIA_CHARACTERS): Define for Linux kernel
version 2.4 and later.
Diffstat (limited to 'src/s/gnu-linux.h')
| -rw-r--r-- | src/s/gnu-linux.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/s/gnu-linux.h b/src/s/gnu-linux.h index 4ef3db9f2ea..5d247a1c9c8 100644 --- a/src/s/gnu-linux.h +++ b/src/s/gnu-linux.h | |||
| @@ -52,6 +52,9 @@ Boston, MA 02110-1301, USA. */ | |||
| 52 | #if LINUX_VERSION_CODE >= 0x20000 | 52 | #if LINUX_VERSION_CODE >= 0x20000 |
| 53 | #define LINUX_MAP_SHARED_DOES_WORK | 53 | #define LINUX_MAP_SHARED_DOES_WORK |
| 54 | #endif /* LINUX_VERSION_CODE >= 0x20000 */ | 54 | #endif /* LINUX_VERSION_CODE >= 0x20000 */ |
| 55 | #if LINUX_VERSION_CODE >= 0x20400 | ||
| 56 | #define LINUX_SIGNALS_VIA_CHARACTERS_DOES_WORK | ||
| 57 | #endif /* LINUX_VERSION_CODE >= 0x20400 */ | ||
| 55 | #endif /* HAVE_LINUX_VERSION_H */ | 58 | #endif /* HAVE_LINUX_VERSION_H */ |
| 56 | #endif /* emacs */ | 59 | #endif /* emacs */ |
| 57 | #endif /* NOT_C_CODE */ | 60 | #endif /* NOT_C_CODE */ |
| @@ -247,9 +250,9 @@ Boston, MA 02110-1301, USA. */ | |||
| 247 | #define C_DEBUG_SWITCH | 250 | #define C_DEBUG_SWITCH |
| 248 | #endif | 251 | #endif |
| 249 | 252 | ||
| 250 | /* Let's try this out, just in case. | 253 | #ifdef LINUX_SIGNALS_VIA_CHARACTERS_DOES_WORK |
| 251 | Nah. Rik Faith <faith@cs.unc.edu> says it doesn't work well. */ | 254 | #define SIGNALS_VIA_CHARACTERS |
| 252 | /* #define SIGNALS_VIA_CHARACTERS */ | 255 | #endif |
| 253 | 256 | ||
| 254 | /* Rob Malouf <malouf@csli.stanford.edu> says: | 257 | /* Rob Malouf <malouf@csli.stanford.edu> says: |
| 255 | SYSV IPC is standard a standard part of Linux since version 0.99pl10, | 258 | SYSV IPC is standard a standard part of Linux since version 0.99pl10, |