diff options
| author | Richard M. Stallman | 1996-08-10 23:42:03 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-08-10 23:42:03 +0000 |
| commit | 416799ae25ea2fcea7bf523ef5ca15976ed84f73 (patch) | |
| tree | aefce97a9cee611ac2f408483043525878b0aa05 | |
| parent | cda40aea36a21ffc088fb7a061d1bfa224ae99c2 (diff) | |
| download | emacs-416799ae25ea2fcea7bf523ef5ca15976ed84f73.tar.gz emacs-416799ae25ea2fcea7bf523ef5ca15976ed84f73.zip | |
(POSIX_SIGNALS): Don't define it, #undef instead.
(NO_SOCKETS_IN_FILE_SYSTEM): Definition deleted.
(sigblock): New definition.
| -rw-r--r-- | src/s/sco5.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/s/sco5.h b/src/s/sco5.h index 6c4fa0adbbe..2c372febe6e 100644 --- a/src/s/sco5.h +++ b/src/s/sco5.h | |||
| @@ -129,14 +129,10 @@ Boston, MA 02111-1307, USA. */ | |||
| 129 | /* Tell process_send_signal to use VSUSP instead of VSWTCH. */ | 129 | /* Tell process_send_signal to use VSUSP instead of VSWTCH. */ |
| 130 | #define PREFER_VSUSP | 130 | #define PREFER_VSUSP |
| 131 | 131 | ||
| 132 | /* wjs@wang.com (William Smith) says this is needed on 3.2.4.2. */ | 132 | /* SCO Unix has Posix signals, but in 3.2.5 something broken that causes |
| 133 | #define POSIX_SIGNALS | 133 | * all keyboard-quit signals to be lost after the first one. */ |
| 134 | 134 | #undef POSIX_SIGNALS | |
| 135 | /* wjs@wiis.wang.com says SCO 3.2 v4.2 "has sockets", | 135 | #define sigblock(sig) (sigprocmask (SIG_BLOCK, SIGEMPTYMASK | sig, NULL)) |
| 136 | but only for network connections. | ||
| 137 | It doesn't have the kind of sockets that emacsclient.c | ||
| 138 | and emacsserver.c would use. */ | ||
| 139 | #define NO_SOCKETS_IN_FILE_SYSTEM | ||
| 140 | 136 | ||
| 141 | #ifndef PENDING_OUTPUT_COUNT | 137 | #ifndef PENDING_OUTPUT_COUNT |
| 142 | #define PENDING_OUTPUT_COUNT(FILE) ((FILE)->__ptr - (FILE)->__base) | 138 | #define PENDING_OUTPUT_COUNT(FILE) ((FILE)->__ptr - (FILE)->__base) |