diff options
| author | Richard M. Stallman | 1994-05-09 03:30:26 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-05-09 03:30:26 +0000 |
| commit | 882d80792d9193a1a86922a84598b6ae1d4d9b03 (patch) | |
| tree | 4973b0ee78d6bb231ef9a0275f577cf1593c1c2d /src | |
| parent | b61631a77d672ae53f7650cbfef7fcedac6951fa (diff) | |
| download | emacs-882d80792d9193a1a86922a84598b6ae1d4d9b03.tar.gz emacs-882d80792d9193a1a86922a84598b6ae1d4d9b03.zip | |
(PREFER_VSUSP): Defined.
Diffstat (limited to 'src')
| -rw-r--r-- | src/s/irix5-0.h | 3 | ||||
| -rw-r--r-- | src/s/sco4.h | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/s/irix5-0.h b/src/s/irix5-0.h index 4770626fdfc..d2060f45bd7 100644 --- a/src/s/irix5-0.h +++ b/src/s/irix5-0.h | |||
| @@ -92,3 +92,6 @@ char *_getpty(); | |||
| 92 | 92 | ||
| 93 | /* Ulimit(UL_GMEMLIM) is busted... */ | 93 | /* Ulimit(UL_GMEMLIM) is busted... */ |
| 94 | #define ULIMIT_BREAK_VALUE 0x14000000 | 94 | #define ULIMIT_BREAK_VALUE 0x14000000 |
| 95 | |||
| 96 | /* Tell process_send_signal to use VSUSP instead of VSWTCH. */ | ||
| 97 | #define PREFER_VSUSP | ||
diff --git a/src/s/sco4.h b/src/s/sco4.h index 7af8ee173dd..f5ca1698676 100644 --- a/src/s/sco4.h +++ b/src/s/sco4.h | |||
| @@ -123,3 +123,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 123 | #define bcopy(b1,b2,len) memmove (b2, b1, len) | 123 | #define bcopy(b1,b2,len) memmove (b2, b1, len) |
| 124 | #define bzero(b,len) memset (b, 0, len) | 124 | #define bzero(b,len) memset (b, 0, len) |
| 125 | #define bcmp(b1,b2,len) memcmp (b1, b2, len) | 125 | #define bcmp(b1,b2,len) memcmp (b1, b2, len) |
| 126 | |||
| 127 | /* Tell process_send_signal to use VSUSP instead of VSWTCH. */ | ||
| 128 | #define PREFER_VSUSP | ||