comparison src/s/xenix.h @ 3591:507f64624555

Apply typo patches from Paul Eggert.
author Jim Blandy <jimb@redhat.com>
date Wed, 09 Jun 1993 11:59:12 +0000
parents e442bb589751
children 7be0f0a02725
comparison
equal deleted inserted replaced
3590:d5f22061277d 3591:507f64624555
49 or using CBREAK mode and making C-g cause SIGINT. 49 or using CBREAK mode and making C-g cause SIGINT.
50 The choice is controlled by the variable interrupt_input. 50 The choice is controlled by the variable interrupt_input.
51 Define INTERRUPT_INPUT to make interrupt_input = 1 the default (use SIGIO) 51 Define INTERRUPT_INPUT to make interrupt_input = 1 the default (use SIGIO)
52 52
53 SIGIO can be used only on systems that implement it (4.2 and 4.3). 53 SIGIO can be used only on systems that implement it (4.2 and 4.3).
54 CBREAK mode has two disadvatages 54 CBREAK mode has two disadvantages:
55 1) At least in 4.2, it is impossible to handle the Meta key properly. 55 1) At least in 4.2, it is impossible to handle the Meta key properly.
56 I hear that in system V this problem does not exist. 56 I hear that in system V this problem does not exist.
57 2) Control-G causes output to be discarded. 57 2) Control-G causes output to be discarded.
58 I do not know whether this can be fixed in system V. 58 I do not know whether this can be fixed in system V.
59 59
178 but they will run slower. */ 178 but they will run slower. */
179 179
180 #define _setjmp setjmp 180 #define _setjmp setjmp
181 #define _longjmp longjmp 181 #define _longjmp longjmp
182 182
183 /* On USG systems the system calls are interruptable by signals 183 /* On USG systems the system calls are interruptible by signals
184 that the user program has elected to catch. Thus the system call 184 that the user program has elected to catch. Thus the system call
185 must be retried in these cases. To handle this without massive 185 must be retried in these cases. To handle this without massive
186 changes in the source code, we remap the standard system call names 186 changes in the source code, we remap the standard system call names
187 to names for our own functions in sysdep.c that do the system call 187 to names for our own functions in sysdep.c that do the system call
188 with retries. */ 188 with retries. */