diff options
| author | Jim Blandy | 1992-11-16 00:30:10 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-11-16 00:30:10 +0000 |
| commit | 4968c1026fd04662fc3e3eb25992e68c183cc0d0 (patch) | |
| tree | 537254f87747888c41c94fc2cf07c0dd2e7e1a8e | |
| parent | dc9d84de6a42cf48d0aad31b72bf00569b932b0a (diff) | |
| download | emacs-4968c1026fd04662fc3e3eb25992e68c183cc0d0.tar.gz emacs-4968c1026fd04662fc3e3eb25992e68c183cc0d0.zip | |
* s/bsd4-2.h, s/bsd4-3.h: #define SIGNALS_VIA_CHARACTERS.
* process.c (process_send_signal): Put all the code for sending
signals via characters in a #ifdef SIGNALS_VIA_CHARACTERS. Decide
whether to use the Berkeley-style or SYSV-style ioctls by seeing
which ioctl commands are #defined.
| -rw-r--r-- | src/s/bsd4-2.h | 4 | ||||
| -rw-r--r-- | src/s/bsd4-3.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/s/bsd4-2.h b/src/s/bsd4-2.h index ea9334c520c..ab8b7fbdd9a 100644 --- a/src/s/bsd4-2.h +++ b/src/s/bsd4-2.h | |||
| @@ -126,3 +126,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 126 | is named _avenrun. */ | 126 | is named _avenrun. */ |
| 127 | 127 | ||
| 128 | #define LDAV_SYMBOL "_avenrun" | 128 | #define LDAV_SYMBOL "_avenrun" |
| 129 | |||
| 130 | /* Send signals to subprocesses by "typing" special chars at them. */ | ||
| 131 | |||
| 132 | #define SIGNALS_VIA_CHARACTERS | ||
diff --git a/src/s/bsd4-3.h b/src/s/bsd4-3.h index 22330ba85b0..4eb66dc4ffc 100644 --- a/src/s/bsd4-3.h +++ b/src/s/bsd4-3.h | |||
| @@ -129,3 +129,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 129 | is named _avenrun. */ | 129 | is named _avenrun. */ |
| 130 | 130 | ||
| 131 | #define LDAV_SYMBOL "_avenrun" | 131 | #define LDAV_SYMBOL "_avenrun" |
| 132 | |||
| 133 | /* Send signals to subprocesses by "typing" special chars at them. */ | ||
| 134 | |||
| 135 | #define SIGNALS_VIA_CHARACTERS | ||