Mercurial > emacs
annotate src/sysdep.c @ 4142:6cdfdbe5058b
* xterm.c, sysdep.c (F_SETOWN_BUG): Defined.
* m/dpx2.h: New file.
| author | Jim Blandy <jimb@redhat.com> |
|---|---|
| date | Sun, 18 Jul 1993 06:27:15 +0000 |
| parents | e8bcf96f1418 |
| children | ecac48eaacce |
| rev | line source |
|---|---|
| 491 | 1 /* Interfaces to system-dependent kernel and library entries. |
| 2961 | 2 Copyright (C) 1985, 1986, 1987, 1988, 1993 Free Software Foundation, Inc. |
| 491 | 3 |
| 4 This file is part of GNU Emacs. | |
| 5 | |
| 6 GNU Emacs is free software; you can redistribute it and/or modify | |
| 7 it under the terms of the GNU General Public License as published by | |
| 8 the Free Software Foundation; either version 1, or (at your option) | |
| 9 any later version. | |
| 10 | |
| 11 GNU Emacs is distributed in the hope that it will be useful, | |
| 12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 14 GNU General Public License for more details. | |
| 15 | |
| 16 You should have received a copy of the GNU General Public License | |
| 17 along with GNU Emacs; see the file COPYING. If not, write to | |
| 18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
| 19 | |
| 20 | |
| 21 #include <signal.h> | |
| 22 #include <setjmp.h> | |
| 23 | |
| 24 #include "config.h" | |
| 25 #include "lisp.h" | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2332
diff
changeset
|
26 #include "blockinput.h" |
| 491 | 27 #undef NULL |
| 28 | |
| 29 #define min(x,y) ((x) > (y) ? (y) : (x)) | |
| 30 | |
| 31 /* In this file, open, read and write refer to the system calls, | |
| 32 not our sugared interfaces sys_open, sys_read and sys_write. | |
| 33 Contrariwise, for systems where we use the system calls directly, | |
| 34 define sys_read, etc. here as aliases for them. */ | |
| 35 #ifndef read | |
| 36 #define sys_read read | |
| 37 #define sys_write write | |
| 38 #endif /* `read' is not a macro */ | |
| 39 | |
| 40 #undef read | |
| 41 #undef write | |
| 42 | |
| 43 #ifndef close | |
| 44 #define sys_close close | |
| 45 #else | |
| 46 #undef close | |
| 47 #endif | |
| 48 | |
| 49 #ifndef open | |
| 50 #define sys_open open | |
| 51 #else /* `open' is a macro */ | |
| 52 #undef open | |
| 53 #endif /* `open' is a macro */ | |
| 54 | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
55 /* Does anyone other than VMS need this? */ |
|
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
56 #ifndef fwrite |
|
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
57 #define sys_fwrite fwrite |
|
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
58 #else |
|
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
59 #undef fwrite |
|
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
60 #endif |
|
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
61 |
| 491 | 62 #include <stdio.h> |
| 63 #include <sys/types.h> | |
| 64 #include <sys/stat.h> | |
| 65 #include <errno.h> | |
| 66 | |
| 67 extern int errno; | |
| 68 #ifndef VMS | |
| 69 extern char *sys_errlist[]; | |
| 70 #endif | |
| 71 | |
| 72 #ifdef VMS | |
| 73 #include <rms.h> | |
| 74 #include <ttdef.h> | |
| 75 #include <tt2def.h> | |
| 76 #include <iodef.h> | |
| 77 #include <ssdef.h> | |
| 78 #include <descrip.h> | |
| 79 #include <fibdef.h> | |
| 80 #include <atrdef.h> | |
| 81 #include <ctype.h> | |
| 82 #include <string.h> | |
| 83 #ifdef __GNUC__ | |
| 84 #include <sys/file.h> | |
| 85 #else | |
| 86 #include <file.h> | |
| 87 #endif | |
| 88 #undef F_SETFL | |
| 89 #ifndef RAB$C_BID | |
| 90 #include <rab.h> | |
| 91 #endif | |
| 92 #define MAXIOSIZE ( 32 * PAGESIZE ) /* Don't I/O more than 32 blocks at a time */ | |
| 93 #endif /* VMS */ | |
| 94 | |
| 95 #ifndef BSD4_1 | |
| 96 #ifdef BSD /* this is done this way to avoid defined (BSD) || defined (USG) | |
| 97 because the vms compiler doesn't grok `defined' */ | |
| 98 #include <fcntl.h> | |
| 99 #endif | |
| 100 #ifdef USG | |
|
1014
6e25f9b75841
* sysdep.c (select): There's no need to cast the return value of
Jim Blandy <jimb@redhat.com>
parents:
766
diff
changeset
|
101 #ifndef USG5 |
| 491 | 102 #include <fcntl.h> |
| 103 #endif | |
|
1014
6e25f9b75841
* sysdep.c (select): There's no need to cast the return value of
Jim Blandy <jimb@redhat.com>
parents:
766
diff
changeset
|
104 #endif |
| 491 | 105 #endif /* not 4.1 bsd */ |
| 106 | |
|
3604
be31c90ee59d
* sysdep.c: Remove clause for DGUX support of FASYNC; add clause
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
107 #ifdef BROKEN_FASYNC |
|
be31c90ee59d
* sysdep.c: Remove clause for DGUX support of FASYNC; add clause
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
108 /* On some systems (DGUX comes to mind real fast) FASYNC causes |
|
be31c90ee59d
* sysdep.c: Remove clause for DGUX support of FASYNC; add clause
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
109 background writes to the terminal to stop all processes in the |
|
be31c90ee59d
* sysdep.c: Remove clause for DGUX support of FASYNC; add clause
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
110 process group when invoked under the csh (and probably any shell |
|
be31c90ee59d
* sysdep.c: Remove clause for DGUX support of FASYNC; add clause
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
111 with job control). This stops Emacs dead in its tracks when coming |
|
be31c90ee59d
* sysdep.c: Remove clause for DGUX support of FASYNC; add clause
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
112 up under X11. */ |
|
be31c90ee59d
* sysdep.c: Remove clause for DGUX support of FASYNC; add clause
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
113 #undef FASYNC |
|
be31c90ee59d
* sysdep.c: Remove clause for DGUX support of FASYNC; add clause
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
114 #endif |
| 491 | 115 |
| 116 #include <sys/ioctl.h> | |
|
1048
9899cb2199af
* sysdep.c (init_baud_rate): Re-arranged order of conditionals -
Jim Blandy <jimb@redhat.com>
parents:
1014
diff
changeset
|
117 #include "systty.h" |
| 491 | 118 |
| 119 #ifdef BSD | |
| 120 #ifdef BSD4_1 | |
| 121 #include <wait.h> | |
| 122 #else /* not 4.1 */ | |
| 123 #include <sys/wait.h> | |
| 124 #endif /* not 4.1 */ | |
| 125 #endif /* BSD */ | |
| 126 | |
| 127 #ifdef BROKEN_TIOCGWINSZ | |
| 128 #undef TIOCGWINSZ | |
| 129 #endif | |
| 130 | |
| 131 #ifdef USG | |
| 132 #include <sys/utsname.h> | |
| 133 #include <string.h> | |
| 134 #ifndef MEMORY_IN_STRING_H | |
| 135 #include <memory.h> | |
| 136 #endif | |
| 137 #ifdef TIOCGWINSZ | |
| 138 #ifdef NEED_SIOCTL | |
| 139 #include <sys/sioctl.h> | |
| 140 #endif | |
| 141 #ifdef NEED_PTEM_H | |
| 142 #include <sys/stream.h> | |
| 143 #include <sys/ptem.h> | |
| 144 #endif | |
| 145 #endif /* TIOCGWINSZ */ | |
| 146 #endif /* USG */ | |
| 147 | |
| 148 extern int quit_char; | |
| 149 | |
| 766 | 150 #include "frame.h" |
| 491 | 151 #include "window.h" |
| 152 #include "termhooks.h" | |
| 153 #include "termchar.h" | |
| 154 #include "termopts.h" | |
| 155 #include "dispextern.h" | |
| 156 #include "process.h" | |
| 157 | |
| 158 #ifdef NONSYSTEM_DIR_LIBRARY | |
| 159 #include "ndir.h" | |
| 160 #endif /* NONSYSTEM_DIR_LIBRARY */ | |
| 161 | |
| 579 | 162 #include "syssignal.h" |
| 163 #include "systime.h" | |
| 491 | 164 |
| 165 static int baud_convert[] = | |
| 166 #ifdef BAUD_CONVERT | |
| 167 BAUD_CONVERT; | |
| 168 #else | |
| 169 { | |
| 170 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200, | |
| 171 1800, 2400, 4800, 9600, 19200, 38400 | |
| 172 }; | |
| 173 #endif | |
| 174 | |
| 175 extern short ospeed; | |
| 176 | |
| 579 | 177 /* The file descriptor for Emacs's input terminal. |
| 178 Under Unix, this is always left zero; | |
| 179 under VMS, we place the input channel number here. | |
| 180 This allows us to write more code that works for both VMS and Unix. */ | |
| 181 static int input_fd; | |
| 182 | |
| 491 | 183 discard_tty_input () |
| 184 { | |
| 579 | 185 struct emacs_tty buf; |
| 491 | 186 |
| 187 if (noninteractive) | |
| 188 return; | |
| 189 | |
| 190 /* Discarding input is not safe when the input could contain | |
| 191 replies from the X server. So don't do it. */ | |
| 192 if (read_socket_hook) | |
| 193 return; | |
| 194 | |
| 195 #ifdef VMS | |
| 196 end_kbd_input (); | |
| 579 | 197 SYS$QIOW (0, input_fd, IO$_READVBLK|IO$M_PURGE, input_iosb, 0, 0, |
| 198 &buf.main, 0, 0, terminator_mask, 0, 0); | |
| 491 | 199 queue_kbd_input (); |
| 200 #else /* not VMS */ | |
| 201 #ifdef APOLLO | |
| 202 { | |
| 203 int zero = 0; | |
| 204 ioctl (0, TIOCFLUSH, &zero); | |
| 205 } | |
| 206 #else /* not Apollo */ | |
| 579 | 207 EMACS_GET_TTY (input_fd, &buf); |
| 208 EMACS_SET_TTY (input_fd, &buf, 0); | |
| 491 | 209 #endif /* not Apollo */ |
| 210 #endif /* not VMS */ | |
| 211 } | |
| 212 | |
| 213 #ifdef SIGTSTP | |
| 214 | |
| 215 stuff_char (c) | |
| 216 char c; | |
| 217 { | |
| 218 /* Should perhaps error if in batch mode */ | |
| 219 #ifdef TIOCSTI | |
| 220 ioctl (0, TIOCSTI, &c); | |
| 221 #else /* no TIOCSTI */ | |
| 222 error ("Cannot stuff terminal input characters in this version of Unix."); | |
| 223 #endif /* no TIOCSTI */ | |
| 224 } | |
| 225 | |
| 226 #endif /* SIGTSTP */ | |
| 227 | |
| 228 init_baud_rate () | |
| 229 { | |
| 230 if (noninteractive) | |
| 231 ospeed = 0; | |
| 232 else | |
| 233 { | |
| 234 #ifdef VMS | |
| 579 | 235 struct sensemode sg; |
| 236 | |
| 237 SYS$QIOW (0, input_fd, IO$_SENSEMODE, &sg, 0, 0, | |
| 491 | 238 &sg.class, 12, 0, 0, 0, 0 ); |
| 579 | 239 ospeed = sg.xmit_baud; |
| 240 #else /* not VMS */ | |
| 241 #ifdef HAVE_TERMIOS | |
| 242 struct termios sg; | |
| 243 | |
| 244 sg.c_cflag = (sg.c_cflag & ~CBAUD) | B9600; | |
| 245 tcgetattr (0, &sg); | |
|
3559
a9b886b3f976
(init_baud_rate) [HAVE_TERMIOS]: Use cfgetospeed.
Richard M. Stallman <rms@gnu.org>
parents:
3472
diff
changeset
|
246 ospeed = cfgetospeed (&sg); |
|
1048
9899cb2199af
* sysdep.c (init_baud_rate): Re-arranged order of conditionals -
Jim Blandy <jimb@redhat.com>
parents:
1014
diff
changeset
|
247 #else /* neither VMS nor TERMIOS */ |
|
9899cb2199af
* sysdep.c (init_baud_rate): Re-arranged order of conditionals -
Jim Blandy <jimb@redhat.com>
parents:
1014
diff
changeset
|
248 #ifdef HAVE_TERMIO |
|
9899cb2199af
* sysdep.c (init_baud_rate): Re-arranged order of conditionals -
Jim Blandy <jimb@redhat.com>
parents:
1014
diff
changeset
|
249 struct termio sg; |
|
9899cb2199af
* sysdep.c (init_baud_rate): Re-arranged order of conditionals -
Jim Blandy <jimb@redhat.com>
parents:
1014
diff
changeset
|
250 |
|
9899cb2199af
* sysdep.c (init_baud_rate): Re-arranged order of conditionals -
Jim Blandy <jimb@redhat.com>
parents:
1014
diff
changeset
|
251 sg.c_cflag = (sg.c_cflag & ~CBAUD) | B9600; |
|
9899cb2199af
* sysdep.c (init_baud_rate): Re-arranged order of conditionals -
Jim Blandy <jimb@redhat.com>
parents:
1014
diff
changeset
|
252 #ifdef HAVE_TCATTR |
|
9899cb2199af
* sysdep.c (init_baud_rate): Re-arranged order of conditionals -
Jim Blandy <jimb@redhat.com>
parents:
1014
diff
changeset
|
253 tcgetattr (0, &sg); |
|
9899cb2199af
* sysdep.c (init_baud_rate): Re-arranged order of conditionals -
Jim Blandy <jimb@redhat.com>
parents:
1014
diff
changeset
|
254 #else |
|
2121
ebc56bb13048
* sysdep.c (read_input_waiting): Set e.frame_or_window, not
Jim Blandy <jimb@redhat.com>
parents:
1927
diff
changeset
|
255 ioctl (input_fd, TCGETA, &sg); |
|
1048
9899cb2199af
* sysdep.c (init_baud_rate): Re-arranged order of conditionals -
Jim Blandy <jimb@redhat.com>
parents:
1014
diff
changeset
|
256 #endif |
|
9899cb2199af
* sysdep.c (init_baud_rate): Re-arranged order of conditionals -
Jim Blandy <jimb@redhat.com>
parents:
1014
diff
changeset
|
257 ospeed = sg.c_cflag & CBAUD; |
|
9899cb2199af
* sysdep.c (init_baud_rate): Re-arranged order of conditionals -
Jim Blandy <jimb@redhat.com>
parents:
1014
diff
changeset
|
258 #else /* neither VMS nor TERMIOS nor TERMIO */ |
| 579 | 259 struct sgttyb sg; |
| 260 | |
| 261 sg.sg_ospeed = B9600; | |
|
3559
a9b886b3f976
(init_baud_rate) [HAVE_TERMIOS]: Use cfgetospeed.
Richard M. Stallman <rms@gnu.org>
parents:
3472
diff
changeset
|
262 if (ioctl (0, TIOCGETP, &sg) < 0) |
|
a9b886b3f976
(init_baud_rate) [HAVE_TERMIOS]: Use cfgetospeed.
Richard M. Stallman <rms@gnu.org>
parents:
3472
diff
changeset
|
263 abort (); |
| 579 | 264 ospeed = sg.sg_ospeed; |
|
1048
9899cb2199af
* sysdep.c (init_baud_rate): Re-arranged order of conditionals -
Jim Blandy <jimb@redhat.com>
parents:
1014
diff
changeset
|
265 #endif /* not HAVE_TERMIO */ |
| 579 | 266 #endif /* not HAVE_TERMIOS */ |
| 491 | 267 #endif /* not VMS */ |
| 268 } | |
| 269 | |
| 270 baud_rate = (ospeed < sizeof baud_convert / sizeof baud_convert[0] | |
| 271 ? baud_convert[ospeed] : 9600); | |
| 272 if (baud_rate == 0) | |
| 273 baud_rate = 1200; | |
| 274 } | |
| 275 | |
| 276 /*ARGSUSED*/ | |
| 277 set_exclusive_use (fd) | |
| 278 int fd; | |
| 279 { | |
| 280 #ifdef FIOCLEX | |
| 281 ioctl (fd, FIOCLEX, 0); | |
| 282 #endif | |
| 283 /* Ok to do nothing if this feature does not exist */ | |
| 284 } | |
| 285 | |
| 286 #ifndef subprocesses | |
| 287 | |
| 288 wait_without_blocking () | |
| 289 { | |
| 290 #ifdef BSD | |
| 291 wait3 (0, WNOHANG | WUNTRACED, 0); | |
| 292 #else | |
| 293 croak ("wait_without_blocking"); | |
| 294 #endif | |
| 295 synch_process_alive = 0; | |
| 296 } | |
| 297 | |
| 298 #endif /* not subprocesses */ | |
| 299 | |
| 300 int wait_debugging; /* Set nonzero to make following function work under dbx | |
| 301 (at least for bsd). */ | |
| 302 | |
| 303 SIGTYPE | |
| 304 wait_for_termination_signal () | |
| 305 {} | |
| 306 | |
| 307 /* Wait for subprocess with process id `pid' to terminate and | |
| 308 make sure it will get eliminated (not remain forever as a zombie) */ | |
| 309 | |
| 310 wait_for_termination (pid) | |
| 311 int pid; | |
| 312 { | |
| 313 while (1) | |
| 314 { | |
| 315 #ifdef subprocesses | |
| 316 #ifdef VMS | |
| 317 int status; | |
| 318 | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
319 status = SYS$FORCEX (&pid, 0, 0); |
| 491 | 320 break; |
| 321 #else /* not VMS */ | |
|
3334
7900edb84c4f
(wait_for_termination): Delete LINUX conditionals.
Richard M. Stallman <rms@gnu.org>
parents:
3321
diff
changeset
|
322 #if defined (BSD) || (defined (HPUX) && !defined (HPUX_5)) |
|
2942
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
323 /* Note that kill returns -1 even if the process is just a zombie now. |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
324 But inevitably a SIGCHLD interrupt should be generated |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
325 and child_sig will do wait3 and make the process go away. */ |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
326 /* There is some indication that there is a bug involved with |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
327 termination of subprocesses, perhaps involving a kernel bug too, |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
328 but no idea what it is. Just as a hunch we signal SIGCHLD to see |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
329 if that causes the problem to go away or get worse. */ |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
330 sigsetmask (sigmask (SIGCHLD)); |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
331 if (0 > kill (pid, 0)) |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
332 { |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
333 sigsetmask (SIGEMPTYMASK); |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
334 kill (getpid (), SIGCHLD); |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
335 break; |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
336 } |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
337 if (wait_debugging) |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
338 sleep (1); |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
339 else |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
340 sigpause (SIGEMPTYMASK); |
|
3334
7900edb84c4f
(wait_for_termination): Delete LINUX conditionals.
Richard M. Stallman <rms@gnu.org>
parents:
3321
diff
changeset
|
341 #else /* not BSD, and not HPUX version >= 6 */ |
|
7900edb84c4f
(wait_for_termination): Delete LINUX conditionals.
Richard M. Stallman <rms@gnu.org>
parents:
3321
diff
changeset
|
342 #if defined (UNIPLUS) |
|
2942
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
343 if (0 > kill (pid, 0)) |
| 491 | 344 break; |
|
2942
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
345 wait (0); |
|
3334
7900edb84c4f
(wait_for_termination): Delete LINUX conditionals.
Richard M. Stallman <rms@gnu.org>
parents:
3321
diff
changeset
|
346 #else /* neither BSD nor UNIPLUS: random sysV */ |
|
3301
aaf396661221
(wait_for_termination): Add POSIX_SIGNALS alternative.
Richard M. Stallman <rms@gnu.org>
parents:
3292
diff
changeset
|
347 #ifdef POSIX_SIGNALS /* would this work for LINUX as well? */ |
|
aaf396661221
(wait_for_termination): Add POSIX_SIGNALS alternative.
Richard M. Stallman <rms@gnu.org>
parents:
3292
diff
changeset
|
348 sigblock (sigmask (SIGCHLD)); |
|
aaf396661221
(wait_for_termination): Add POSIX_SIGNALS alternative.
Richard M. Stallman <rms@gnu.org>
parents:
3292
diff
changeset
|
349 if (0 > kill (pid, 0)) |
|
aaf396661221
(wait_for_termination): Add POSIX_SIGNALS alternative.
Richard M. Stallman <rms@gnu.org>
parents:
3292
diff
changeset
|
350 { |
|
aaf396661221
(wait_for_termination): Add POSIX_SIGNALS alternative.
Richard M. Stallman <rms@gnu.org>
parents:
3292
diff
changeset
|
351 sigunblock (sigmask (SIGCHLD)); |
|
aaf396661221
(wait_for_termination): Add POSIX_SIGNALS alternative.
Richard M. Stallman <rms@gnu.org>
parents:
3292
diff
changeset
|
352 break; |
|
aaf396661221
(wait_for_termination): Add POSIX_SIGNALS alternative.
Richard M. Stallman <rms@gnu.org>
parents:
3292
diff
changeset
|
353 } |
|
3472
6f05f6e83e94
(wait_for_termination): Fix sigpause in POSIX_SIGNALS case.
Richard M. Stallman <rms@gnu.org>
parents:
3334
diff
changeset
|
354 sigpause (SIGEMPTYMASK); |
|
3301
aaf396661221
(wait_for_termination): Add POSIX_SIGNALS alternative.
Richard M. Stallman <rms@gnu.org>
parents:
3292
diff
changeset
|
355 #else /* not POSIX_SIGNALS */ |
|
2942
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
356 #ifdef HAVE_SYSV_SIGPAUSE |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
357 sighold (SIGCHLD); |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
358 if (0 > kill (pid, 0)) |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
359 { |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
360 sigrelse (SIGCHLD); |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
361 break; |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
362 } |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
363 sigpause (SIGCHLD); |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
364 #else /* not HAVE_SYSV_SIGPAUSE */ |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
365 if (0 > kill (pid, 0)) |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
366 break; |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
367 /* Using sleep instead of pause avoids timing error. |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
368 If the inferior dies just before the sleep, |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
369 we lose just one second. */ |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
370 sleep (1); |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
371 #endif /* not HAVE_SYSV_SIGPAUSE */ |
|
3301
aaf396661221
(wait_for_termination): Add POSIX_SIGNALS alternative.
Richard M. Stallman <rms@gnu.org>
parents:
3292
diff
changeset
|
372 #endif /* not POSIX_SIGNALS */ |
|
2942
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
373 #endif /* not UNIPLUS */ |
|
9ac629dc3a4b
(wait_for_termination): Copy code from 18.59 (but sans BSD4_1 alternatives).
Richard M. Stallman <rms@gnu.org>
parents:
2939
diff
changeset
|
374 #endif /* not BSD, and not HPUX version >= 6 */ |
| 491 | 375 #endif /* not VMS */ |
| 376 #else /* not subprocesses */ | |
| 377 #ifndef BSD4_1 | |
| 378 if (kill (pid, 0) < 0) | |
| 379 break; | |
| 380 wait (0); | |
| 381 #else /* BSD4_1 */ | |
| 382 int status; | |
| 383 status = wait (0); | |
| 384 if (status == pid || status == -1) | |
| 385 break; | |
| 386 #endif /* BSD4_1 */ | |
| 387 #endif /* not subprocesses */ | |
| 388 } | |
| 389 } | |
| 390 | |
| 391 #ifdef subprocesses | |
| 392 | |
| 393 /* | |
| 394 * flush any pending output | |
| 395 * (may flush input as well; it does not matter the way we use it) | |
| 396 */ | |
| 397 | |
| 398 flush_pending_output (channel) | |
| 399 int channel; | |
| 400 { | |
| 401 #ifdef HAVE_TERMIOS | |
| 402 /* If we try this, we get hit with SIGTTIN, because | |
| 403 the child's tty belongs to the child's pgrp. */ | |
| 404 #else | |
| 405 #ifdef TCFLSH | |
| 406 ioctl (channel, TCFLSH, 1); | |
| 407 #else | |
| 408 #ifdef TIOCFLUSH | |
| 409 int zero = 0; | |
| 410 /* 3rd arg should be ignored | |
| 411 but some 4.2 kernels actually want the address of an int | |
| 412 and nonzero means something different. */ | |
| 413 ioctl (channel, TIOCFLUSH, &zero); | |
| 414 #endif | |
| 415 #endif | |
| 416 #endif | |
| 417 } | |
| 418 | |
| 419 #ifndef VMS | |
| 420 /* Set up the terminal at the other end of a pseudo-terminal that | |
| 421 we will be controlling an inferior through. | |
| 422 It should not echo or do line-editing, since that is done | |
| 423 in Emacs. No padding needed for insertion into an Emacs buffer. */ | |
| 424 | |
| 425 child_setup_tty (out) | |
| 426 int out; | |
| 427 { | |
| 579 | 428 struct emacs_tty s; |
| 429 | |
| 430 EMACS_GET_TTY (out, &s); | |
| 431 | |
|
1927
c6dc1a37aeb4
* sysdep.c (child_setup_tty): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1596
diff
changeset
|
432 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS) |
| 579 | 433 s.main.c_oflag |= OPOST; /* Enable output postprocessing */ |
| 434 s.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL on output */ | |
| 435 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY|FFDLY); | |
| 436 /* No output delays */ | |
| 437 s.main.c_lflag &= ~ECHO; /* Disable echo */ | |
| 438 s.main.c_lflag |= ISIG; /* Enable signals */ | |
| 439 s.main.c_iflag &= ~IUCLC; /* Disable map of upper case to lower on | |
| 440 input */ | |
| 441 s.main.c_oflag &= ~OLCUC; /* Disable map of lower case to upper on | |
| 442 output */ | |
| 443 #if 0 | |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3559
diff
changeset
|
444 /* Said to be unnecessary: */ |
| 579 | 445 s.main.c_cc[VMIN] = 1; /* minimum number of characters to accept */ |
| 446 s.main.c_cc[VTIME] = 0; /* wait forever for at least 1 character */ | |
| 447 #endif | |
| 448 | |
| 449 s.main.c_lflag |= ICANON; /* Enable erase/kill and eof processing */ | |
| 450 s.main.c_cc[VEOF] = 04; /* insure that EOF is Control-D */ | |
| 451 s.main.c_cc[VERASE] = 0377; /* disable erase processing */ | |
| 452 s.main.c_cc[VKILL] = 0377; /* disable kill processing */ | |
| 453 | |
| 491 | 454 #ifdef HPUX |
| 579 | 455 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */ |
| 491 | 456 #endif /* HPUX */ |
| 579 | 457 |
| 491 | 458 #ifdef AIX |
| 459 /* AIX enhanced edit loses NULs, so disable it */ | |
| 460 #ifndef IBMR2AIX | |
| 579 | 461 s.main.c_line = 0; |
| 462 s.main.c_iflag &= ~ASCEDIT; | |
| 491 | 463 #endif |
| 464 /* Also, PTY overloads NUL and BREAK. | |
| 465 don't ignore break, but don't signal either, so it looks like NUL. */ | |
| 579 | 466 s.main.c_iflag &= ~IGNBRK; |
| 467 s.main.c_iflag &= ~BRKINT; | |
| 468 /* QUIT and INTR work better as signals, so disable character forms */ | |
| 469 s.main.c_cc[VINTR] = 0377; | |
|
3321
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
470 #ifdef SIGNALS_VIA_CHARACTERS |
|
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
471 /* the QUIT and INTR character are used in process_send_signal |
|
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
472 so set them here to something useful. */ |
|
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
473 if (s.main.c_cc[VQUIT] == 0377) |
|
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
474 s.main.c_cc[VQUIT] = '\\'&037; /* Control-\ */ |
|
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
475 if (s.main.c_cc[VINTR] == 0377) |
|
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
476 s.main.c_cc[VINTR] = 'C'&037; /* Control-C */ |
|
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
477 #else /* no TIOCGPGRP or no TIOCGLTC or no TIOCGETC */ |
|
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
478 /* QUIT and INTR work better as signals, so disable character forms */ |
|
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
479 s.main.c_cc[VQUIT] = 0377; |
|
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
480 s.main.c_cc[VINTR] = 0377; |
|
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
481 s.main.c_lflag &= ~ISIG; |
|
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
482 #endif /* no TIOCGPGRP or no TIOCGLTC or no TIOCGETC */ |
| 579 | 483 s.main.c_cc[VEOL] = 0377; |
| 484 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */ | |
| 491 | 485 #endif /* AIX */ |
| 486 | |
| 487 #else /* not HAVE_TERMIO */ | |
| 579 | 488 |
| 489 s.main.sg_flags &= ~(ECHO | CRMOD | ANYP | ALLDELAY | RAW | LCASE | |
| 490 | CBREAK | TANDEM); | |
| 491 s.main.sg_erase = 0377; | |
| 492 s.main.sg_kill = 0377; | |
| 493 | |
| 491 | 494 #endif /* not HAVE_TERMIO */ |
| 495 | |
| 579 | 496 EMACS_SET_TTY (out, &s, 0); |
| 491 | 497 |
| 498 #ifdef BSD4_1 | |
| 499 if (interrupt_input) | |
| 500 reset_sigio (); | |
| 501 #endif /* BSD4_1 */ | |
| 502 #ifdef RTU | |
| 503 { | |
| 504 int zero = 0; | |
| 505 ioctl (out, FIOASYNC, &zero); | |
| 506 } | |
| 507 #endif /* RTU */ | |
| 508 } | |
| 509 #endif /* not VMS */ | |
| 510 | |
| 511 #endif /* subprocesses */ | |
| 512 | |
| 513 /*ARGSUSED*/ | |
| 514 setpgrp_of_tty (pid) | |
| 515 int pid; | |
| 516 { | |
| 648 | 517 EMACS_SET_TTY_PGRP (input_fd, &pid); |
| 491 | 518 } |
| 519 | |
| 520 /* Record a signal code and the handler for it. */ | |
| 521 struct save_signal | |
| 522 { | |
| 523 int code; | |
| 524 SIGTYPE (*handler) (); | |
| 525 }; | |
| 526 | |
| 527 /* Suspend the Emacs process; give terminal to its superior. */ | |
| 528 | |
| 529 sys_suspend () | |
| 530 { | |
| 531 #ifdef VMS | |
|
1171
5c942f6b2d63
(sys_suspend): Read EMACS_PARENT_PID envvar for parent.
Richard M. Stallman <rms@gnu.org>
parents:
1102
diff
changeset
|
532 /* "Foster" parentage allows emacs to return to a subprocess that attached |
|
5c942f6b2d63
(sys_suspend): Read EMACS_PARENT_PID envvar for parent.
Richard M. Stallman <rms@gnu.org>
parents:
1102
diff
changeset
|
533 to the current emacs as a cheaper than starting a whole new process. This |
|
5c942f6b2d63
(sys_suspend): Read EMACS_PARENT_PID envvar for parent.
Richard M. Stallman <rms@gnu.org>
parents:
1102
diff
changeset
|
534 is set up by KEPTEDITOR.COM. */ |
|
5c942f6b2d63
(sys_suspend): Read EMACS_PARENT_PID envvar for parent.
Richard M. Stallman <rms@gnu.org>
parents:
1102
diff
changeset
|
535 unsigned long parent_id, foster_parent_id; |
|
5c942f6b2d63
(sys_suspend): Read EMACS_PARENT_PID envvar for parent.
Richard M. Stallman <rms@gnu.org>
parents:
1102
diff
changeset
|
536 char *fpid_string; |
|
5c942f6b2d63
(sys_suspend): Read EMACS_PARENT_PID envvar for parent.
Richard M. Stallman <rms@gnu.org>
parents:
1102
diff
changeset
|
537 |
|
5c942f6b2d63
(sys_suspend): Read EMACS_PARENT_PID envvar for parent.
Richard M. Stallman <rms@gnu.org>
parents:
1102
diff
changeset
|
538 fpid_string = getenv ("EMACS_PARENT_PID"); |
|
5c942f6b2d63
(sys_suspend): Read EMACS_PARENT_PID envvar for parent.
Richard M. Stallman <rms@gnu.org>
parents:
1102
diff
changeset
|
539 if (fpid_string != NULL) |
|
5c942f6b2d63
(sys_suspend): Read EMACS_PARENT_PID envvar for parent.
Richard M. Stallman <rms@gnu.org>
parents:
1102
diff
changeset
|
540 { |
|
5c942f6b2d63
(sys_suspend): Read EMACS_PARENT_PID envvar for parent.
Richard M. Stallman <rms@gnu.org>
parents:
1102
diff
changeset
|
541 sscanf (fpid_string, "%x", &foster_parent_id); |
|
5c942f6b2d63
(sys_suspend): Read EMACS_PARENT_PID envvar for parent.
Richard M. Stallman <rms@gnu.org>
parents:
1102
diff
changeset
|
542 if (foster_parent_id != 0) |
|
5c942f6b2d63
(sys_suspend): Read EMACS_PARENT_PID envvar for parent.
Richard M. Stallman <rms@gnu.org>
parents:
1102
diff
changeset
|
543 parent_id = foster_parent_id; |
|
5c942f6b2d63
(sys_suspend): Read EMACS_PARENT_PID envvar for parent.
Richard M. Stallman <rms@gnu.org>
parents:
1102
diff
changeset
|
544 else |
|
5c942f6b2d63
(sys_suspend): Read EMACS_PARENT_PID envvar for parent.
Richard M. Stallman <rms@gnu.org>
parents:
1102
diff
changeset
|
545 parent_id = getppid (); |
|
5c942f6b2d63
(sys_suspend): Read EMACS_PARENT_PID envvar for parent.
Richard M. Stallman <rms@gnu.org>
parents:
1102
diff
changeset
|
546 } |
|
5c942f6b2d63
(sys_suspend): Read EMACS_PARENT_PID envvar for parent.
Richard M. Stallman <rms@gnu.org>
parents:
1102
diff
changeset
|
547 else |
|
5c942f6b2d63
(sys_suspend): Read EMACS_PARENT_PID envvar for parent.
Richard M. Stallman <rms@gnu.org>
parents:
1102
diff
changeset
|
548 parent_id = getppid (); |
|
5c942f6b2d63
(sys_suspend): Read EMACS_PARENT_PID envvar for parent.
Richard M. Stallman <rms@gnu.org>
parents:
1102
diff
changeset
|
549 |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2332
diff
changeset
|
550 xfree (fpid_string); /* On VMS, this was malloc'd */ |
|
1171
5c942f6b2d63
(sys_suspend): Read EMACS_PARENT_PID envvar for parent.
Richard M. Stallman <rms@gnu.org>
parents:
1102
diff
changeset
|
551 |
| 491 | 552 if (parent_id && parent_id != 0xffffffff) |
| 553 { | |
| 554 SIGTYPE (*oldsig)() = (int) signal (SIGINT, SIG_IGN); | |
| 555 int status = LIB$ATTACH (&parent_id) & 1; | |
| 556 signal (SIGINT, oldsig); | |
| 557 return status; | |
| 558 } | |
| 559 else | |
| 560 { | |
| 561 struct { | |
| 562 int l; | |
| 563 char *a; | |
| 564 } d_prompt; | |
| 565 d_prompt.l = sizeof ("Emacs: "); /* Our special prompt */ | |
| 566 d_prompt.a = "Emacs: "; /* Just a reminder */ | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
567 LIB$SPAWN (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, &d_prompt, 0); |
| 491 | 568 return 1; |
| 569 } | |
| 570 return -1; | |
| 571 #else | |
| 572 #ifdef SIGTSTP | |
| 573 | |
|
3826
647bef18618f
Changes for Irix 4.0, tested this time:
Jim Blandy <jimb@redhat.com>
parents:
3797
diff
changeset
|
574 { |
|
647bef18618f
Changes for Irix 4.0, tested this time:
Jim Blandy <jimb@redhat.com>
parents:
3797
diff
changeset
|
575 #ifdef USG |
|
647bef18618f
Changes for Irix 4.0, tested this time:
Jim Blandy <jimb@redhat.com>
parents:
3797
diff
changeset
|
576 int pgrp = getpgrp (); |
|
647bef18618f
Changes for Irix 4.0, tested this time:
Jim Blandy <jimb@redhat.com>
parents:
3797
diff
changeset
|
577 #else |
|
647bef18618f
Changes for Irix 4.0, tested this time:
Jim Blandy <jimb@redhat.com>
parents:
3797
diff
changeset
|
578 int pgrp = getpgrp (0); |
|
647bef18618f
Changes for Irix 4.0, tested this time:
Jim Blandy <jimb@redhat.com>
parents:
3797
diff
changeset
|
579 #endif |
|
647bef18618f
Changes for Irix 4.0, tested this time:
Jim Blandy <jimb@redhat.com>
parents:
3797
diff
changeset
|
580 EMACS_KILLPG (pgrp, SIGTSTP); |
|
647bef18618f
Changes for Irix 4.0, tested this time:
Jim Blandy <jimb@redhat.com>
parents:
3797
diff
changeset
|
581 } |
| 491 | 582 |
| 583 #else /* No SIGTSTP */ | |
| 584 #ifdef USG_JOBCTRL /* If you don't know what this is don't mess with it */ | |
| 585 ptrace (0, 0, 0, 0); /* set for ptrace - caught by csh */ | |
| 586 kill (getpid (), SIGQUIT); | |
| 587 | |
| 588 #else /* No SIGTSTP or USG_JOBCTRL */ | |
| 589 | |
| 590 /* On a system where suspending is not implemented, | |
| 591 instead fork a subshell and let it talk directly to the terminal | |
| 592 while we wait. */ | |
| 593 int pid = fork (); | |
| 594 struct save_signal saved_handlers[5]; | |
| 595 | |
| 596 saved_handlers[0].code = SIGINT; | |
| 597 saved_handlers[1].code = SIGQUIT; | |
| 598 saved_handlers[2].code = SIGTERM; | |
| 599 #ifdef SIGIO | |
| 600 saved_handlers[3].code = SIGIO; | |
| 601 saved_handlers[4].code = 0; | |
| 602 #else | |
| 603 saved_handlers[3].code = 0; | |
| 604 #endif | |
| 605 | |
| 606 if (pid == -1) | |
| 607 error ("Can't spawn subshell"); | |
| 608 if (pid == 0) | |
| 609 { | |
| 610 char *sh; | |
| 611 | |
| 612 sh = (char *) egetenv ("SHELL"); | |
| 613 if (sh == 0) | |
| 614 sh = "sh"; | |
| 615 /* Use our buffer's default directory for the subshell. */ | |
| 616 { | |
| 617 Lisp_Object dir; | |
| 618 unsigned char *str; | |
| 619 int len; | |
| 620 | |
| 621 /* mentioning current_buffer->buffer would mean including buffer.h, | |
| 622 which somehow wedges the hp compiler. So instead... */ | |
| 623 | |
| 624 dir = intern ("default-directory"); | |
| 625 /* Can't use NULL */ | |
| 626 if (XFASTINT (Fboundp (dir)) == XFASTINT (Qnil)) | |
| 627 goto xyzzy; | |
| 628 dir = Fsymbol_value (dir); | |
| 629 if (XTYPE (dir) != Lisp_String) | |
| 630 goto xyzzy; | |
| 631 | |
| 632 str = (unsigned char *) alloca (XSTRING (dir)->size + 2); | |
| 633 len = XSTRING (dir)->size; | |
| 634 bcopy (XSTRING (dir)->data, str, len); | |
| 635 if (str[len - 1] != '/') str[len++] = '/'; | |
| 636 str[len] = 0; | |
| 637 chdir (str); | |
| 638 } | |
| 639 xyzzy: | |
| 640 #ifdef subprocesses | |
| 641 close_process_descs (); /* Close Emacs's pipes/ptys */ | |
| 642 #endif | |
|
1203
bc1acd76b294
* sysdep.c (sys_suspend): Don't try to use "nice (- nice (0))" to
Jim Blandy <jimb@redhat.com>
parents:
1171
diff
changeset
|
643 |
|
bc1acd76b294
* sysdep.c (sys_suspend): Don't try to use "nice (- nice (0))" to
Jim Blandy <jimb@redhat.com>
parents:
1171
diff
changeset
|
644 #ifdef PRIO_PROCESS |
|
bc1acd76b294
* sysdep.c (sys_suspend): Don't try to use "nice (- nice (0))" to
Jim Blandy <jimb@redhat.com>
parents:
1171
diff
changeset
|
645 { |
|
bc1acd76b294
* sysdep.c (sys_suspend): Don't try to use "nice (- nice (0))" to
Jim Blandy <jimb@redhat.com>
parents:
1171
diff
changeset
|
646 extern int emacs_priority; |
|
bc1acd76b294
* sysdep.c (sys_suspend): Don't try to use "nice (- nice (0))" to
Jim Blandy <jimb@redhat.com>
parents:
1171
diff
changeset
|
647 |
|
bc1acd76b294
* sysdep.c (sys_suspend): Don't try to use "nice (- nice (0))" to
Jim Blandy <jimb@redhat.com>
parents:
1171
diff
changeset
|
648 if (emacs_priority) |
|
bc1acd76b294
* sysdep.c (sys_suspend): Don't try to use "nice (- nice (0))" to
Jim Blandy <jimb@redhat.com>
parents:
1171
diff
changeset
|
649 nice (-emacs_priority); |
|
bc1acd76b294
* sysdep.c (sys_suspend): Don't try to use "nice (- nice (0))" to
Jim Blandy <jimb@redhat.com>
parents:
1171
diff
changeset
|
650 } |
|
bc1acd76b294
* sysdep.c (sys_suspend): Don't try to use "nice (- nice (0))" to
Jim Blandy <jimb@redhat.com>
parents:
1171
diff
changeset
|
651 #endif |
|
bc1acd76b294
* sysdep.c (sys_suspend): Don't try to use "nice (- nice (0))" to
Jim Blandy <jimb@redhat.com>
parents:
1171
diff
changeset
|
652 |
| 491 | 653 execlp (sh, sh, 0); |
| 654 write (1, "Can't execute subshell", 22); | |
| 655 _exit (1); | |
| 656 } | |
| 657 | |
| 658 save_signal_handlers (saved_handlers); | |
|
2939
34492be68ced
* sysdep.c (sys_suspend): Set synch_process_alive, so that
Jim Blandy <jimb@redhat.com>
parents:
2913
diff
changeset
|
659 synch_process_alive = 1; |
| 491 | 660 wait_for_termination (pid); |
| 661 restore_signal_handlers (saved_handlers); | |
| 662 | |
| 663 #endif /* no USG_JOBCTRL */ | |
| 664 #endif /* no SIGTSTP */ | |
| 665 #endif /* not VMS */ | |
| 666 } | |
| 667 | |
| 668 save_signal_handlers (saved_handlers) | |
| 669 struct save_signal *saved_handlers; | |
| 670 { | |
| 671 while (saved_handlers->code) | |
| 672 { | |
| 692 | 673 saved_handlers->handler |
| 674 = (SIGTYPE (*) ()) signal (saved_handlers->code, SIG_IGN); | |
| 491 | 675 saved_handlers++; |
| 676 } | |
| 677 } | |
| 678 | |
| 679 restore_signal_handlers (saved_handlers) | |
| 680 struct save_signal *saved_handlers; | |
| 681 { | |
| 682 while (saved_handlers->code) | |
| 683 { | |
| 684 signal (saved_handlers->code, saved_handlers->handler); | |
| 685 saved_handlers++; | |
| 686 } | |
| 687 } | |
| 688 | |
| 689 #ifdef F_SETFL | |
| 690 | |
| 691 int old_fcntl_flags; | |
| 692 | |
| 693 init_sigio () | |
| 694 { | |
| 695 #ifdef FASYNC | |
| 696 old_fcntl_flags = fcntl (0, F_GETFL, 0) & ~FASYNC; | |
| 697 #endif | |
| 698 request_sigio (); | |
| 699 } | |
| 700 | |
| 701 reset_sigio () | |
| 702 { | |
| 703 unrequest_sigio (); | |
| 704 } | |
| 705 | |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3559
diff
changeset
|
706 #ifdef FASYNC /* F_SETFL does not imply existence of FASYNC */ |
| 491 | 707 |
| 708 request_sigio () | |
| 709 { | |
| 710 #ifdef SIGWINCH | |
| 638 | 711 sigunblock (sigmask (SIGWINCH)); |
| 491 | 712 #endif |
| 713 fcntl (0, F_SETFL, old_fcntl_flags | FASYNC); | |
| 714 | |
| 715 interrupts_deferred = 0; | |
| 716 } | |
| 717 | |
| 718 unrequest_sigio () | |
| 719 { | |
| 720 #ifdef SIGWINCH | |
| 638 | 721 sigblock (sigmask (SIGWINCH)); |
| 491 | 722 #endif |
| 723 fcntl (0, F_SETFL, old_fcntl_flags); | |
| 724 interrupts_deferred = 1; | |
| 725 } | |
| 726 | |
| 727 #else /* no FASYNC */ | |
| 728 #ifdef STRIDE /* Stride doesn't have FASYNC - use FIOASYNC */ | |
| 729 | |
| 730 request_sigio () | |
| 731 { | |
| 732 int on = 1; | |
| 733 ioctl (0, FIOASYNC, &on); | |
| 734 interrupts_deferred = 0; | |
| 735 } | |
| 736 | |
| 737 unrequest_sigio () | |
| 738 { | |
| 739 int off = 0; | |
| 740 | |
| 741 ioctl (0, FIOASYNC, &off); | |
| 742 interrupts_deferred = 1; | |
| 743 } | |
| 744 | |
| 745 #else /* not FASYNC, not STRIDE */ | |
| 746 | |
| 747 request_sigio () | |
| 748 { | |
| 749 croak ("request_sigio"); | |
| 750 } | |
| 751 | |
| 752 unrequest_sigio () | |
| 753 { | |
| 754 croak ("unrequest_sigio"); | |
| 755 } | |
| 756 | |
| 757 #endif /* STRIDE */ | |
| 758 #endif /* FASYNC */ | |
| 759 #endif /* F_SETFL */ | |
| 760 | |
|
3655
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
761 /* Saving and restoring the process group of Emacs's terminal. */ |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
762 |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
763 #ifdef BSD |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
764 |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
765 /* The process group of which Emacs was a member when it initially |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
766 started. |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
767 |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
768 If Emacs was in its own process group (i.e. inherited_pgroup == |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
769 getpid ()), then we know we're running under a shell with job |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
770 control (Emacs would never be run as part of a pipeline). |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
771 Everything is fine. |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
772 |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
773 If Emacs was not in its own process group, then we know we're |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
774 running under a shell (or a caller) that doesn't know how to |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
775 separate itself from Emacs (like sh). Emacs must be in its own |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
776 process group in order to receive SIGIO correctly. In this |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
777 situation, we put ourselves in our own pgroup, forcibly set the |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
778 tty's pgroup to our pgroup, and make sure to restore and reinstate |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
779 the tty's pgroup just like any other terminal setting. If |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
780 inherited_group was not the tty's pgroup, then we'll get a |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
781 SIGTTmumble when we try to change the tty's pgroup, and a CONT if |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
782 it goes foreground in the future, which is what should happen. */ |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
783 int inherited_pgroup; |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
784 |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
785 /* Split off the foreground process group to Emacs alone. |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
786 When we are in the foreground, but not started in our own process |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
787 group, redirect the TTY to point to our own process group. We need |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
788 to be in our own process group to receive SIGIO properly. */ |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
789 narrow_foreground_group () |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
790 { |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
791 int me = getpid (); |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
792 |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
793 setpgrp (0, inherited_pgroup); |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
794 if (inherited_pgroup != me) |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
795 EMACS_SET_TTY_PGRP (0, &me); |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
796 setpgrp (0, me); |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
797 } |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
798 |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
799 /* Set the tty to our original foreground group. */ |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
800 widen_foreground_group () |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
801 { |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
802 if (inherited_pgroup != getpid ()) |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
803 EMACS_SET_TTY_PGRP (0, &inherited_pgroup); |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
804 setpgrp (0, inherited_pgroup); |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
805 } |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
806 |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
807 #endif |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
808 |
|
2656
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
809 /* Getting and setting emacs_tty structures. */ |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
810 |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
811 /* Set *TC to the parameters associated with the terminal FD. |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
812 Return zero if all's well, or -1 if we ran into an error we |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
813 couldn't deal with. */ |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
814 int |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
815 emacs_get_tty (fd, settings) |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
816 int fd; |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
817 struct emacs_tty *settings; |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
818 { |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
819 /* Retrieve the primary parameters - baud rate, character size, etcetera. */ |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
820 #ifdef HAVE_TCATTR |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
821 /* We have those nifty POSIX tcmumbleattr functions. */ |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
822 if (tcgetattr (fd, &settings->main) < 0) |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
823 return -1; |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
824 |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
825 #else |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
826 #ifdef HAVE_TERMIO |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
827 /* The SYSV-style interface? */ |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
828 if (ioctl (fd, TCGETA, &settings->main) < 0) |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
829 return -1; |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
830 |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
831 #else |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
832 #ifdef VMS |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
833 /* Vehemently Monstrous System? :-) */ |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
834 if (! (SYS$QIOW (0, fd, IO$_SENSEMODE, settings, 0, 0, |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
835 &settings->main.class, 12, 0, 0, 0, 0) |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
836 & 1)) |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
837 return -1; |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
838 |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
839 #else |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
840 /* I give up - I hope you have the BSD ioctls. */ |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
841 if (ioctl (fd, TIOCGETP, &settings->main) < 0) |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
842 return -1; |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
843 |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
844 #endif |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
845 #endif |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
846 #endif |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
847 |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
848 /* Suivant - Do we have to get struct ltchars data? */ |
|
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
3150
diff
changeset
|
849 #ifdef HAVE_LTCHARS |
|
2656
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
850 if (ioctl (fd, TIOCGLTC, &settings->ltchars) < 0) |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
851 return -1; |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
852 #endif |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
853 |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
854 /* How about a struct tchars and a wordful of lmode bits? */ |
|
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
3150
diff
changeset
|
855 #ifdef HAVE_TCHARS |
|
2656
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
856 if (ioctl (fd, TIOCGETC, &settings->tchars) < 0 |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
857 || ioctl (fd, TIOCLGET, &settings->lmode) < 0) |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
858 return -1; |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
859 #endif |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
860 |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
861 /* We have survived the tempest. */ |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
862 return 0; |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
863 } |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
864 |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
865 |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
866 /* Set the parameters of the tty on FD according to the contents of |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
867 *SETTINGS. If WAITP is non-zero, we wait for all queued output to |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
868 be written before making the change; otherwise, we forget any |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
869 queued input and make the change immediately. |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
870 Return 0 if all went well, and -1 if anything failed. */ |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
871 int |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
872 emacs_set_tty (fd, settings, waitp) |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
873 int fd; |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
874 struct emacs_tty *settings; |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
875 int waitp; |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
876 { |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
877 /* Set the primary parameters - baud rate, character size, etcetera. */ |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
878 #ifdef HAVE_TCATTR |
|
3321
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
879 int i; |
|
2656
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
880 /* We have those nifty POSIX tcmumbleattr functions. |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
881 William J. Smith <wjs@wiis.wang.com> writes: |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
882 "POSIX 1003.1 defines tcsetattr() to return success if it was |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
883 able to perform any of the requested actions, even if some |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
884 of the requested actions could not be performed. |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
885 We must read settings back to ensure tty setup properly. |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
886 AIX requires this to keep tty from hanging occasionally." */ |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3559
diff
changeset
|
887 /* This make sure that we don't loop indefinitely in here. */ |
|
3321
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
888 for (i = 0 ; i < 10 ; i++) |
|
2656
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
889 if (tcsetattr (fd, waitp ? TCSAFLUSH : TCSADRAIN, &settings->main) < 0) |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
890 { |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
891 if (errno == EINTR) |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
892 continue; |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
893 else |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
894 return -1; |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
895 } |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
896 else |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
897 { |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
898 struct termios new; |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
899 |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
900 /* Get the current settings, and see if they're what we asked for. */ |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
901 tcgetattr (fd, &new); |
|
3321
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
902 /* We cannot use memcmp on the whole structure here because under |
|
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
903 * aix386 the termios structure has some reserved field that may |
|
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
904 * not be filled in. |
|
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
905 */ |
|
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
906 if ( new.c_iflag == settings->main.c_iflag |
|
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
907 && new.c_oflag == settings->main.c_oflag |
|
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
908 && new.c_cflag == settings->main.c_cflag |
|
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
909 && new.c_lflag == settings->main.c_lflag |
|
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
910 && memcmp(new.c_cc, settings->main.c_cc, NCCS) == 0) |
|
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
911 break; |
|
d2adfd22a854
(child_setup_tty) [AIX SIGNALS_VIA_CHARACTERS]: Install
Richard M. Stallman <rms@gnu.org>
parents:
3301
diff
changeset
|
912 else |
|
2656
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
913 continue; |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
914 } |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
915 |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
916 #else |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
917 #ifdef HAVE_TERMIO |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
918 /* The SYSV-style interface? */ |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
919 if (ioctl (fd, waitp ? TCSETAW : TCSETAF, &settings->main) < 0) |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
920 return -1; |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
921 |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
922 #else |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
923 #ifdef VMS |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
924 /* Vehemently Monstrous System? :-) */ |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
925 if (! (SYS$QIOW (0, fd, IO$_SETMODE, &input_iosb, 0, 0, |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
926 &settings->main.class, 12, 0, 0, 0, 0) |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
927 & 1)) |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
928 return -1; |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
929 |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
930 #else |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
931 /* I give up - I hope you have the BSD ioctls. */ |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
932 if (ioctl (fd, (waitp) ? TIOCSETP : TIOCSETN, &settings->main) < 0) |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
933 return -1; |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
934 |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
935 #endif |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
936 #endif |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
937 #endif |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
938 |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
939 /* Suivant - Do we have to get struct ltchars data? */ |
|
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
3150
diff
changeset
|
940 #ifdef HAVE_LTCHARS |
|
2656
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
941 if (ioctl (fd, TIOCSLTC, &settings->ltchars) < 0) |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
942 return -1; |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
943 #endif |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
944 |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
945 /* How about a struct tchars and a wordful of lmode bits? */ |
|
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
3150
diff
changeset
|
946 #ifdef HAVE_TCHARS |
|
2656
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
947 if (ioctl (fd, TIOCSETC, &settings->tchars) < 0 |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
948 || ioctl (fd, TIOCLSET, &settings->lmode) < 0) |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
949 return -1; |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
950 #endif |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
951 |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
952 /* We have survived the tempest. */ |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
953 return 0; |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
954 } |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
955 |
|
93eda11d38de
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2589
diff
changeset
|
956 |
| 579 | 957 /* The initial tty mode bits */ |
| 958 struct emacs_tty old_tty; | |
| 491 | 959 |
| 960 int term_initted; /* 1 if outer tty status has been recorded */ | |
| 961 | |
| 579 | 962 #ifdef BSD4_1 |
| 963 /* BSD 4.1 needs to keep track of the lmode bits in order to start | |
| 964 sigio. */ | |
| 965 int lmode; | |
| 966 #endif | |
| 967 | |
|
4142
6cdfdbe5058b
* xterm.c, sysdep.c (F_SETOWN_BUG): Defined.
Jim Blandy <jimb@redhat.com>
parents:
3842
diff
changeset
|
968 #ifndef F_SETOWN_BUG |
| 491 | 969 #ifdef F_SETOWN |
| 970 int old_fcntl_owner; | |
| 971 #endif /* F_SETOWN */ | |
|
4142
6cdfdbe5058b
* xterm.c, sysdep.c (F_SETOWN_BUG): Defined.
Jim Blandy <jimb@redhat.com>
parents:
3842
diff
changeset
|
972 #endif /* F_SETOWN_BUG */ |
| 491 | 973 |
| 974 /* This may also be defined in stdio, | |
| 975 but if so, this does no harm, | |
| 976 and using the same name avoids wasting the other one's space. */ | |
| 977 | |
| 978 #if defined (USG) || defined (DGUX) | |
| 979 unsigned char _sobuf[BUFSIZ+8]; | |
| 980 #else | |
| 981 char _sobuf[BUFSIZ]; | |
| 982 #endif | |
| 983 | |
|
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
3150
diff
changeset
|
984 #ifdef HAVE_LTCHARS |
| 491 | 985 static struct ltchars new_ltchars = {-1,-1,-1,-1,-1,-1}; |
| 986 #endif | |
|
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
3150
diff
changeset
|
987 #ifdef HAVE_TCHARS |
| 491 | 988 static struct tchars new_tchars = {-1,-1,-1,-1,-1,-1}; |
| 989 #endif | |
| 990 | |
| 991 init_sys_modes () | |
| 992 { | |
| 579 | 993 struct emacs_tty tty; |
| 994 | |
| 491 | 995 #ifdef VMS |
| 996 #if 0 | |
| 997 static int oob_chars[2] = {0, 1 << 7}; /* catch C-g's */ | |
| 998 extern int (*interrupt_signal) (); | |
| 999 #endif | |
| 1000 #endif | |
| 1001 | |
| 1002 if (noninteractive) | |
| 1003 return; | |
| 1004 | |
| 1005 #ifdef VMS | |
| 1006 if (!input_ef) | |
| 1007 input_ef = get_kbd_event_flag (); | |
| 1008 /* LIB$GET_EF (&input_ef); */ | |
| 1009 SYS$CLREF (input_ef); | |
| 1010 waiting_for_ast = 0; | |
| 1011 if (!timer_ef) | |
| 1012 timer_ef = get_timer_event_flag (); | |
| 1013 /* LIB$GET_EF (&timer_ef); */ | |
| 1014 SYS$CLREF (timer_ef); | |
|
2264
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1015 #if 0 |
| 491 | 1016 if (!process_ef) |
| 1017 { | |
| 1018 LIB$GET_EF (&process_ef); | |
| 1019 SYS$CLREF (process_ef); | |
| 1020 } | |
| 1021 if (input_ef / 32 != process_ef / 32) | |
| 1022 croak ("Input and process event flags in different clusters."); | |
|
2264
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1023 #endif |
| 491 | 1024 if (input_ef / 32 != timer_ef / 32) |
|
2264
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1025 croak ("Input and timer event flags in different clusters."); |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1026 #if 0 |
| 491 | 1027 input_eflist = ((unsigned) 1 << (input_ef % 32)) | |
| 1028 ((unsigned) 1 << (process_ef % 32)); | |
|
2264
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1029 #endif |
| 491 | 1030 timer_eflist = ((unsigned) 1 << (input_ef % 32)) | |
| 1031 ((unsigned) 1 << (timer_ef % 32)); | |
| 1032 #ifndef VMS4_4 | |
| 1033 sys_access_reinit (); | |
| 1034 #endif | |
| 1035 #endif /* not VMS */ | |
| 579 | 1036 |
|
3655
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
1037 #ifdef BSD |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
1038 if (! read_socket_hook && EQ (Vwindow_system, Qnil)) |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
1039 narrow_foreground_group (); |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
1040 #endif |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
1041 |
| 579 | 1042 EMACS_GET_TTY (input_fd, &old_tty); |
| 1043 | |
| 491 | 1044 if (!read_socket_hook && EQ (Vwindow_system, Qnil)) |
| 1045 { | |
| 579 | 1046 tty = old_tty; |
| 491 | 1047 |
|
1927
c6dc1a37aeb4
* sysdep.c (child_setup_tty): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1596
diff
changeset
|
1048 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS) |
| 579 | 1049 tty.main.c_iflag |= (IGNBRK); /* Ignore break condition */ |
| 1050 tty.main.c_iflag &= ~ICRNL; /* Disable map of CR to NL on input */ | |
| 491 | 1051 #ifdef ISTRIP |
| 579 | 1052 tty.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */ |
| 491 | 1053 #endif |
| 579 | 1054 tty.main.c_lflag &= ~ECHO; /* Disable echo */ |
| 1055 tty.main.c_lflag &= ~ICANON; /* Disable erase/kill processing */ | |
|
1102
ff73961932eb
(init_sys_modes): Handle VDSUSP like V_DSUSP.
Richard M. Stallman <rms@gnu.org>
parents:
1048
diff
changeset
|
1056 #ifdef IEXTEN |
|
ff73961932eb
(init_sys_modes): Handle VDSUSP like V_DSUSP.
Richard M. Stallman <rms@gnu.org>
parents:
1048
diff
changeset
|
1057 tty.main.c_iflag &= ~IEXTEN; /* Disable other editing characters. */ |
|
ff73961932eb
(init_sys_modes): Handle VDSUSP like V_DSUSP.
Richard M. Stallman <rms@gnu.org>
parents:
1048
diff
changeset
|
1058 #endif |
| 579 | 1059 tty.main.c_lflag |= ISIG; /* Enable signals */ |
| 491 | 1060 if (flow_control) |
| 1061 { | |
| 579 | 1062 tty.main.c_iflag |= IXON; /* Enable start/stop output control */ |
| 491 | 1063 #ifdef IXANY |
| 579 | 1064 tty.main.c_iflag &= ~IXANY; |
| 491 | 1065 #endif /* IXANY */ |
| 1066 } | |
| 1067 else | |
| 579 | 1068 tty.main.c_iflag &= ~IXON; /* Disable start/stop output control */ |
| 1069 tty.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL | |
| 1070 on output */ | |
| 1071 tty.main.c_oflag &= ~TAB3; /* Disable tab expansion */ | |
| 491 | 1072 #ifdef CS8 |
| 1073 if (meta_key) | |
| 1074 { | |
| 579 | 1075 tty.main.c_cflag |= CS8; /* allow 8th bit on input */ |
| 1076 tty.main.c_cflag &= ~PARENB;/* Don't check parity */ | |
| 491 | 1077 } |
| 1078 #endif | |
| 579 | 1079 tty.main.c_cc[VINTR] = quit_char; /* C-g (usually) gives SIGINT */ |
| 491 | 1080 /* Set up C-g for both SIGQUIT and SIGINT. |
| 1081 We don't know which we will get, but we handle both alike | |
| 1082 so which one it really gives us does not matter. */ | |
| 579 | 1083 tty.main.c_cc[VQUIT] = quit_char; |
| 1084 tty.main.c_cc[VMIN] = 1; /* Input should wait for at least 1 char */ | |
| 1085 tty.main.c_cc[VTIME] = 0; /* no matter how long that takes. */ | |
| 491 | 1086 #ifdef VSWTCH |
|
1102
ff73961932eb
(init_sys_modes): Handle VDSUSP like V_DSUSP.
Richard M. Stallman <rms@gnu.org>
parents:
1048
diff
changeset
|
1087 tty.main.c_cc[VSWTCH] = CDISABLE; /* Turn off shell layering use |
| 579 | 1088 of C-z */ |
| 491 | 1089 #endif /* VSWTCH */ |
| 1090 #if defined (mips) || defined (HAVE_TCATTR) | |
| 1091 #ifdef VSUSP | |
|
1102
ff73961932eb
(init_sys_modes): Handle VDSUSP like V_DSUSP.
Richard M. Stallman <rms@gnu.org>
parents:
1048
diff
changeset
|
1092 tty.main.c_cc[VSUSP] = CDISABLE; /* Turn off mips handling of C-z. */ |
| 491 | 1093 #endif /* VSUSP */ |
| 1094 #ifdef V_DSUSP | |
|
1102
ff73961932eb
(init_sys_modes): Handle VDSUSP like V_DSUSP.
Richard M. Stallman <rms@gnu.org>
parents:
1048
diff
changeset
|
1095 tty.main.c_cc[V_DSUSP] = CDISABLE; /* Turn off mips handling of C-y. */ |
| 491 | 1096 #endif /* V_DSUSP */ |
|
1102
ff73961932eb
(init_sys_modes): Handle VDSUSP like V_DSUSP.
Richard M. Stallman <rms@gnu.org>
parents:
1048
diff
changeset
|
1097 #ifdef VDSUSP /* Some systems have VDSUSP, some have V_DSUSP. */ |
|
ff73961932eb
(init_sys_modes): Handle VDSUSP like V_DSUSP.
Richard M. Stallman <rms@gnu.org>
parents:
1048
diff
changeset
|
1098 tty.main.c_cc[VDSUSP] = CDISABLE; |
|
ff73961932eb
(init_sys_modes): Handle VDSUSP like V_DSUSP.
Richard M. Stallman <rms@gnu.org>
parents:
1048
diff
changeset
|
1099 #endif /* VDSUSP */ |
|
3472
6f05f6e83e94
(wait_for_termination): Fix sigpause in POSIX_SIGNALS case.
Richard M. Stallman <rms@gnu.org>
parents:
3334
diff
changeset
|
1100 #ifdef VLNEXT |
|
6f05f6e83e94
(wait_for_termination): Fix sigpause in POSIX_SIGNALS case.
Richard M. Stallman <rms@gnu.org>
parents:
3334
diff
changeset
|
1101 tty.main.c_cc[VLNEXT] = CDISABLE; |
|
6f05f6e83e94
(wait_for_termination): Fix sigpause in POSIX_SIGNALS case.
Richard M. Stallman <rms@gnu.org>
parents:
3334
diff
changeset
|
1102 #endif /* VLNEXT */ |
|
6f05f6e83e94
(wait_for_termination): Fix sigpause in POSIX_SIGNALS case.
Richard M. Stallman <rms@gnu.org>
parents:
3334
diff
changeset
|
1103 #ifdef VREPRINT |
|
6f05f6e83e94
(wait_for_termination): Fix sigpause in POSIX_SIGNALS case.
Richard M. Stallman <rms@gnu.org>
parents:
3334
diff
changeset
|
1104 tty.main.c_cc[VREPRINT] = CDISABLE; |
|
6f05f6e83e94
(wait_for_termination): Fix sigpause in POSIX_SIGNALS case.
Richard M. Stallman <rms@gnu.org>
parents:
3334
diff
changeset
|
1105 #endif /* VREPRINT */ |
|
6f05f6e83e94
(wait_for_termination): Fix sigpause in POSIX_SIGNALS case.
Richard M. Stallman <rms@gnu.org>
parents:
3334
diff
changeset
|
1106 #ifdef VWERASE |
|
6f05f6e83e94
(wait_for_termination): Fix sigpause in POSIX_SIGNALS case.
Richard M. Stallman <rms@gnu.org>
parents:
3334
diff
changeset
|
1107 tty.main.c_cc[VWERASE] = CDISABLE; |
|
6f05f6e83e94
(wait_for_termination): Fix sigpause in POSIX_SIGNALS case.
Richard M. Stallman <rms@gnu.org>
parents:
3334
diff
changeset
|
1108 #endif /* VWERASE */ |
|
6f05f6e83e94
(wait_for_termination): Fix sigpause in POSIX_SIGNALS case.
Richard M. Stallman <rms@gnu.org>
parents:
3334
diff
changeset
|
1109 #ifdef VDISCARD |
|
6f05f6e83e94
(wait_for_termination): Fix sigpause in POSIX_SIGNALS case.
Richard M. Stallman <rms@gnu.org>
parents:
3334
diff
changeset
|
1110 tty.main.c_cc[VDISCARD] = CDISABLE; |
|
6f05f6e83e94
(wait_for_termination): Fix sigpause in POSIX_SIGNALS case.
Richard M. Stallman <rms@gnu.org>
parents:
3334
diff
changeset
|
1111 #endif /* VDISCARD */ |
| 491 | 1112 #endif /* mips or HAVE_TCATTR */ |
| 1113 #ifdef AIX | |
| 1114 #ifndef IBMR2AIX | |
| 1115 /* AIX enhanced edit loses NULs, so disable it */ | |
| 579 | 1116 tty.main.c_line = 0; |
| 1117 tty.main.c_iflag &= ~ASCEDIT; | |
| 491 | 1118 #else |
| 579 | 1119 tty.main.c_cc[VSTRT] = 255; |
| 1120 tty.main.c_cc[VSTOP] = 255; | |
| 1121 tty.main.c_cc[VSUSP] = 255; | |
| 1122 tty.main.c_cc[VDSUSP] = 255; | |
| 491 | 1123 #endif /* IBMR2AIX */ |
| 1124 /* Also, PTY overloads NUL and BREAK. | |
| 1125 don't ignore break, but don't signal either, so it looks like NUL. | |
| 1126 This really serves a purpose only if running in an XTERM window | |
| 1127 or via TELNET or the like, but does no harm elsewhere. */ | |
| 579 | 1128 tty.main.c_iflag &= ~IGNBRK; |
| 1129 tty.main.c_iflag &= ~BRKINT; | |
| 491 | 1130 #endif |
| 1131 #else /* if not HAVE_TERMIO */ | |
| 1132 #ifdef VMS | |
| 579 | 1133 tty.main.tt_char |= TT$M_NOECHO; |
| 491 | 1134 if (meta_key) |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
1135 tty.main.tt_char |= TT$M_EIGHTBIT; |
| 491 | 1136 if (flow_control) |
| 579 | 1137 tty.main.tt_char |= TT$M_TTSYNC; |
| 491 | 1138 else |
| 579 | 1139 tty.main.tt_char &= ~TT$M_TTSYNC; |
| 1140 tty.main.tt2_char |= TT2$M_PASTHRU | TT2$M_XON; | |
| 491 | 1141 #else /* not VMS (BSD, that is) */ |
| 579 | 1142 tty.main.sg_flags &= ~(ECHO | CRMOD | XTABS); |
| 491 | 1143 if (meta_key) |
| 579 | 1144 tty.main.sg_flags |= ANYP; |
| 1145 tty.main.sg_flags |= interrupt_input ? RAW : CBREAK; | |
| 491 | 1146 #endif /* not VMS (BSD, that is) */ |
| 1147 #endif /* not HAVE_TERMIO */ | |
| 1148 | |
| 579 | 1149 /* If going to use CBREAK mode, we must request C-g to interrupt |
| 1150 and turn off start and stop chars, etc. If not going to use | |
| 1151 CBREAK mode, do this anyway so as to turn off local flow | |
| 1152 control for user coming over network on 4.2; in this case, | |
| 1153 only t_stopc and t_startc really matter. */ | |
| 1154 #ifndef HAVE_TERMIO | |
|
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
3150
diff
changeset
|
1155 #ifdef HAVE_TCHARS |
| 579 | 1156 /* Note: if not using CBREAK mode, it makes no difference how we |
| 1157 set this */ | |
| 1158 tty.tchars = new_tchars; | |
| 1159 tty.tchars.t_intrc = quit_char; | |
| 1160 if (flow_control) | |
| 1161 { | |
| 1162 tty.tchars.t_startc = '\021'; | |
| 1163 tty.tchars.t_stopc = '\023'; | |
| 1164 } | |
| 1165 | |
| 1166 /* LPASS8 is new in 4.3, and makes cbreak mode provide all 8 bits. */ | |
| 1167 #ifndef LPASS8 | |
| 1168 #define LPASS8 0 | |
| 491 | 1169 #endif |
| 579 | 1170 |
| 1171 #ifdef BSD4_1 | |
| 1172 #define LNOFLSH 0100000 | |
| 1173 #endif | |
| 1174 | |
| 1175 tty.lmode = LDECCTQ | LLITOUT | LPASS8 | LNOFLSH | old_tty.lmode; | |
|
3759
036367460955
* sysdep.c [ultrix] (init_sys_modes): Don't set LLITOUT; it
Jim Blandy <jimb@redhat.com>
parents:
3695
diff
changeset
|
1176 #ifdef ultrix |
|
036367460955
* sysdep.c [ultrix] (init_sys_modes): Don't set LLITOUT; it
Jim Blandy <jimb@redhat.com>
parents:
3695
diff
changeset
|
1177 /* Under Ultrix 4.2a, leaving this out doesn't seem to hurt |
|
036367460955
* sysdep.c [ultrix] (init_sys_modes): Don't set LLITOUT; it
Jim Blandy <jimb@redhat.com>
parents:
3695
diff
changeset
|
1178 anything, and leaving it in breaks the meta key. Go figure. */ |
|
036367460955
* sysdep.c [ultrix] (init_sys_modes): Don't set LLITOUT; it
Jim Blandy <jimb@redhat.com>
parents:
3695
diff
changeset
|
1179 tty.lmode &= ~LLITOUT; |
|
036367460955
* sysdep.c [ultrix] (init_sys_modes): Don't set LLITOUT; it
Jim Blandy <jimb@redhat.com>
parents:
3695
diff
changeset
|
1180 #endif |
| 579 | 1181 |
| 1182 #ifdef BSD4_1 | |
| 1183 lmode = tty.lmode; | |
| 1184 #endif | |
| 1185 | |
|
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
3150
diff
changeset
|
1186 #endif /* HAVE_TCHARS */ |
| 579 | 1187 #endif /* not HAVE_TERMIO */ |
| 1188 | |
|
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
3150
diff
changeset
|
1189 #ifdef HAVE_LTCHARS |
| 579 | 1190 tty.ltchars = new_ltchars; |
|
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
3150
diff
changeset
|
1191 #endif /* HAVE_LTCHARS */ |
| 579 | 1192 |
| 1193 EMACS_SET_TTY (input_fd, &tty, 0); | |
| 491 | 1194 |
| 1195 /* This code added to insure that, if flow-control is not to be used, | |
| 766 | 1196 we have an unlocked terminal at the start. */ |
| 579 | 1197 |
| 491 | 1198 #ifdef TCXONC |
| 1199 if (!flow_control) ioctl (0, TCXONC, 1); | |
| 1200 #endif | |
| 1201 #ifndef APOLLO | |
| 1202 #ifdef TIOCSTART | |
| 1203 if (!flow_control) ioctl (0, TIOCSTART, 0); | |
| 1204 #endif | |
| 1205 #endif | |
| 1206 | |
| 1207 #ifdef AIX | |
| 1208 hft_init (); | |
| 1209 #ifdef IBMR2AIX | |
| 1210 { | |
| 1211 /* IBM's HFT device usually thinks a ^J should be LF/CR. We need it | |
| 1212 to be only LF. This is the way that is done. */ | |
| 1213 struct termio tty; | |
| 1214 | |
| 1215 if (ioctl (1, HFTGETID, &tty) != -1) | |
| 1216 write (1, "\033[20l", 5); | |
| 1217 } | |
| 1218 #endif | |
| 1219 #endif | |
| 1220 | |
| 1221 #ifdef VMS | |
| 1222 /* Appears to do nothing when in PASTHRU mode. | |
| 579 | 1223 SYS$QIOW (0, input_fd, IO$_SETMODE|IO$M_OUTBAND, 0, 0, 0, |
| 491 | 1224 interrupt_signal, oob_chars, 0, 0, 0, 0); |
| 1225 */ | |
| 1226 queue_kbd_input (0); | |
| 1227 #endif /* VMS */ | |
| 1228 } | |
| 1229 | |
| 1230 #ifdef F_SETFL | |
|
4142
6cdfdbe5058b
* xterm.c, sysdep.c (F_SETOWN_BUG): Defined.
Jim Blandy <jimb@redhat.com>
parents:
3842
diff
changeset
|
1231 #ifndef F_SETOWN_BUG |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3559
diff
changeset
|
1232 #ifdef F_GETOWN /* F_SETFL does not imply existence of F_GETOWN */ |
| 491 | 1233 if (interrupt_input) |
| 1234 { | |
| 1235 old_fcntl_owner = fcntl (0, F_GETOWN, 0); | |
| 1236 fcntl (0, F_SETOWN, getpid ()); | |
| 1237 init_sigio (); | |
| 1238 } | |
| 1239 #endif /* F_GETOWN */ | |
|
4142
6cdfdbe5058b
* xterm.c, sysdep.c (F_SETOWN_BUG): Defined.
Jim Blandy <jimb@redhat.com>
parents:
3842
diff
changeset
|
1240 #endif /* F_SETOWN_BUG */ |
| 491 | 1241 #endif /* F_SETFL */ |
| 1242 | |
| 1243 #ifdef BSD4_1 | |
| 1244 if (interrupt_input) | |
| 1245 init_sigio (); | |
| 1246 #endif | |
| 1247 | |
| 1248 #ifdef VMS /* VMS sometimes has this symbol but lacks setvbuf. */ | |
| 1249 #undef _IOFBF | |
| 1250 #endif | |
| 1251 #ifdef _IOFBF | |
| 1252 /* This symbol is defined on recent USG systems. | |
| 1253 Someone says without this call USG won't really buffer the file | |
| 1254 even with a call to setbuf. */ | |
| 1255 setvbuf (stdout, _sobuf, _IOFBF, sizeof _sobuf); | |
| 1256 #else | |
| 1257 setbuf (stdout, _sobuf); | |
| 1258 #endif | |
| 1259 set_terminal_modes (); | |
| 1260 if (term_initted && no_redraw_on_reenter) | |
| 1261 { | |
| 1262 if (display_completed) | |
| 1263 direct_output_forward_char (0); | |
| 1264 } | |
| 1265 else | |
| 1266 { | |
| 766 | 1267 frame_garbaged = 1; |
| 1268 #ifdef MULTI_FRAME | |
| 1269 if (FRAMEP (Vterminal_frame)) | |
| 1270 FRAME_GARBAGED_P (XFRAME (Vterminal_frame)) = 1; | |
| 491 | 1271 #endif |
| 1272 } | |
| 579 | 1273 |
| 491 | 1274 term_initted = 1; |
| 1275 } | |
| 1276 | |
| 1277 /* Return nonzero if safe to use tabs in output. | |
| 1278 At the time this is called, init_sys_modes has not been done yet. */ | |
| 1279 | |
| 1280 tabs_safe_p () | |
| 1281 { | |
| 579 | 1282 struct emacs_tty tty; |
| 1283 | |
| 1284 EMACS_GET_TTY (input_fd, &tty); | |
| 1285 return EMACS_TTY_TABS_OK (&tty); | |
| 491 | 1286 } |
| 1287 | |
| 1288 /* Get terminal size from system. | |
| 1289 Store number of lines into *heightp and width into *widthp. | |
| 1290 If zero or a negative number is stored, the value is not valid. */ | |
| 1291 | |
| 766 | 1292 get_frame_size (widthp, heightp) |
| 491 | 1293 int *widthp, *heightp; |
| 1294 { | |
| 579 | 1295 |
| 1296 #ifdef TIOCGWINSZ | |
| 1297 | |
| 1298 /* BSD-style. */ | |
| 1299 struct winsize size; | |
| 1300 | |
| 1301 if (ioctl (input_fd, TIOCGWINSZ, &size) == -1) | |
| 1302 *widthp = *heightp = 0; | |
| 1303 else | |
| 1304 { | |
| 1305 *widthp = size.ws_col; | |
| 1306 *heightp = size.ws_row; | |
| 1307 } | |
| 1308 | |
| 1309 #else | |
| 491 | 1310 #ifdef TIOCGSIZE |
| 579 | 1311 |
| 1312 /* SunOS - style. */ | |
| 1313 struct ttysize size; | |
| 1314 | |
| 1315 if (ioctl (input_fd, TIOCGSIZE, &size) == -1) | |
| 1316 *widthp = *heightp = 0; | |
| 1317 else | |
| 1318 { | |
| 1319 *widthp = size.ts_cols; | |
| 1320 *heightp = size.ts_lines; | |
| 1321 } | |
| 1322 | |
| 1323 #else | |
| 491 | 1324 #ifdef VMS |
| 579 | 1325 |
| 1326 struct sensemode tty; | |
| 1327 | |
| 1328 SYS$QIOW (0, input_fd, IO$_SENSEMODE, &tty, 0, 0, | |
| 491 | 1329 &tty.class, 12, 0, 0, 0, 0); |
| 1330 *widthp = tty.scr_wid; | |
| 1331 *heightp = tty.scr_len; | |
| 579 | 1332 |
| 491 | 1333 #else /* system doesn't know size */ |
| 579 | 1334 |
| 491 | 1335 *widthp = 0; |
| 1336 *heightp = 0; | |
| 579 | 1337 |
| 1338 #endif /* not VMS */ | |
| 1339 #endif /* not SunOS-style */ | |
| 1340 #endif /* not BSD-style */ | |
| 491 | 1341 } |
| 579 | 1342 |
| 491 | 1343 |
| 579 | 1344 /* Prepare the terminal for exiting Emacs; move the cursor to the |
| 766 | 1345 bottom of the frame, turn off interrupt-driven I/O, etc. */ |
| 491 | 1346 reset_sys_modes () |
| 1347 { | |
| 1348 if (noninteractive) | |
| 1349 { | |
| 1350 fflush (stdout); | |
| 1351 return; | |
| 1352 } | |
| 1353 if (!term_initted) | |
| 1354 return; | |
| 1355 if (read_socket_hook || !EQ (Vwindow_system, Qnil)) | |
| 1356 return; | |
| 766 | 1357 cursor_to (FRAME_HEIGHT (selected_frame) - 1, 0); |
| 1358 clear_end_of_line (FRAME_WIDTH (selected_frame)); | |
| 491 | 1359 /* clear_end_of_line may move the cursor */ |
| 766 | 1360 cursor_to (FRAME_HEIGHT (selected_frame) - 1, 0); |
| 491 | 1361 #ifdef IBMR2AIX |
| 1362 { | |
| 1363 /* HFT devices normally use ^J as a LF/CR. We forced it to | |
| 1364 do the LF only. Now, we need to reset it. */ | |
| 1365 struct termio tty; | |
| 1366 | |
| 1367 if (ioctl (1, HFTGETID, &tty) != -1) | |
| 1368 write (1, "\033[20h", 5); | |
| 1369 } | |
| 1370 #endif | |
| 1371 | |
| 1372 reset_terminal_modes (); | |
| 1373 fflush (stdout); | |
| 1374 #ifdef BSD | |
| 1375 #ifndef BSD4_1 | |
| 1376 /* Avoid possible loss of output when changing terminal modes. */ | |
| 1377 fsync (fileno (stdout)); | |
| 1378 #endif | |
| 1379 #endif | |
| 579 | 1380 |
| 491 | 1381 #ifdef F_SETFL |
|
4142
6cdfdbe5058b
* xterm.c, sysdep.c (F_SETOWN_BUG): Defined.
Jim Blandy <jimb@redhat.com>
parents:
3842
diff
changeset
|
1382 #ifndef F_SETOWN_BUG |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3559
diff
changeset
|
1383 #ifdef F_SETOWN /* F_SETFL does not imply existence of F_SETOWN */ |
| 491 | 1384 if (interrupt_input) |
| 1385 { | |
| 1386 reset_sigio (); | |
| 1387 fcntl (0, F_SETOWN, old_fcntl_owner); | |
| 1388 } | |
| 1389 #endif /* F_SETOWN */ | |
|
4142
6cdfdbe5058b
* xterm.c, sysdep.c (F_SETOWN_BUG): Defined.
Jim Blandy <jimb@redhat.com>
parents:
3842
diff
changeset
|
1390 #endif /* F_SETOWN_BUG */ |
| 491 | 1391 #endif /* F_SETFL */ |
| 1392 #ifdef BSD4_1 | |
| 1393 if (interrupt_input) | |
| 1394 reset_sigio (); | |
| 1395 #endif /* BSD4_1 */ | |
| 579 | 1396 |
|
2873
f1cd54cf1b67
* sysdep.c (reset_sys_modes): Test the return value of
Jim Blandy <jimb@redhat.com>
parents:
2656
diff
changeset
|
1397 while (EMACS_SET_TTY (input_fd, &old_tty, 0) < 0 && errno == EINTR) |
| 579 | 1398 ; |
| 491 | 1399 |
| 1400 #ifdef AIX | |
| 1401 hft_reset (); | |
| 1402 #endif | |
|
3655
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
1403 |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
1404 #ifdef BSD |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
1405 widen_foreground_group (); |
|
3e6cc11cfe9f
Interact properly with shells lacking job control (sh, rc, es...)
Jim Blandy <jimb@redhat.com>
parents:
3604
diff
changeset
|
1406 #endif |
| 491 | 1407 } |
| 1408 | |
| 1409 #ifdef HAVE_PTYS | |
| 1410 | |
| 1411 /* Set up the proper status flags for use of a pty. */ | |
| 1412 | |
| 1413 setup_pty (fd) | |
| 1414 int fd; | |
| 1415 { | |
| 1416 /* I'm told that TOICREMOTE does not mean control chars | |
| 1417 "can't be sent" but rather that they don't have | |
| 1418 input-editing or signaling effects. | |
| 1419 That should be good, because we have other ways | |
| 1420 to do those things in Emacs. | |
| 1421 However, telnet mode seems not to work on 4.2. | |
| 1422 So TIOCREMOTE is turned off now. */ | |
| 1423 | |
| 1424 /* Under hp-ux, if TIOCREMOTE is turned on, some calls | |
| 1425 will hang. In particular, the "timeout" feature (which | |
| 1426 causes a read to return if there is no data available) | |
| 1427 does this. Also it is known that telnet mode will hang | |
| 1428 in such a way that Emacs must be stopped (perhaps this | |
| 1429 is the same problem). | |
| 1430 | |
| 1431 If TIOCREMOTE is turned off, then there is a bug in | |
| 1432 hp-ux which sometimes loses data. Apparently the | |
| 1433 code which blocks the master process when the internal | |
| 1434 buffer fills up does not work. Other than this, | |
| 1435 though, everything else seems to work fine. | |
| 1436 | |
| 1437 Since the latter lossage is more benign, we may as well | |
| 1438 lose that way. -- cph */ | |
| 1439 #ifdef FIONBIO | |
| 1440 #ifdef SYSV_PTYS | |
| 1441 { | |
| 1442 int on = 1; | |
| 1443 ioctl (fd, FIONBIO, &on); | |
| 1444 } | |
| 1445 #endif | |
| 1446 #endif | |
| 1447 #ifdef IBMRTAIX | |
| 1448 /* On AIX, the parent gets SIGHUP when a pty attached child dies. So, we */ | |
| 1449 /* ignore SIGHUP once we've started a child on a pty. Note that this may */ | |
| 1450 /* cause EMACS not to die when it should, i.e., when its own controlling */ | |
| 1451 /* tty goes away. I've complained to the AIX developers, and they may */ | |
| 1452 /* change this behavior, but I'm not going to hold my breath. */ | |
| 1453 signal (SIGHUP, SIG_IGN); | |
| 1454 #endif | |
| 1455 } | |
| 1456 #endif /* HAVE_PTYS */ | |
| 1457 | |
| 1458 #ifdef VMS | |
| 1459 | |
| 1460 /* Assigning an input channel is done at the start of Emacs execution. | |
| 1461 This is called each time Emacs is resumed, also, but does nothing | |
| 1462 because input_chain is no longer zero. */ | |
| 1463 | |
| 1464 init_vms_input () | |
| 1465 { | |
| 1466 int status; | |
| 1467 | |
| 579 | 1468 if (input_fd == 0) |
| 491 | 1469 { |
| 579 | 1470 status = SYS$ASSIGN (&input_dsc, &input_fd, 0, 0); |
| 491 | 1471 if (! (status & 1)) |
| 1472 LIB$STOP (status); | |
| 1473 } | |
| 1474 } | |
| 1475 | |
| 1476 /* Deassigning the input channel is done before exiting. */ | |
| 1477 | |
| 1478 stop_vms_input () | |
| 1479 { | |
| 579 | 1480 return SYS$DASSGN (input_fd); |
| 491 | 1481 } |
| 1482 | |
| 1483 short input_buffer; | |
| 1484 | |
| 1485 /* Request reading one character into the keyboard buffer. | |
| 1486 This is done as soon as the buffer becomes empty. */ | |
| 1487 | |
| 1488 queue_kbd_input () | |
| 1489 { | |
| 1490 int status; | |
|
2264
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1491 extern kbd_input_ast (); |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1492 |
| 491 | 1493 waiting_for_ast = 0; |
| 1494 stop_input = 0; | |
| 579 | 1495 status = SYS$QIO (0, input_fd, IO$_READVBLK, |
| 491 | 1496 &input_iosb, kbd_input_ast, 1, |
| 1497 &input_buffer, 1, 0, terminator_mask, 0, 0); | |
| 1498 } | |
| 1499 | |
| 1500 int input_count; | |
| 1501 | |
| 1502 /* Ast routine that is called when keyboard input comes in | |
| 1503 in accord with the SYS$QIO above. */ | |
| 1504 | |
| 1505 kbd_input_ast () | |
| 1506 { | |
| 1507 register int c = -1; | |
| 1508 int old_errno = errno; | |
| 648 | 1509 extern EMACS_TIME *input_available_clear_time; |
| 491 | 1510 |
| 1511 if (waiting_for_ast) | |
| 1512 SYS$SETEF (input_ef); | |
| 1513 waiting_for_ast = 0; | |
| 1514 input_count++; | |
| 1515 #ifdef ASTDEBUG | |
| 1516 if (input_count == 25) | |
| 1517 exit (1); | |
| 1518 printf ("Ast # %d,", input_count); | |
| 1519 printf (" iosb = %x, %x, %x, %x", | |
| 1520 input_iosb.offset, input_iosb.status, input_iosb.termlen, | |
| 1521 input_iosb.term); | |
| 1522 #endif | |
| 1523 if (input_iosb.offset) | |
| 1524 { | |
| 1525 c = input_buffer; | |
| 1526 #ifdef ASTDEBUG | |
| 1527 printf (", char = 0%o", c); | |
| 1528 #endif | |
| 1529 } | |
| 1530 #ifdef ASTDEBUG | |
| 1531 printf ("\n"); | |
| 1532 fflush (stdout); | |
| 1533 sleep (1); | |
| 1534 #endif | |
| 1535 if (! stop_input) | |
| 1536 queue_kbd_input (); | |
| 1537 if (c >= 0) | |
| 1538 { | |
| 1539 struct input_event e; | |
| 1540 e.kind = ascii_keystroke; | |
|
2264
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1541 XSET (e.code, Lisp_Int, c); |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1542 #ifdef MULTI_FRAME |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1543 XSET(e.frame_or_window, Lisp_Frame, selected_frame); |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1544 #else |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1545 e.frame_or_window = Qnil; |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1546 #endif |
| 491 | 1547 kbd_buffer_store_event (&e); |
| 1548 } | |
| 648 | 1549 if (input_available_clear_time) |
| 1550 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0); | |
| 491 | 1551 errno = old_errno; |
| 1552 } | |
| 1553 | |
| 1554 /* Wait until there is something in kbd_buffer. */ | |
| 1555 | |
| 1556 wait_for_kbd_input () | |
| 1557 { | |
| 1558 extern int have_process_input, process_exited; | |
| 1559 | |
| 1560 /* If already something, avoid doing system calls. */ | |
| 1561 if (detect_input_pending ()) | |
| 1562 { | |
| 1563 return; | |
| 1564 } | |
| 1565 /* Clear a flag, and tell ast routine above to set it. */ | |
| 1566 SYS$CLREF (input_ef); | |
| 1567 waiting_for_ast = 1; | |
| 1568 /* Check for timing error: ast happened while we were doing that. */ | |
| 1569 if (!detect_input_pending ()) | |
| 1570 { | |
| 1571 /* No timing error: wait for flag to be set. */ | |
| 1572 set_waiting_for_input (0); | |
| 1573 SYS$WFLOR (input_ef, input_eflist); | |
| 1574 clear_waiting_for_input (0); | |
| 1575 if (!detect_input_pending ()) | |
| 1576 /* Check for subprocess input availability */ | |
| 1577 { | |
| 1578 int dsp = have_process_input || process_exited; | |
| 1579 | |
| 1580 SYS$CLREF (process_ef); | |
| 1581 if (have_process_input) | |
| 1582 process_command_input (); | |
| 1583 if (process_exited) | |
| 1584 process_exit (); | |
| 1585 if (dsp) | |
| 1586 { | |
| 1587 update_mode_lines++; | |
| 1588 redisplay_preserve_echo_area (); | |
| 1589 } | |
| 1590 } | |
| 1591 } | |
| 1592 waiting_for_ast = 0; | |
| 1593 } | |
| 1594 | |
| 1595 /* Get rid of any pending QIO, when we are about to suspend | |
| 1596 or when we want to throw away pending input. | |
| 1597 We wait for a positive sign that the AST routine has run | |
| 1598 and therefore there is no I/O request queued when we return. | |
| 1599 SYS$SETAST is used to avoid a timing error. */ | |
| 1600 | |
| 1601 end_kbd_input () | |
| 1602 { | |
| 1603 #ifdef ASTDEBUG | |
| 1604 printf ("At end_kbd_input.\n"); | |
| 1605 fflush (stdout); | |
| 1606 sleep (1); | |
| 1607 #endif | |
| 1608 if (LIB$AST_IN_PROG ()) /* Don't wait if suspending from kbd_buffer_store_event! */ | |
| 1609 { | |
| 579 | 1610 SYS$CANCEL (input_fd); |
| 491 | 1611 return; |
| 1612 } | |
| 1613 | |
| 1614 SYS$SETAST (0); | |
| 1615 /* Clear a flag, and tell ast routine above to set it. */ | |
| 1616 SYS$CLREF (input_ef); | |
| 1617 waiting_for_ast = 1; | |
| 1618 stop_input = 1; | |
| 579 | 1619 SYS$CANCEL (input_fd); |
| 491 | 1620 SYS$SETAST (1); |
| 1621 SYS$WAITFR (input_ef); | |
| 1622 waiting_for_ast = 0; | |
| 1623 } | |
| 1624 | |
| 1625 /* Wait for either input available or time interval expiry. */ | |
| 1626 | |
| 1627 input_wait_timeout (timeval) | |
| 1628 int timeval; /* Time to wait, in seconds */ | |
| 1629 { | |
| 1630 int time [2]; | |
| 1631 static int zero = 0; | |
| 1632 static int large = -10000000; | |
| 1633 | |
| 1634 LIB$EMUL (&timeval, &large, &zero, time); /* Convert to VMS format */ | |
| 1635 | |
| 1636 /* If already something, avoid doing system calls. */ | |
| 1637 if (detect_input_pending ()) | |
| 1638 { | |
| 1639 return; | |
| 1640 } | |
| 1641 /* Clear a flag, and tell ast routine above to set it. */ | |
| 1642 SYS$CLREF (input_ef); | |
| 1643 waiting_for_ast = 1; | |
| 1644 /* Check for timing error: ast happened while we were doing that. */ | |
| 1645 if (!detect_input_pending ()) | |
| 1646 { | |
| 1647 /* No timing error: wait for flag to be set. */ | |
| 1648 SYS$CANTIM (1, 0); | |
| 1649 if (SYS$SETIMR (timer_ef, time, 0, 1) & 1) /* Set timer */ | |
| 1650 SYS$WFLOR (timer_ef, timer_eflist); /* Wait for timer expiry or input */ | |
| 1651 } | |
| 1652 waiting_for_ast = 0; | |
| 1653 } | |
| 1654 | |
| 1655 /* The standard `sleep' routine works some other way | |
| 1656 and it stops working if you have ever quit out of it. | |
| 1657 This one continues to work. */ | |
| 1658 | |
| 1659 sys_sleep (timeval) | |
| 1660 int timeval; | |
| 1661 { | |
| 1662 int time [2]; | |
| 1663 static int zero = 0; | |
| 1664 static int large = -10000000; | |
| 1665 | |
| 1666 LIB$EMUL (&timeval, &large, &zero, time); /* Convert to VMS format */ | |
| 1667 | |
| 1668 SYS$CANTIM (1, 0); | |
| 1669 if (SYS$SETIMR (timer_ef, time, 0, 1) & 1) /* Set timer */ | |
| 1670 SYS$WAITFR (timer_ef); /* Wait for timer expiry only */ | |
| 1671 } | |
| 1672 | |
| 1673 init_sigio () | |
| 1674 { | |
| 1675 request_sigio (); | |
| 1676 } | |
| 1677 | |
| 1678 reset_sigio () | |
| 1679 { | |
| 1680 unrequest_sigio (); | |
| 1681 } | |
| 1682 | |
| 1683 request_sigio () | |
| 1684 { | |
| 1685 croak ("request sigio"); | |
| 1686 } | |
| 1687 | |
| 1688 unrequest_sigio () | |
| 1689 { | |
| 1690 croak ("unrequest sigio"); | |
| 1691 } | |
| 1692 | |
| 1693 #endif /* VMS */ | |
| 1694 | |
| 1695 /* Note that VMS compiler won't accept defined (CANNOT_DUMP). */ | |
| 1696 #ifndef CANNOT_DUMP | |
| 1697 #define NEED_STARTS | |
| 1698 #endif | |
| 1699 | |
| 1700 #ifndef SYSTEM_MALLOC | |
| 1701 #ifndef NEED_STARTS | |
| 1702 #define NEED_STARTS | |
| 1703 #endif | |
| 1704 #endif | |
| 1705 | |
| 1706 #ifdef NEED_STARTS | |
| 1707 /* Some systems that cannot dump also cannot implement these. */ | |
| 1708 | |
| 1709 /* | |
| 1710 * Return the address of the start of the text segment prior to | |
| 1711 * doing an unexec. After unexec the return value is undefined. | |
| 1712 * See crt0.c for further explanation and _start. | |
| 1713 * | |
| 1714 */ | |
| 1715 | |
| 1716 #ifndef CANNOT_UNEXEC | |
| 1717 char * | |
| 1718 start_of_text () | |
| 1719 { | |
| 1720 #ifdef TEXT_START | |
| 1721 return ((char *) TEXT_START); | |
| 1722 #else | |
| 1723 #ifdef GOULD | |
| 1724 extern csrt (); | |
| 1725 return ((char *) csrt); | |
| 1726 #else /* not GOULD */ | |
| 1727 extern int _start (); | |
| 1728 return ((char *) _start); | |
| 1729 #endif /* GOULD */ | |
| 1730 #endif /* TEXT_START */ | |
| 1731 } | |
| 1732 #endif /* not CANNOT_UNEXEC */ | |
| 1733 | |
| 1734 /* | |
| 1735 * Return the address of the start of the data segment prior to | |
| 1736 * doing an unexec. After unexec the return value is undefined. | |
| 1737 * See crt0.c for further information and definition of data_start. | |
| 1738 * | |
| 1739 * Apparently, on BSD systems this is etext at startup. On | |
| 1740 * USG systems (swapping) this is highly mmu dependent and | |
| 1741 * is also dependent on whether or not the program is running | |
| 1742 * with shared text. Generally there is a (possibly large) | |
| 1743 * gap between end of text and start of data with shared text. | |
| 1744 * | |
| 1745 * On Uniplus+ systems with shared text, data starts at a | |
| 1746 * fixed address. Each port (from a given oem) is generally | |
| 1747 * different, and the specific value of the start of data can | |
| 1748 * be obtained via the UniPlus+ specific "uvar" system call, | |
| 1749 * however the method outlined in crt0.c seems to be more portable. | |
| 1750 * | |
| 1751 * Probably what will have to happen when a USG unexec is available, | |
| 1752 * at least on UniPlus, is temacs will have to be made unshared so | |
| 1753 * that text and data are contiguous. Then once loadup is complete, | |
| 1754 * unexec will produce a shared executable where the data can be | |
| 1755 * at the normal shared text boundry and the startofdata variable | |
| 1756 * will be patched by unexec to the correct value. | |
| 1757 * | |
| 1758 */ | |
| 1759 | |
| 1760 char * | |
| 1761 start_of_data () | |
| 1762 { | |
| 1763 #ifdef DATA_START | |
| 1764 return ((char *) DATA_START); | |
| 1765 #else | |
|
2121
ebc56bb13048
* sysdep.c (read_input_waiting): Set e.frame_or_window, not
Jim Blandy <jimb@redhat.com>
parents:
1927
diff
changeset
|
1766 #ifdef ORDINARY_LINK |
|
ebc56bb13048
* sysdep.c (read_input_waiting): Set e.frame_or_window, not
Jim Blandy <jimb@redhat.com>
parents:
1927
diff
changeset
|
1767 /* |
|
ebc56bb13048
* sysdep.c (read_input_waiting): Set e.frame_or_window, not
Jim Blandy <jimb@redhat.com>
parents:
1927
diff
changeset
|
1768 * This is a hack. Since we're not linking crt0.c or pre_crt0.c, |
|
ebc56bb13048
* sysdep.c (read_input_waiting): Set e.frame_or_window, not
Jim Blandy <jimb@redhat.com>
parents:
1927
diff
changeset
|
1769 * data_start isn't defined. We take the address of environ, which |
|
ebc56bb13048
* sysdep.c (read_input_waiting): Set e.frame_or_window, not
Jim Blandy <jimb@redhat.com>
parents:
1927
diff
changeset
|
1770 * is known to live at or near the start of the system crt0.c, and |
|
ebc56bb13048
* sysdep.c (read_input_waiting): Set e.frame_or_window, not
Jim Blandy <jimb@redhat.com>
parents:
1927
diff
changeset
|
1771 * we don't sweat the handful of bytes that might lose. |
|
ebc56bb13048
* sysdep.c (read_input_waiting): Set e.frame_or_window, not
Jim Blandy <jimb@redhat.com>
parents:
1927
diff
changeset
|
1772 */ |
|
ebc56bb13048
* sysdep.c (read_input_waiting): Set e.frame_or_window, not
Jim Blandy <jimb@redhat.com>
parents:
1927
diff
changeset
|
1773 extern char **environ; |
|
ebc56bb13048
* sysdep.c (read_input_waiting): Set e.frame_or_window, not
Jim Blandy <jimb@redhat.com>
parents:
1927
diff
changeset
|
1774 |
|
ebc56bb13048
* sysdep.c (read_input_waiting): Set e.frame_or_window, not
Jim Blandy <jimb@redhat.com>
parents:
1927
diff
changeset
|
1775 return((char *) &environ); |
|
ebc56bb13048
* sysdep.c (read_input_waiting): Set e.frame_or_window, not
Jim Blandy <jimb@redhat.com>
parents:
1927
diff
changeset
|
1776 #else |
| 491 | 1777 extern int data_start; |
| 1778 return ((char *) &data_start); | |
|
2121
ebc56bb13048
* sysdep.c (read_input_waiting): Set e.frame_or_window, not
Jim Blandy <jimb@redhat.com>
parents:
1927
diff
changeset
|
1779 #endif /* ORDINARY_LINK */ |
|
ebc56bb13048
* sysdep.c (read_input_waiting): Set e.frame_or_window, not
Jim Blandy <jimb@redhat.com>
parents:
1927
diff
changeset
|
1780 #endif /* DATA_START */ |
| 491 | 1781 } |
| 1782 #endif /* NEED_STARTS (not CANNOT_DUMP or not SYSTEM_MALLOC) */ | |
| 1783 | |
| 1784 #ifndef CANNOT_DUMP | |
| 1785 /* Some systems that cannot dump also cannot implement these. */ | |
| 1786 | |
| 1787 /* | |
| 1788 * Return the address of the end of the text segment prior to | |
| 1789 * doing an unexec. After unexec the return value is undefined. | |
| 1790 */ | |
| 1791 | |
| 1792 char * | |
| 1793 end_of_text () | |
| 1794 { | |
| 1795 #ifdef TEXT_END | |
| 1796 return ((char *) TEXT_END); | |
| 1797 #else | |
| 1798 extern int etext; | |
| 1799 return ((char *) &etext); | |
| 1800 #endif | |
| 1801 } | |
| 1802 | |
| 1803 /* | |
| 1804 * Return the address of the end of the data segment prior to | |
| 1805 * doing an unexec. After unexec the return value is undefined. | |
| 1806 */ | |
| 1807 | |
| 1808 char * | |
| 1809 end_of_data () | |
| 1810 { | |
| 1811 #ifdef DATA_END | |
| 1812 return ((char *) DATA_END); | |
| 1813 #else | |
| 1814 extern int edata; | |
| 1815 return ((char *) &edata); | |
| 1816 #endif | |
| 1817 } | |
| 1818 | |
| 1819 #endif /* not CANNOT_DUMP */ | |
| 1820 | |
| 1821 /* Get_system_name returns as its value | |
| 1822 a string for the Lisp function system-name to return. */ | |
| 1823 | |
| 1824 #ifdef BSD4_1 | |
| 1825 #include <whoami.h> | |
| 1826 #endif | |
| 1827 | |
|
1496
f9010847a5f5
(get_system_name): Use gethostname for USG systems
Richard M. Stallman <rms@gnu.org>
parents:
1203
diff
changeset
|
1828 /* Can't have this within the function since `static' is #defined to |
|
f9010847a5f5
(get_system_name): Use gethostname for USG systems
Richard M. Stallman <rms@gnu.org>
parents:
1203
diff
changeset
|
1829 nothing for some USG systems. */ |
| 491 | 1830 #ifdef USG |
|
1496
f9010847a5f5
(get_system_name): Use gethostname for USG systems
Richard M. Stallman <rms@gnu.org>
parents:
1203
diff
changeset
|
1831 #ifdef HAVE_GETHOSTNAME |
|
f9010847a5f5
(get_system_name): Use gethostname for USG systems
Richard M. Stallman <rms@gnu.org>
parents:
1203
diff
changeset
|
1832 static char get_system_name_name[256]; |
|
f9010847a5f5
(get_system_name): Use gethostname for USG systems
Richard M. Stallman <rms@gnu.org>
parents:
1203
diff
changeset
|
1833 #else /* not HAVE_GETHOSTNAME */ |
| 491 | 1834 static struct utsname get_system_name_name; |
|
1496
f9010847a5f5
(get_system_name): Use gethostname for USG systems
Richard M. Stallman <rms@gnu.org>
parents:
1203
diff
changeset
|
1835 #endif /* not HAVE_GETHOSTNAME */ |
|
f9010847a5f5
(get_system_name): Use gethostname for USG systems
Richard M. Stallman <rms@gnu.org>
parents:
1203
diff
changeset
|
1836 #endif /* USG */ |
| 491 | 1837 |
|
3150
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1838 #ifndef BSD4_1 |
|
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1839 #ifndef USG |
|
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1840 #ifndef VMS |
|
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1841 #ifdef HAVE_SOCKETS |
|
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1842 #include <sys/socket.h> |
|
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1843 #include <netdb.h> |
|
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1844 #endif /* HAVE_SOCKETS */ |
|
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1845 #endif /* not VMS */ |
|
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1846 #endif /* not USG */ |
|
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1847 #endif /* not BSD4_1 */ |
|
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1848 |
| 491 | 1849 char * |
| 1850 get_system_name () | |
| 1851 { | |
| 1852 #ifdef USG | |
|
1496
f9010847a5f5
(get_system_name): Use gethostname for USG systems
Richard M. Stallman <rms@gnu.org>
parents:
1203
diff
changeset
|
1853 #ifdef HAVE_GETHOSTNAME |
|
f9010847a5f5
(get_system_name): Use gethostname for USG systems
Richard M. Stallman <rms@gnu.org>
parents:
1203
diff
changeset
|
1854 gethostname (get_system_name_name, sizeof (get_system_name_name)); |
|
f9010847a5f5
(get_system_name): Use gethostname for USG systems
Richard M. Stallman <rms@gnu.org>
parents:
1203
diff
changeset
|
1855 return get_system_name_name; |
|
f9010847a5f5
(get_system_name): Use gethostname for USG systems
Richard M. Stallman <rms@gnu.org>
parents:
1203
diff
changeset
|
1856 #else /* not HAVE_GETHOSTNAME */ |
| 491 | 1857 uname (&get_system_name_name); |
| 1858 return (get_system_name_name.nodename); | |
|
1496
f9010847a5f5
(get_system_name): Use gethostname for USG systems
Richard M. Stallman <rms@gnu.org>
parents:
1203
diff
changeset
|
1859 #endif /* not HAVE_GETHOSTNAME */ |
| 491 | 1860 #else /* Not USG */ |
| 1861 #ifdef BSD4_1 | |
| 1862 return sysname; | |
| 1863 #else /* not USG, not 4.1 */ | |
| 1864 static char system_name_saved[32]; | |
| 1865 #ifdef VMS | |
| 1866 char *sp; | |
| 1867 if ((sp = egetenv ("SYS$NODE")) == 0) | |
| 1868 sp = "vax-vms"; | |
| 1869 else | |
| 1870 { | |
| 1871 char *end; | |
| 1872 | |
| 1873 if ((end = index (sp, ':')) != 0) | |
| 1874 *end = '\0'; | |
| 1875 } | |
| 1876 strcpy (system_name_saved, sp); | |
| 1877 #else /* not VMS */ | |
| 1878 gethostname (system_name_saved, sizeof (system_name_saved)); | |
|
3150
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1879 #ifdef HAVE_SOCKETS |
|
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1880 /* Turn the hostname into the official, fully-qualified hostname. |
|
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1881 Don't do this if we're going to dump; this can confuse system |
|
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1882 libraries on some machines and make the dumped emacs core dump. */ |
|
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1883 #ifndef CANNOT_DUMP |
|
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1884 if (initialized) |
|
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1885 #endif /* not CANNOT_DUMP */ |
|
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1886 { |
|
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1887 struct hostent *hp; |
|
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1888 hp = gethostbyname (system_name_saved); |
|
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1889 if (hp && strlen (hp->h_name) < sizeof(system_name_saved)) |
|
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1890 strcpy (system_name_saved, hp->h_name); |
|
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1891 } |
|
afc59d5d30c6
[HAVE_SOCKETS]: Include socket.h, netdb.h.
Richard M. Stallman <rms@gnu.org>
parents:
3106
diff
changeset
|
1892 #endif /* HAVE_SOCKETS */ |
| 491 | 1893 #endif /* not VMS */ |
| 1894 return system_name_saved; | |
| 1895 #endif /* not USG, not 4.1 */ | |
| 1896 #endif /* not USG */ | |
| 1897 } | |
|
2264
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1898 |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1899 #ifdef VMS |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1900 #ifndef HAVE_GETHOSTNAME |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1901 void gethostname(buf, len) |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1902 char *buf; |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1903 int len; |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1904 { |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1905 char *s; |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1906 s = getenv ("SYS$NODE"); |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1907 if (s == NULL) |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1908 buf[0] = '\0'; |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1909 else { |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1910 strncpy (buf, s, len - 2); |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1911 buf[len - 1] = '\0'; |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1912 } /* else */ |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1913 } /* static void gethostname */ |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1914 #endif /* ! HAVE_GETHOSTNAME */ |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1915 #endif /* VMS */ |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
1916 |
| 491 | 1917 |
| 1918 #ifndef VMS | |
| 1919 #ifndef HAVE_SELECT | |
| 1920 | |
| 1921 #ifdef HAVE_X_WINDOWS | |
| 1922 /* Cause explanatory error message at compile time, | |
| 1923 since the select emulation is not good enough for X. */ | |
| 1924 int *x = &x_windows_lose_if_no_select_system_call; | |
| 1925 #endif | |
| 1926 | |
| 1927 /* Emulate as much as select as is possible under 4.1 and needed by Gnu Emacs | |
| 1928 * Only checks read descriptors. | |
| 1929 */ | |
| 1930 /* How long to wait between checking fds in select */ | |
| 1931 #define SELECT_PAUSE 1 | |
| 1932 int select_alarmed; | |
| 1933 | |
| 1934 /* For longjmp'ing back to read_input_waiting. */ | |
| 1935 | |
| 1936 jmp_buf read_alarm_throw; | |
| 1937 | |
| 1938 /* Nonzero if the alarm signal should throw back to read_input_waiting. | |
| 1939 The read_socket_hook function sets this to 1 while it is waiting. */ | |
| 1940 | |
| 1941 int read_alarm_should_throw; | |
| 1942 | |
| 1943 SIGTYPE | |
| 1944 select_alarm () | |
| 1945 { | |
| 1946 select_alarmed = 1; | |
| 1947 #ifdef BSD4_1 | |
| 1948 sigrelse (SIGALRM); | |
| 1949 #else /* not BSD4_1 */ | |
| 1950 signal (SIGALRM, SIG_IGN); | |
| 1951 #endif /* not BSD4_1 */ | |
| 1952 if (read_alarm_should_throw) | |
| 1953 longjmp (read_alarm_throw, 1); | |
| 1954 } | |
| 1955 | |
| 1956 /* Only rfds are checked. */ | |
| 1957 int | |
| 1958 select (nfds, rfds, wfds, efds, timeout) | |
| 1959 int nfds; | |
| 1960 int *rfds, *wfds, *efds, *timeout; | |
| 1961 { | |
| 1962 int ravail = 0, orfds = 0, old_alarm; | |
| 1963 int timeoutval = timeout ? *timeout : 100000; | |
| 1964 int *local_timeout = &timeoutval; | |
| 1965 extern int proc_buffered_char[]; | |
| 1966 #ifndef subprocesses | |
| 1967 int process_tick = 0, update_tick = 0; | |
| 1968 #else | |
| 1969 extern int process_tick, update_tick; | |
| 1970 #endif | |
| 1971 SIGTYPE (*old_trap) (); | |
| 1972 unsigned char buf; | |
| 1973 | |
| 1974 if (rfds) | |
| 1975 { | |
| 1976 orfds = *rfds; | |
| 1977 *rfds = 0; | |
| 1978 } | |
| 1979 if (wfds) | |
| 1980 *wfds = 0; | |
| 1981 if (efds) | |
| 1982 *efds = 0; | |
| 1983 | |
| 1984 /* If we are looking only for the terminal, with no timeout, | |
| 1985 just read it and wait -- that's more efficient. */ | |
| 1986 if (orfds == 1 && *local_timeout == 100000 && process_tick == update_tick) | |
| 1987 { | |
| 1988 if (! detect_input_pending ()) | |
| 1989 read_input_waiting (); | |
| 1990 *rfds = 1; | |
| 1991 return 1; | |
| 1992 } | |
| 1993 | |
| 1994 /* Once a second, till the timer expires, check all the flagged read | |
| 1995 * descriptors to see if any input is available. If there is some then | |
| 1996 * set the corresponding bit in the return copy of rfds. | |
| 1997 */ | |
| 1998 while (1) | |
| 1999 { | |
| 2000 register int to_check, bit, fd; | |
| 2001 | |
| 2002 if (rfds) | |
| 2003 { | |
| 2004 for (to_check = nfds, bit = 1, fd = 0; --to_check >= 0; bit <<= 1, fd++) | |
| 2005 { | |
| 2006 if (orfds & bit) | |
| 2007 { | |
| 2008 int avail = 0, status = 0; | |
| 2009 | |
| 2010 if (bit == 1) | |
| 2011 avail = detect_input_pending (); /* Special keyboard handler */ | |
| 2012 else | |
| 2013 { | |
| 2014 #ifdef FIONREAD | |
| 2015 status = ioctl (fd, FIONREAD, &avail); | |
| 2016 #else /* no FIONREAD */ | |
| 2017 /* Hoping it will return -1 if nothing available | |
| 2018 or 0 if all 0 chars requested are read. */ | |
| 2019 if (proc_buffered_char[fd] >= 0) | |
| 2020 avail = 1; | |
| 2021 else | |
| 2022 { | |
| 2023 avail = read (fd, &buf, 1); | |
| 2024 if (avail > 0) | |
| 2025 proc_buffered_char[fd] = buf; | |
| 2026 } | |
| 2027 #endif /* no FIONREAD */ | |
| 2028 } | |
| 2029 if (status >= 0 && avail > 0) | |
| 2030 { | |
| 2031 (*rfds) |= bit; | |
| 2032 ravail++; | |
| 2033 } | |
| 2034 } | |
| 2035 } | |
| 2036 } | |
| 2037 if (*local_timeout == 0 || ravail != 0 || process_tick != update_tick) | |
| 2038 break; | |
| 2039 old_alarm = alarm (0); | |
|
1014
6e25f9b75841
* sysdep.c (select): There's no need to cast the return value of
Jim Blandy <jimb@redhat.com>
parents:
766
diff
changeset
|
2040 old_trap = signal (SIGALRM, select_alarm); |
| 491 | 2041 select_alarmed = 0; |
| 2042 alarm (SELECT_PAUSE); | |
| 2043 /* Wait for a SIGALRM (or maybe a SIGTINT) */ | |
| 2044 while (select_alarmed == 0 && *local_timeout != 0 | |
| 2045 && process_tick == update_tick) | |
| 2046 { | |
| 2047 /* If we are interested in terminal input, | |
| 2048 wait by reading the terminal. | |
| 2049 That makes instant wakeup for terminal input at least. */ | |
| 2050 if (orfds & 1) | |
| 2051 { | |
| 2052 read_input_waiting (); | |
| 2053 if (detect_input_pending ()) | |
| 2054 select_alarmed = 1; | |
| 2055 } | |
| 2056 else | |
| 2057 pause (); | |
| 2058 } | |
| 2059 (*local_timeout) -= SELECT_PAUSE; | |
| 2060 /* Reset the old alarm if there was one */ | |
| 2061 alarm (0); | |
| 2062 signal (SIGALRM, old_trap); | |
| 2063 if (old_alarm != 0) | |
| 2064 { | |
| 2065 /* Reset or forge an interrupt for the original handler. */ | |
| 2066 old_alarm -= SELECT_PAUSE; | |
| 2067 if (old_alarm <= 0) | |
| 2068 kill (getpid (), SIGALRM); /* Fake an alarm with the orig' handler */ | |
| 2069 else | |
| 2070 alarm (old_alarm); | |
| 2071 } | |
| 2072 if (*local_timeout == 0) /* Stop on timer being cleared */ | |
| 2073 break; | |
| 2074 } | |
| 2075 return ravail; | |
| 2076 } | |
| 2077 | |
| 2078 /* Read keyboard input into the standard buffer, | |
| 2079 waiting for at least one character. */ | |
| 2080 | |
| 2081 /* Make all keyboard buffers much bigger when using X windows. */ | |
| 2082 #ifdef HAVE_X_WINDOWS | |
| 2083 #define BUFFER_SIZE_FACTOR 16 | |
| 2084 #else | |
| 2085 #define BUFFER_SIZE_FACTOR 1 | |
| 2086 #endif | |
| 2087 | |
| 2088 read_input_waiting () | |
| 2089 { | |
| 2090 char buf[256 * BUFFER_SIZE_FACTOR]; | |
| 2091 struct input_event e; | |
|
1014
6e25f9b75841
* sysdep.c (select): There's no need to cast the return value of
Jim Blandy <jimb@redhat.com>
parents:
766
diff
changeset
|
2092 int nread, i; |
|
6e25f9b75841
* sysdep.c (select): There's no need to cast the return value of
Jim Blandy <jimb@redhat.com>
parents:
766
diff
changeset
|
2093 extern int quit_char; |
| 491 | 2094 |
| 2095 if (read_socket_hook) | |
| 2096 { | |
| 2097 read_alarm_should_throw = 0; | |
| 2098 if (! setjmp (read_alarm_throw)) | |
| 2099 nread = (*read_socket_hook) (0, buf, 256 * BUFFER_SIZE_FACTOR, 1, 0); | |
| 2100 else | |
| 2101 nread = -1; | |
| 2102 } | |
| 2103 else | |
| 2104 nread = read (fileno (stdin), buf, 1); | |
| 2105 | |
| 2106 /* Scan the chars for C-g and store them in kbd_buffer. */ | |
| 2107 e.kind = ascii_keystroke; | |
|
2121
ebc56bb13048
* sysdep.c (read_input_waiting): Set e.frame_or_window, not
Jim Blandy <jimb@redhat.com>
parents:
1927
diff
changeset
|
2108 e.frame_or_window = selected_frame; |
|
2589
5f41134610a6
(read_pending_input): Fix the garbaged-modifiers bug under System Vs previous
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2439
diff
changeset
|
2109 e.modifiers = 0; |
| 491 | 2110 for (i = 0; i < nread; i++) |
| 2111 { | |
| 2112 XSET (e.code, Lisp_Int, buf[i]); | |
| 2113 kbd_buffer_store_event (&e); | |
| 2114 /* Don't look at input that follows a C-g too closely. | |
| 2115 This reduces lossage due to autorepeat on C-g. */ | |
|
1014
6e25f9b75841
* sysdep.c (select): There's no need to cast the return value of
Jim Blandy <jimb@redhat.com>
parents:
766
diff
changeset
|
2116 if (buf[i] == quit_char) |
| 491 | 2117 break; |
| 2118 } | |
| 2119 } | |
| 2120 | |
| 2121 #endif /* not HAVE_SELECT */ | |
| 2122 #endif /* not VMS */ | |
| 2123 | |
| 2124 #ifdef BSD4_1 | |
| 2125 /* | |
| 2126 * Partially emulate 4.2 open call. | |
| 2127 * open is defined as this in 4.1. | |
| 2128 * | |
| 2129 * - added by Michael Bloom @ Citicorp/TTI | |
| 2130 * | |
| 2131 */ | |
| 2132 | |
| 2133 int | |
| 2134 sys_open (path, oflag, mode) | |
| 2135 char *path; | |
| 2136 int oflag, mode; | |
| 2137 { | |
| 2138 if (oflag & O_CREAT) | |
| 2139 return creat (path, mode); | |
| 2140 else | |
| 2141 return open (path, oflag); | |
| 2142 } | |
| 2143 | |
| 2144 init_sigio () | |
| 2145 { | |
| 2146 if (noninteractive) | |
| 2147 return; | |
| 2148 lmode = LINTRUP | lmode; | |
| 2149 ioctl (0, TIOCLSET, &lmode); | |
| 2150 } | |
| 2151 | |
| 2152 reset_sigio () | |
| 2153 { | |
| 2154 if (noninteractive) | |
| 2155 return; | |
| 2156 lmode = ~LINTRUP & lmode; | |
| 2157 ioctl (0, TIOCLSET, &lmode); | |
| 2158 } | |
| 2159 | |
| 2160 request_sigio () | |
| 2161 { | |
| 2162 sigrelse (SIGTINT); | |
| 2163 | |
| 2164 interrupts_deferred = 0; | |
| 2165 } | |
| 2166 | |
| 2167 unrequest_sigio () | |
| 2168 { | |
| 2169 sighold (SIGTINT); | |
| 2170 | |
| 2171 interrupts_deferred = 1; | |
| 2172 } | |
| 2173 | |
| 2174 /* still inside #ifdef BSD4_1 */ | |
| 2175 #ifdef subprocesses | |
| 2176 | |
| 2177 int sigheld; /* Mask of held signals */ | |
| 2178 | |
| 2179 sigholdx (signum) | |
| 2180 int signum; | |
| 2181 { | |
| 2182 sigheld |= sigbit (signum); | |
| 2183 sighold (signum); | |
| 2184 } | |
| 2185 | |
| 2186 sigisheld (signum) | |
| 2187 int signum; | |
| 2188 { | |
| 2189 sigheld |= sigbit (signum); | |
| 2190 } | |
| 2191 | |
| 2192 sigunhold (signum) | |
| 2193 int signum; | |
| 2194 { | |
| 2195 sigheld &= ~sigbit (signum); | |
| 2196 sigrelse (signum); | |
| 2197 } | |
| 2198 | |
| 2199 sigfree () /* Free all held signals */ | |
| 2200 { | |
| 2201 int i; | |
| 2202 for (i = 0; i < NSIG; i++) | |
| 2203 if (sigheld & sigbit (i)) | |
| 2204 sigrelse (i); | |
| 2205 sigheld = 0; | |
| 2206 } | |
| 2207 | |
| 2208 sigbit (i) | |
| 2209 { | |
| 2210 return 1 << (i - 1); | |
| 2211 } | |
| 2212 #endif /* subprocesses */ | |
| 2213 #endif /* BSD4_1 */ | |
| 2214 | |
| 2215 /* POSIX signals support - DJB */ | |
| 2216 /* Anyone with POSIX signals should have ANSI C declarations */ | |
| 2217 | |
| 2218 #ifdef POSIX_SIGNALS | |
| 2219 | |
| 2220 sigset_t old_mask, empty_mask, full_mask, temp_mask; | |
| 2221 static struct sigaction new_action, old_action; | |
| 2222 | |
| 2223 init_signals () | |
| 2224 { | |
|
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2873
diff
changeset
|
2225 sigemptyset (&empty_mask); |
|
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2873
diff
changeset
|
2226 sigfillset (&full_mask); |
| 491 | 2227 } |
| 2228 | |
| 2229 signal_handler_t | |
| 2230 sys_signal (int signal_number, signal_handler_t action) | |
| 2231 { | |
| 2232 #ifdef DGUX | |
| 2233 /* This gets us restartable system calls for efficiency. | |
| 2234 The "else" code will works as well. */ | |
| 2235 return (berk_signal (signal_number, action)); | |
| 2236 #else | |
| 2237 sigemptyset (&new_action.sa_mask); | |
| 2238 new_action.sa_handler = action; | |
|
3292
6209d0e98e35
(sys_signal): Use 0, not NULL, to set sa_flags.
Richard M. Stallman <rms@gnu.org>
parents:
3268
diff
changeset
|
2239 new_action.sa_flags = 0; |
| 709 | 2240 sigaction (signal_number, &new_action, &old_action); |
| 491 | 2241 return (old_action.sa_handler); |
| 2242 #endif /* DGUX */ | |
| 2243 } | |
| 2244 | |
| 638 | 2245 #ifndef __GNUC__ |
| 2246 /* If we're compiling with GCC, we don't need this function, since it | |
| 2247 can be written as a macro. */ | |
| 2248 sigset_t | |
| 2249 sys_sigmask (int sig) | |
| 2250 { | |
| 2251 sigset_t mask; | |
| 2252 sigemptyset (&mask); | |
| 2253 sigaddset (&mask, sig); | |
| 2254 return mask; | |
| 2255 } | |
| 2256 #endif | |
| 2257 | |
| 491 | 2258 int |
| 2259 sys_sigpause (sigset_t new_mask) | |
| 2260 { | |
| 2261 /* pause emulating berk sigpause... */ | |
| 2262 sigsuspend (&new_mask); | |
| 2263 return (EINTR); | |
| 2264 } | |
| 2265 | |
| 2266 /* I'd like to have these guys return pointers to the mask storage in here, | |
| 2267 but there'd be trouble if the code was saving multiple masks. I'll be | |
| 2268 safe and pass the structure. It normally won't be more than 2 bytes | |
| 2269 anyhow. - DJB */ | |
| 2270 | |
| 2271 sigset_t | |
| 2272 sys_sigblock (sigset_t new_mask) | |
| 2273 { | |
| 2274 sigset_t old_mask; | |
| 2275 sigprocmask (SIG_BLOCK, &new_mask, &old_mask); | |
| 2276 return (old_mask); | |
| 2277 } | |
| 2278 | |
| 2279 sigset_t | |
| 2280 sys_sigunblock (sigset_t new_mask) | |
| 2281 { | |
| 2282 sigset_t old_mask; | |
| 2283 sigprocmask (SIG_UNBLOCK, &new_mask, &old_mask); | |
| 2284 return (old_mask); | |
| 2285 } | |
| 2286 | |
| 2287 sigset_t | |
| 2288 sys_sigsetmask (sigset_t new_mask) | |
| 2289 { | |
| 2290 sigset_t old_mask; | |
| 2291 sigprocmask (SIG_SETMASK, &new_mask, &old_mask); | |
| 2292 return (old_mask); | |
| 2293 } | |
| 2294 | |
| 2295 #endif /* POSIX_SIGNALS */ | |
| 2296 | |
| 2297 #ifndef BSTRING | |
| 2298 | |
| 2299 void | |
| 2300 bzero (b, length) | |
| 2301 register char *b; | |
| 2302 register int length; | |
| 2303 { | |
| 2304 #ifdef VMS | |
| 2305 short zero = 0; | |
| 2306 long max_str = 65535; | |
| 2307 | |
| 2308 while (length > max_str) { | |
| 2309 (void) LIB$MOVC5 (&zero, &zero, &zero, &max_str, b); | |
| 2310 length -= max_str; | |
| 2311 b += max_str; | |
| 2312 } | |
| 2313 max_str = length; | |
| 2314 (void) LIB$MOVC5 (&zero, &zero, &zero, &max_str, b); | |
| 2315 #else | |
| 2316 while (length-- > 0) | |
| 2317 *b++ = 0; | |
| 2318 #endif /* not VMS */ | |
| 2319 } | |
| 2320 | |
| 2321 /* Saying `void' requires a declaration, above, where bcopy is used | |
| 2322 and that declaration causes pain for systems where bcopy is a macro. */ | |
| 2323 bcopy (b1, b2, length) | |
| 2324 register char *b1; | |
| 2325 register char *b2; | |
| 2326 register int length; | |
| 2327 { | |
| 2328 #ifdef VMS | |
| 2329 long max_str = 65535; | |
| 2330 | |
| 2331 while (length > max_str) { | |
| 2332 (void) LIB$MOVC3 (&max_str, b1, b2); | |
| 2333 length -= max_str; | |
| 2334 b1 += max_str; | |
| 2335 b2 += max_str; | |
| 2336 } | |
| 2337 max_str = length; | |
| 2338 (void) LIB$MOVC3 (&length, b1, b2); | |
| 2339 #else | |
| 2340 while (length-- > 0) | |
| 2341 *b2++ = *b1++; | |
| 2342 #endif /* not VMS */ | |
| 2343 } | |
| 2344 | |
| 2345 int | |
| 2346 bcmp (b1, b2, length) /* This could be a macro! */ | |
| 2347 register char *b1; | |
| 2348 register char *b2; | |
| 2349 register int length; | |
| 2350 { | |
| 2351 #ifdef VMS | |
| 2352 struct dsc$descriptor_s src1 = {length, DSC$K_DTYPE_T, DSC$K_CLASS_S, b1}; | |
| 2353 struct dsc$descriptor_s src2 = {length, DSC$K_DTYPE_T, DSC$K_CLASS_S, b2}; | |
| 2354 | |
| 2355 return STR$COMPARE (&src1, &src2); | |
| 2356 #else | |
| 2357 while (length-- > 0) | |
| 2358 if (*b1++ != *b2++) | |
| 2359 return 1; | |
| 2360 | |
| 2361 return 0; | |
| 2362 #endif /* not VMS */ | |
| 2363 } | |
| 2364 #endif /* not BSTRING */ | |
| 2365 | |
|
2332
bc2f7dc78412
* sysdep.c (random, srandom): Don't define these if HAVE_RANDOM is
Jim Blandy <jimb@redhat.com>
parents:
2287
diff
changeset
|
2366 #ifndef HAVE_RANDOM |
| 491 | 2367 #ifdef USG |
| 2368 /* | |
| 2369 * The BSD random returns numbers in the range of | |
| 2370 * 0 to 2e31 - 1. The USG rand returns numbers in the | |
| 2371 * range of 0 to 2e15 - 1. This is probably not significant | |
| 2372 * in this usage. | |
| 2373 */ | |
| 2374 | |
| 2375 long | |
| 2376 random () | |
| 2377 { | |
| 2378 /* Arrange to return a range centered on zero. */ | |
| 2379 return (rand () << 15) + rand () - (1 << 29); | |
| 2380 } | |
| 2381 | |
| 2382 srandom (arg) | |
| 2383 int arg; | |
| 2384 { | |
| 2385 srand (arg); | |
| 2386 } | |
| 2387 | |
| 2388 #endif /* USG */ | |
| 2389 | |
| 2390 #ifdef BSD4_1 | |
| 2391 long random () | |
| 2392 { | |
| 2393 /* Arrange to return a range centered on zero. */ | |
| 2394 return (rand () << 15) + rand () - (1 << 29); | |
| 2395 } | |
| 2396 | |
| 2397 srandom (arg) | |
| 2398 int arg; | |
| 2399 { | |
| 2400 srand (arg); | |
| 2401 } | |
| 2402 #endif /* BSD4_1 */ | |
|
2332
bc2f7dc78412
* sysdep.c (random, srandom): Don't define these if HAVE_RANDOM is
Jim Blandy <jimb@redhat.com>
parents:
2287
diff
changeset
|
2403 #endif |
| 491 | 2404 |
| 2405 #ifdef WRONG_NAME_INSQUE | |
| 2406 | |
| 2407 insque (q,p) | |
| 2408 caddr_t q,p; | |
| 2409 { | |
| 2410 _insque (q,p); | |
| 2411 } | |
| 2412 | |
| 2413 #endif | |
| 2414 | |
| 2415 #ifdef VMS | |
| 2416 | |
| 2417 #ifdef getenv | |
| 2418 /* If any place else asks for the TERM variable, | |
| 2419 allow it to be overridden with the EMACS_TERM variable | |
| 2420 before attempting to translate the logical name TERM. As a last | |
| 2421 resort, ask for VAX C's special idea of the TERM variable. */ | |
| 2422 #undef getenv | |
| 2423 char * | |
| 2424 sys_getenv (name) | |
| 2425 char *name; | |
| 2426 { | |
| 2427 register char *val; | |
| 2428 static char buf[256]; | |
| 2429 static struct dsc$descriptor_s equiv | |
| 2430 = {sizeof (buf), DSC$K_DTYPE_T, DSC$K_CLASS_S, buf}; | |
| 2431 static struct dsc$descriptor_s d_name | |
| 2432 = {0, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0}; | |
| 2433 short eqlen; | |
| 2434 | |
| 2435 if (!strcmp (name, "TERM")) | |
| 2436 { | |
| 2437 val = (char *) getenv ("EMACS_TERM"); | |
| 2438 if (val) | |
| 2439 return val; | |
| 2440 } | |
| 2441 | |
| 2442 d_name.dsc$w_length = strlen (name); | |
| 2443 d_name.dsc$a_pointer = name; | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
2444 if (LIB$SYS_TRNLOG (&d_name, &eqlen, &equiv) == 1) |
| 491 | 2445 { |
| 2446 char *str = (char *) xmalloc (eqlen + 1); | |
| 2447 bcopy (buf, str, eqlen); | |
| 2448 str[eqlen] = '\0'; | |
| 2449 /* This is a storage leak, but a pain to fix. With luck, | |
| 2450 no one will ever notice. */ | |
| 2451 return str; | |
| 2452 } | |
| 2453 return (char *) getenv (name); | |
| 2454 } | |
| 2455 #endif /* getenv */ | |
| 2456 | |
| 2457 #ifdef abort | |
| 2458 /* Since VMS doesn't believe in core dumps, the only way to debug this beast is | |
| 2459 to force a call on the debugger from within the image. */ | |
| 2460 #undef abort | |
| 2461 sys_abort () | |
| 2462 { | |
| 2463 reset_sys_modes (); | |
| 2464 LIB$SIGNAL (SS$_DEBUG); | |
| 2465 } | |
| 2466 #endif /* abort */ | |
| 2467 #endif /* VMS */ | |
| 2468 | |
| 2469 #ifdef VMS | |
| 2470 #ifdef LINK_CRTL_SHARE | |
| 2471 #ifdef SHAREABLE_LIB_BUG | |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3559
diff
changeset
|
2472 /* Variables declared noshare and initialized in sharable libraries |
| 491 | 2473 cannot be shared. The VMS linker incorrectly forces you to use a private |
| 2474 version which is uninitialized... If not for this "feature", we | |
| 2475 could use the C library definition of sys_nerr and sys_errlist. */ | |
| 2476 int sys_nerr = 35; | |
| 2477 char *sys_errlist[] = | |
| 2478 { | |
| 2479 "error 0", | |
| 2480 "not owner", | |
| 2481 "no such file or directory", | |
| 2482 "no such process", | |
| 2483 "interrupted system call", | |
| 2484 "i/o error", | |
| 2485 "no such device or address", | |
| 2486 "argument list too long", | |
| 2487 "exec format error", | |
| 2488 "bad file number", | |
| 2489 "no child process", | |
| 2490 "no more processes", | |
| 2491 "not enough memory", | |
| 2492 "permission denied", | |
| 2493 "bad address", | |
| 2494 "block device required", | |
| 2495 "mount devices busy", | |
| 2496 "file exists", | |
| 2497 "cross-device link", | |
| 2498 "no such device", | |
| 2499 "not a directory", | |
| 2500 "is a directory", | |
| 2501 "invalid argument", | |
| 2502 "file table overflow", | |
| 2503 "too many open files", | |
| 2504 "not a typewriter", | |
| 2505 "text file busy", | |
| 2506 "file too big", | |
| 2507 "no space left on device", | |
| 2508 "illegal seek", | |
| 2509 "read-only file system", | |
| 2510 "too many links", | |
| 2511 "broken pipe", | |
| 2512 "math argument", | |
| 2513 "result too large", | |
| 2514 "I/O stream empty", | |
| 2515 "vax/vms specific error code nontranslatable error" | |
| 2516 }; | |
| 2517 #endif /* SHAREABLE_LIB_BUG */ | |
| 2518 #endif /* LINK_CRTL_SHARE */ | |
| 2519 #endif /* VMS */ | |
| 2520 | |
| 2521 #ifdef INTERRUPTIBLE_OPEN | |
| 2522 | |
| 2523 int | |
| 2524 /* VARARGS 2 */ | |
| 2525 sys_open (path, oflag, mode) | |
| 2526 char *path; | |
| 2527 int oflag, mode; | |
| 2528 { | |
| 2529 register int rtnval; | |
| 2530 | |
| 2531 while ((rtnval = open (path, oflag, mode)) == -1 | |
| 2532 && (errno == EINTR)); | |
| 2533 return (rtnval); | |
| 2534 } | |
| 2535 | |
| 2536 #endif /* INTERRUPTIBLE_OPEN */ | |
| 2537 | |
| 2538 #ifdef INTERRUPTIBLE_CLOSE | |
| 2539 | |
| 2540 sys_close (fd) | |
| 2541 int fd; | |
| 2542 { | |
| 2543 register int rtnval; | |
| 2544 | |
| 2545 while ((rtnval = close (fd)) == -1 | |
| 2546 && (errno == EINTR)); | |
| 2547 return rtnval; | |
| 2548 } | |
| 2549 | |
| 2550 #endif /* INTERRUPTIBLE_CLOSE */ | |
| 2551 | |
| 2552 #ifdef INTERRUPTIBLE_IO | |
| 2553 | |
| 2554 int | |
| 2555 sys_read (fildes, buf, nbyte) | |
| 2556 int fildes; | |
| 2557 char *buf; | |
| 2558 unsigned int nbyte; | |
| 2559 { | |
| 2560 register int rtnval; | |
| 2561 | |
| 2562 while ((rtnval = read (fildes, buf, nbyte)) == -1 | |
| 2563 && (errno == EINTR)); | |
| 2564 return (rtnval); | |
| 2565 } | |
| 2566 | |
| 2567 int | |
| 2568 sys_write (fildes, buf, nbyte) | |
| 2569 int fildes; | |
| 2570 char *buf; | |
| 2571 unsigned int nbyte; | |
| 2572 { | |
| 2573 register int rtnval; | |
| 2574 | |
| 2575 while ((rtnval = write (fildes, buf, nbyte)) == -1 | |
| 2576 && (errno == EINTR)); | |
| 2577 return (rtnval); | |
| 2578 } | |
| 2579 | |
| 2580 #endif /* INTERRUPTIBLE_IO */ | |
| 2581 | |
| 2582 #ifdef USG | |
| 2583 /* | |
| 2584 * All of the following are for USG. | |
| 2585 * | |
| 2586 * On USG systems the system calls are INTERRUPTIBLE by signals | |
| 2587 * that the user program has elected to catch. Thus the system call | |
| 2588 * must be retried in these cases. To handle this without massive | |
| 2589 * changes in the source code, we remap the standard system call names | |
| 2590 * to names for our own functions in sysdep.c that do the system call | |
| 2591 * with retries. Actually, for portability reasons, it is good | |
| 2592 * programming practice, as this example shows, to limit all actual | |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3559
diff
changeset
|
2593 * system calls to a single occurrence in the source. Sure, this |
| 491 | 2594 * adds an extra level of function call overhead but it is almost |
| 2595 * always negligible. Fred Fish, Unisoft Systems Inc. | |
| 2596 */ | |
| 2597 | |
|
2913
409c1022bad5
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2873
diff
changeset
|
2598 #ifndef HAVE_SYS_SIGLIST |
| 491 | 2599 char *sys_siglist[NSIG + 1] = |
| 2600 { | |
| 2601 #ifdef AIX | |
| 2602 /* AIX has changed the signals a bit */ | |
| 2603 "bogus signal", /* 0 */ | |
| 2604 "hangup", /* 1 SIGHUP */ | |
| 2605 "interrupt", /* 2 SIGINT */ | |
| 2606 "quit", /* 3 SIGQUIT */ | |
| 2607 "illegal instruction", /* 4 SIGILL */ | |
| 2608 "trace trap", /* 5 SIGTRAP */ | |
| 2609 "IOT instruction", /* 6 SIGIOT */ | |
| 2610 "crash likely", /* 7 SIGDANGER */ | |
| 2611 "floating point exception", /* 8 SIGFPE */ | |
| 2612 "kill", /* 9 SIGKILL */ | |
| 2613 "bus error", /* 10 SIGBUS */ | |
| 2614 "segmentation violation", /* 11 SIGSEGV */ | |
| 2615 "bad argument to system call", /* 12 SIGSYS */ | |
| 2616 "write on a pipe with no one to read it", /* 13 SIGPIPE */ | |
| 2617 "alarm clock", /* 14 SIGALRM */ | |
| 2618 "software termination signum", /* 15 SIGTERM */ | |
| 2619 "user defined signal 1", /* 16 SIGUSR1 */ | |
| 2620 "user defined signal 2", /* 17 SIGUSR2 */ | |
| 2621 "death of a child", /* 18 SIGCLD */ | |
| 2622 "power-fail restart", /* 19 SIGPWR */ | |
| 2623 "bogus signal", /* 20 */ | |
| 2624 "bogus signal", /* 21 */ | |
| 2625 "bogus signal", /* 22 */ | |
| 2626 "bogus signal", /* 23 */ | |
| 2627 "bogus signal", /* 24 */ | |
| 2628 "LAN I/O interrupt", /* 25 SIGAIO */ | |
| 2629 "PTY I/O interrupt", /* 26 SIGPTY */ | |
| 2630 "I/O intervention required", /* 27 SIGIOINT */ | |
| 2631 "HFT grant", /* 28 SIGGRANT */ | |
| 2632 "HFT retract", /* 29 SIGRETRACT */ | |
| 2633 "HFT sound done", /* 30 SIGSOUND */ | |
| 2634 "HFT input ready", /* 31 SIGMSG */ | |
| 2635 #else /* not AIX */ | |
| 2636 "bogus signal", /* 0 */ | |
| 2637 "hangup", /* 1 SIGHUP */ | |
| 2638 "interrupt", /* 2 SIGINT */ | |
| 2639 "quit", /* 3 SIGQUIT */ | |
| 2640 "illegal instruction", /* 4 SIGILL */ | |
| 2641 "trace trap", /* 5 SIGTRAP */ | |
| 2642 "IOT instruction", /* 6 SIGIOT */ | |
| 2643 "EMT instruction", /* 7 SIGEMT */ | |
| 2644 "floating point exception", /* 8 SIGFPE */ | |
| 2645 "kill", /* 9 SIGKILL */ | |
| 2646 "bus error", /* 10 SIGBUS */ | |
| 2647 "segmentation violation", /* 11 SIGSEGV */ | |
| 2648 "bad argument to system call", /* 12 SIGSYS */ | |
| 2649 "write on a pipe with no one to read it", /* 13 SIGPIPE */ | |
| 2650 "alarm clock", /* 14 SIGALRM */ | |
| 2651 "software termination signum", /* 15 SIGTERM */ | |
| 2652 "user defined signal 1", /* 16 SIGUSR1 */ | |
| 2653 "user defined signal 2", /* 17 SIGUSR2 */ | |
| 2654 "death of a child", /* 18 SIGCLD */ | |
| 2655 "power-fail restart", /* 19 SIGPWR */ | |
| 2656 #endif /* not AIX */ | |
| 2657 0 | |
| 2658 }; | |
|
3268
760a82a8767e
* sysdep.c (sys_siglist): Comment out #endif trailer.
Jim Blandy <jimb@redhat.com>
parents:
3239
diff
changeset
|
2659 #endif /* HAVE_SYS_SIGLIST */ |
| 491 | 2660 |
| 2661 /* | |
| 2662 * Warning, this function may not duplicate 4.2 action properly | |
| 2663 * under error conditions. | |
| 2664 */ | |
| 2665 | |
| 2666 #ifndef MAXPATHLEN | |
| 2667 /* In 4.1, param.h fails to define this. */ | |
| 2668 #define MAXPATHLEN 1024 | |
| 2669 #endif | |
| 2670 | |
| 2671 #ifndef HAVE_GETWD | |
| 2672 | |
| 2673 char * | |
| 2674 getwd (pathname) | |
| 2675 char *pathname; | |
| 2676 { | |
| 2677 char *npath, *spath; | |
| 2678 extern char *getcwd (); | |
| 2679 | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2332
diff
changeset
|
2680 BLOCK_INPUT; /* getcwd uses malloc */ |
| 491 | 2681 spath = npath = getcwd ((char *) 0, MAXPATHLEN); |
| 2682 /* On Altos 3068, getcwd can return @hostname/dir, so discard | |
| 2683 up to first slash. Should be harmless on other systems. */ | |
| 2684 while (*npath && *npath != '/') | |
| 2685 npath++; | |
| 2686 strcpy (pathname, npath); | |
| 2687 free (spath); /* getcwd uses malloc */ | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2332
diff
changeset
|
2688 UNBLOCK_INPUT; |
| 491 | 2689 return pathname; |
| 2690 } | |
| 2691 | |
| 2692 #endif /* HAVE_GETWD */ | |
| 2693 | |
| 2694 /* | |
| 2695 * Emulate rename using unlink/link. Note that this is | |
| 2696 * only partially correct. Also, doesn't enforce restriction | |
| 2697 * that files be of same type (regular->regular, dir->dir, etc). | |
| 2698 */ | |
| 2699 | |
| 621 | 2700 #ifndef HAVE_RENAME |
| 2701 | |
| 491 | 2702 rename (from, to) |
|
3842
e8bcf96f1418
* sysdep.c (rename): Make arguments const. autoconf #defines
Jim Blandy <jimb@redhat.com>
parents:
3826
diff
changeset
|
2703 const char *from; |
|
e8bcf96f1418
* sysdep.c (rename): Make arguments const. autoconf #defines
Jim Blandy <jimb@redhat.com>
parents:
3826
diff
changeset
|
2704 const char *to; |
| 491 | 2705 { |
| 2706 if (access (from, 0) == 0) | |
| 2707 { | |
| 2708 unlink (to); | |
| 2709 if (link (from, to) == 0) | |
| 2710 if (unlink (from) == 0) | |
| 2711 return (0); | |
| 2712 } | |
| 2713 return (-1); | |
| 2714 } | |
| 2715 | |
| 621 | 2716 #endif |
| 2717 | |
| 491 | 2718 #ifndef HAVE_VFORK |
| 2719 | |
| 2720 /* | |
| 2721 * Substitute fork for vfork on USG flavors. | |
| 2722 */ | |
| 2723 | |
| 2724 vfork () | |
| 2725 { | |
| 2726 return (fork ()); | |
| 2727 } | |
| 2728 | |
| 2729 #endif /* not HAVE_VFORK */ | |
| 2730 | |
| 2731 #ifdef MISSING_UTIMES | |
| 2732 | |
| 2733 /* HPUX (among others) sets HAVE_TIMEVAL but does not implement utimes. */ | |
| 2734 | |
| 2735 utimes () | |
| 2736 { | |
| 2737 } | |
| 2738 #endif | |
| 2739 | |
| 2740 #ifdef IRIS_UTIME | |
| 2741 | |
| 2742 /* The IRIS (3.5) has timevals, but uses sys V utime, and doesn't have the | |
| 2743 utimbuf structure defined anywhere but in the man page. */ | |
| 2744 | |
| 2745 struct utimbuf | |
| 2746 { | |
| 2747 long actime; | |
| 2748 long modtime; | |
| 2749 }; | |
| 2750 | |
| 2751 utimes (name, tvp) | |
| 2752 char *name; | |
| 2753 struct timeval tvp[]; | |
| 2754 { | |
| 2755 struct utimbuf utb; | |
| 2756 utb.actime = tvp[0].tv_sec; | |
| 2757 utb.modtime = tvp[1].tv_sec; | |
| 2758 utime (name, &utb); | |
| 2759 } | |
| 2760 #endif /* IRIS_UTIME */ | |
| 2761 | |
| 2762 | |
| 2763 #ifdef HPUX | |
| 2764 #ifndef HAVE_PERROR | |
| 2765 | |
| 2766 /* HPUX curses library references perror, but as far as we know | |
| 2767 it won't be called. Anyway this definition will do for now. */ | |
| 2768 | |
| 2769 perror () | |
| 2770 { | |
| 2771 } | |
| 2772 | |
| 2773 #endif /* not HAVE_PERROR */ | |
| 2774 #endif /* HPUX */ | |
| 2775 | |
| 2776 #ifndef HAVE_DUP2 | |
| 2777 | |
| 2778 /* | |
| 2779 * Emulate BSD dup2. First close newd if it already exists. | |
| 2780 * Then, attempt to dup oldd. If not successful, call dup2 recursively | |
| 2781 * until we are, then close the unsuccessful ones. | |
| 2782 */ | |
| 2783 | |
| 2784 dup2 (oldd, newd) | |
| 2785 int oldd; | |
| 2786 int newd; | |
| 2787 { | |
| 2788 register int fd, ret; | |
| 2789 | |
| 2790 sys_close (newd); | |
| 2791 | |
| 2792 #ifdef F_DUPFD | |
| 2793 fd = fcntl (oldd, F_DUPFD, newd); | |
| 2794 if (fd != newd) | |
| 2795 error ("can't dup2 (%i,%i) : %s", oldd, newd, sys_errlist[errno]); | |
| 2796 #else | |
| 2797 fd = dup (old); | |
| 2798 if (fd == -1) | |
| 2799 return -1; | |
| 2800 if (fd == new) | |
| 2801 return new; | |
| 2802 ret = dup2 (old,new); | |
| 2803 sys_close (fd); | |
| 2804 return ret; | |
| 2805 #endif | |
| 2806 } | |
| 2807 | |
| 2808 #endif /* not HAVE_DUP2 */ | |
| 2809 | |
| 2810 /* | |
| 2811 * Gettimeofday. Simulate as much as possible. Only accurate | |
| 2812 * to nearest second. Emacs doesn't use tzp so ignore it for now. | |
| 2813 * Only needed when subprocesses are defined. | |
| 2814 */ | |
| 2815 | |
| 2816 #ifdef subprocesses | |
| 2817 #ifndef VMS | |
| 2818 #ifndef HAVE_GETTIMEOFDAY | |
| 2819 #ifdef HAVE_TIMEVAL | |
| 2820 | |
| 2821 /* ARGSUSED */ | |
| 2822 gettimeofday (tp, tzp) | |
| 2823 struct timeval *tp; | |
| 2824 struct timezone *tzp; | |
| 2825 { | |
| 2826 extern long time (); | |
| 2827 | |
| 2828 tp->tv_sec = time ((long *)0); | |
| 2829 tp->tv_usec = 0; | |
|
3239
2e4882a32671
(gettimeofday): Don't store in *tzp if tzp is 0.
Richard M. Stallman <rms@gnu.org>
parents:
3157
diff
changeset
|
2830 if (tzp != 0) |
|
2e4882a32671
(gettimeofday): Don't store in *tzp if tzp is 0.
Richard M. Stallman <rms@gnu.org>
parents:
3157
diff
changeset
|
2831 tzp->tz_minuteswest = -1; |
| 491 | 2832 } |
| 2833 | |
| 2834 #endif | |
| 2835 #endif | |
| 2836 #endif | |
| 2837 #endif /* subprocess && !HAVE_GETTIMEOFDAY && HAVE_TIMEVAL && !VMS */ | |
| 2838 | |
| 2839 /* | |
| 2840 * This function will go away as soon as all the stubs fixed. (fnf) | |
| 2841 */ | |
| 2842 | |
| 2843 croak (badfunc) | |
| 2844 char *badfunc; | |
| 2845 { | |
| 2846 printf ("%s not yet implemented\r\n", badfunc); | |
| 2847 reset_sys_modes (); | |
| 2848 exit (1); | |
| 2849 } | |
| 2850 | |
| 2851 #endif /* USG */ | |
| 2852 | |
| 2853 #ifdef DGUX | |
| 2854 | |
| 2855 char *sys_siglist[NSIG + 1] = | |
| 2856 { | |
| 2857 "null signal", /* 0 SIGNULL */ | |
| 2858 "hangup", /* 1 SIGHUP */ | |
| 2859 "interrupt", /* 2 SIGINT */ | |
| 2860 "quit", /* 3 SIGQUIT */ | |
| 2861 "illegal instruction", /* 4 SIGILL */ | |
| 2862 "trace trap", /* 5 SIGTRAP */ | |
| 2863 "abort termination", /* 6 SIGABRT */ | |
| 2864 "SIGEMT", /* 7 SIGEMT */ | |
| 2865 "floating point exception", /* 8 SIGFPE */ | |
| 2866 "kill", /* 9 SIGKILL */ | |
| 2867 "bus error", /* 10 SIGBUS */ | |
| 2868 "segmentation violation", /* 11 SIGSEGV */ | |
| 2869 "bad argument to system call", /* 12 SIGSYS */ | |
| 2870 "write on a pipe with no reader", /* 13 SIGPIPE */ | |
| 2871 "alarm clock", /* 14 SIGALRM */ | |
| 2872 "software termination signal", /* 15 SIGTERM */ | |
| 2873 "user defined signal 1", /* 16 SIGUSR1 */ | |
| 2874 "user defined signal 2", /* 17 SIGUSR2 */ | |
| 2875 "child stopped or terminated", /* 18 SIGCLD */ | |
| 2876 "power-fail restart", /* 19 SIGPWR */ | |
| 2877 "window size changed", /* 20 SIGWINCH */ | |
| 2878 "undefined", /* 21 */ | |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3559
diff
changeset
|
2879 "pollable event occurred", /* 22 SIGPOLL */ |
| 491 | 2880 "sendable stop signal not from tty", /* 23 SIGSTOP */ |
| 2881 "stop signal from tty", /* 24 SIGSTP */ | |
| 2882 "continue a stopped process", /* 25 SIGCONT */ | |
| 2883 "attempted background tty read", /* 26 SIGTTIN */ | |
| 2884 "attempted background tty write", /* 27 SIGTTOU */ | |
| 2885 "undefined", /* 28 */ | |
| 2886 "undefined", /* 29 */ | |
| 2887 "undefined", /* 30 */ | |
| 2888 "undefined", /* 31 */ | |
| 2889 "undefined", /* 32 */ | |
| 2890 "socket (TCP/IP) urgent data arrival", /* 33 SIGURG */ | |
| 2891 "I/O is possible", /* 34 SIGIO */ | |
| 2892 "exceeded cpu time limit", /* 35 SIGXCPU */ | |
| 2893 "exceeded file size limit", /* 36 SIGXFSZ */ | |
| 2894 "virtual time alarm", /* 37 SIGVTALRM */ | |
| 2895 "profiling time alarm", /* 38 SIGPROF */ | |
| 2896 "undefined", /* 39 */ | |
| 2897 "file record locks revoked", /* 40 SIGLOST */ | |
| 2898 "undefined", /* 41 */ | |
| 2899 "undefined", /* 42 */ | |
| 2900 "undefined", /* 43 */ | |
| 2901 "undefined", /* 44 */ | |
| 2902 "undefined", /* 45 */ | |
| 2903 "undefined", /* 46 */ | |
| 2904 "undefined", /* 47 */ | |
| 2905 "undefined", /* 48 */ | |
| 2906 "undefined", /* 49 */ | |
| 2907 "undefined", /* 50 */ | |
| 2908 "undefined", /* 51 */ | |
| 2909 "undefined", /* 52 */ | |
| 2910 "undefined", /* 53 */ | |
| 2911 "undefined", /* 54 */ | |
| 2912 "undefined", /* 55 */ | |
| 2913 "undefined", /* 56 */ | |
| 2914 "undefined", /* 57 */ | |
| 2915 "undefined", /* 58 */ | |
| 2916 "undefined", /* 59 */ | |
| 2917 "undefined", /* 60 */ | |
| 2918 "undefined", /* 61 */ | |
| 2919 "undefined", /* 62 */ | |
| 2920 "undefined", /* 63 */ | |
| 2921 "notification message in mess. queue", /* 64 SIGDGNOTIFY */ | |
| 2922 0 | |
| 2923 }; | |
| 2924 | |
| 2925 #endif /* DGUX */ | |
| 2926 | |
| 2927 /* Directory routines for systems that don't have them. */ | |
| 2928 | |
| 2929 #ifdef SYSV_SYSTEM_DIR | |
| 2930 | |
| 2931 #include <dirent.h> | |
| 2932 | |
|
3797
68807e370e9d
Changes for correct pgrp behavior; approach suggested by Bob
Jim Blandy <jimb@redhat.com>
parents:
3760
diff
changeset
|
2933 #ifndef HAVE_CLOSEDIR |
| 491 | 2934 int |
| 2935 closedir (dirp) | |
| 2936 register DIR *dirp; /* stream from opendir */ | |
| 2937 { | |
| 2938 sys_close (dirp->dd_fd); | |
|
3760
e0be9df19ee1
* sysdep.c (closedir): Don't free directory buffer if it looks
Jim Blandy <jimb@redhat.com>
parents:
3759
diff
changeset
|
2939 |
|
3797
68807e370e9d
Changes for correct pgrp behavior; approach suggested by Bob
Jim Blandy <jimb@redhat.com>
parents:
3760
diff
changeset
|
2940 /* Some systems (like Solaris) allocate the buffer and the DIR all |
|
68807e370e9d
Changes for correct pgrp behavior; approach suggested by Bob
Jim Blandy <jimb@redhat.com>
parents:
3760
diff
changeset
|
2941 in one block. Why in the world are we freeing this ourselves |
|
68807e370e9d
Changes for correct pgrp behavior; approach suggested by Bob
Jim Blandy <jimb@redhat.com>
parents:
3760
diff
changeset
|
2942 anyway? */ |
|
68807e370e9d
Changes for correct pgrp behavior; approach suggested by Bob
Jim Blandy <jimb@redhat.com>
parents:
3760
diff
changeset
|
2943 #if ! (defined (sun) && defined (USG5_4)) |
|
68807e370e9d
Changes for correct pgrp behavior; approach suggested by Bob
Jim Blandy <jimb@redhat.com>
parents:
3760
diff
changeset
|
2944 xfree ((char *) dirp->dd_buf); /* directory block defined in <dirent.h> */ |
|
68807e370e9d
Changes for correct pgrp behavior; approach suggested by Bob
Jim Blandy <jimb@redhat.com>
parents:
3760
diff
changeset
|
2945 #endif |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2332
diff
changeset
|
2946 xfree ((char *) dirp); |
| 491 | 2947 } |
|
3797
68807e370e9d
Changes for correct pgrp behavior; approach suggested by Bob
Jim Blandy <jimb@redhat.com>
parents:
3760
diff
changeset
|
2948 #endif /* not HAVE_CLOSEDIR */ |
| 491 | 2949 #endif /* SYSV_SYSTEM_DIR */ |
| 2950 | |
| 2951 #ifdef NONSYSTEM_DIR_LIBRARY | |
| 2952 | |
| 2953 DIR * | |
| 2954 opendir (filename) | |
| 2955 char *filename; /* name of directory */ | |
| 2956 { | |
| 2957 register DIR *dirp; /* -> malloc'ed storage */ | |
| 2958 register int fd; /* file descriptor for read */ | |
| 2959 struct stat sbuf; /* result of fstat */ | |
| 2960 | |
| 2961 fd = sys_open (filename, 0); | |
| 2962 if (fd < 0) | |
| 2963 return 0; | |
| 2964 | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2332
diff
changeset
|
2965 BLOCK_INPUT; |
| 491 | 2966 if (fstat (fd, &sbuf) < 0 |
| 2967 || (sbuf.st_mode & S_IFMT) != S_IFDIR | |
| 2968 || (dirp = (DIR *) malloc (sizeof (DIR))) == 0) | |
| 2969 { | |
| 2970 sys_close (fd); | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2332
diff
changeset
|
2971 UNBLOCK_INPUT; |
| 491 | 2972 return 0; /* bad luck today */ |
| 2973 } | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2332
diff
changeset
|
2974 UNBLOCK_INPUT; |
| 491 | 2975 |
| 2976 dirp->dd_fd = fd; | |
| 2977 dirp->dd_loc = dirp->dd_size = 0; /* refill needed */ | |
| 2978 | |
| 2979 return dirp; | |
| 2980 } | |
| 2981 | |
| 2982 void | |
| 2983 closedir (dirp) | |
| 2984 register DIR *dirp; /* stream from opendir */ | |
| 2985 { | |
| 2986 sys_close (dirp->dd_fd); | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2332
diff
changeset
|
2987 xfree ((char *) dirp); |
| 491 | 2988 } |
| 2989 | |
| 2990 | |
| 2991 #ifndef VMS | |
| 2992 #define DIRSIZ 14 | |
| 2993 struct olddir | |
| 2994 { | |
| 2995 ino_t od_ino; /* inode */ | |
| 2996 char od_name[DIRSIZ]; /* filename */ | |
| 2997 }; | |
| 2998 #endif /* not VMS */ | |
| 2999 | |
| 3000 struct direct dir_static; /* simulated directory contents */ | |
| 3001 | |
| 3002 /* ARGUSED */ | |
| 3003 struct direct * | |
| 3004 readdir (dirp) | |
| 3005 register DIR *dirp; /* stream from opendir */ | |
| 3006 { | |
| 3007 #ifndef VMS | |
| 3008 register struct olddir *dp; /* -> directory data */ | |
| 3009 #else /* VMS */ | |
| 3010 register struct dir$_name *dp; /* -> directory data */ | |
| 3011 register struct dir$_version *dv; /* -> version data */ | |
| 3012 #endif /* VMS */ | |
| 3013 | |
| 3014 for (; ;) | |
| 3015 { | |
| 3016 if (dirp->dd_loc >= dirp->dd_size) | |
| 3017 dirp->dd_loc = dirp->dd_size = 0; | |
| 3018 | |
| 3019 if (dirp->dd_size == 0 /* refill buffer */ | |
| 3020 && (dirp->dd_size = sys_read (dirp->dd_fd, dirp->dd_buf, DIRBLKSIZ)) <= 0) | |
| 3021 return 0; | |
| 3022 | |
| 3023 #ifndef VMS | |
| 3024 dp = (struct olddir *) &dirp->dd_buf[dirp->dd_loc]; | |
| 3025 dirp->dd_loc += sizeof (struct olddir); | |
| 3026 | |
| 3027 if (dp->od_ino != 0) /* not deleted entry */ | |
| 3028 { | |
| 3029 dir_static.d_ino = dp->od_ino; | |
| 3030 strncpy (dir_static.d_name, dp->od_name, DIRSIZ); | |
| 3031 dir_static.d_name[DIRSIZ] = '\0'; | |
| 3032 dir_static.d_namlen = strlen (dir_static.d_name); | |
| 3033 dir_static.d_reclen = sizeof (struct direct) | |
| 3034 - MAXNAMLEN + 3 | |
| 3035 + dir_static.d_namlen - dir_static.d_namlen % 4; | |
| 3036 return &dir_static; /* -> simulated structure */ | |
| 3037 } | |
| 3038 #else /* VMS */ | |
| 3039 dp = (struct dir$_name *) dirp->dd_buf; | |
| 3040 if (dirp->dd_loc == 0) | |
| 3041 dirp->dd_loc = (dp->dir$b_namecount&1) ? dp->dir$b_namecount + 1 | |
| 3042 : dp->dir$b_namecount; | |
| 3043 dv = (struct dir$_version *)&dp->dir$t_name[dirp->dd_loc]; | |
| 3044 dir_static.d_ino = dv->dir$w_fid_num; | |
| 3045 dir_static.d_namlen = dp->dir$b_namecount; | |
| 3046 dir_static.d_reclen = sizeof (struct direct) | |
| 3047 - MAXNAMLEN + 3 | |
| 3048 + dir_static.d_namlen - dir_static.d_namlen % 4; | |
| 3049 strncpy (dir_static.d_name, dp->dir$t_name, dp->dir$b_namecount); | |
| 3050 dir_static.d_name[dir_static.d_namlen] = '\0'; | |
| 3051 dirp->dd_loc = dirp->dd_size; /* only one record at a time */ | |
| 3052 return &dir_static; | |
| 3053 #endif /* VMS */ | |
| 3054 } | |
| 3055 } | |
| 3056 | |
| 3057 #ifdef VMS | |
| 3058 /* readdirver is just like readdir except it returns all versions of a file | |
| 3059 as separate entries. */ | |
| 3060 | |
| 3061 /* ARGUSED */ | |
| 3062 struct direct * | |
| 3063 readdirver (dirp) | |
| 3064 register DIR *dirp; /* stream from opendir */ | |
| 3065 { | |
| 3066 register struct dir$_name *dp; /* -> directory data */ | |
| 3067 register struct dir$_version *dv; /* -> version data */ | |
| 3068 | |
| 3069 if (dirp->dd_loc >= dirp->dd_size - sizeof (struct dir$_name)) | |
| 3070 dirp->dd_loc = dirp->dd_size = 0; | |
| 3071 | |
| 3072 if (dirp->dd_size == 0 /* refill buffer */ | |
| 3073 && (dirp->dd_size = sys_read (dirp->dd_fd, dirp->dd_buf, DIRBLKSIZ)) <= 0) | |
| 3074 return 0; | |
| 3075 | |
| 3076 dp = (struct dir$_name *) dirp->dd_buf; | |
| 3077 if (dirp->dd_loc == 0) | |
| 3078 dirp->dd_loc = (dp->dir$b_namecount & 1) ? dp->dir$b_namecount + 1 | |
| 3079 : dp->dir$b_namecount; | |
| 3080 dv = (struct dir$_version *) &dp->dir$t_name[dirp->dd_loc]; | |
| 3081 strncpy (dir_static.d_name, dp->dir$t_name, dp->dir$b_namecount); | |
| 3082 sprintf (&dir_static.d_name[dp->dir$b_namecount], ";%d", dv->dir$w_version); | |
| 3083 dir_static.d_namlen = strlen (dir_static.d_name); | |
| 3084 dir_static.d_ino = dv->dir$w_fid_num; | |
| 3085 dir_static.d_reclen = sizeof (struct direct) - MAXNAMLEN + 3 | |
| 3086 + dir_static.d_namlen - dir_static.d_namlen % 4; | |
| 3087 dirp->dd_loc = ((char *) (++dv) - dp->dir$t_name); | |
| 3088 return &dir_static; | |
| 3089 } | |
| 3090 | |
| 3091 #endif /* VMS */ | |
| 3092 | |
| 3093 #endif /* NONSYSTEM_DIR_LIBRARY */ | |
| 3094 | |
| 3095 /* Functions for VMS */ | |
| 3096 #ifdef VMS | |
| 579 | 3097 #include "vms-pwd.h" |
| 491 | 3098 #include <acldef.h> |
| 3099 #include <chpdef.h> | |
| 3100 #include <jpidef.h> | |
| 3101 | |
| 3102 /* Return as a string the VMS error string pertaining to STATUS. | |
| 3103 Reuses the same static buffer each time it is called. */ | |
| 3104 | |
| 3105 char * | |
| 3106 vmserrstr (status) | |
| 3107 int status; /* VMS status code */ | |
| 3108 { | |
| 3109 int bufadr[2]; | |
| 3110 short len; | |
| 3111 static char buf[257]; | |
| 3112 | |
| 3113 bufadr[0] = sizeof buf - 1; | |
| 3114 bufadr[1] = (int) buf; | |
| 3115 if (! (SYS$GETMSG (status, &len, bufadr, 0x1, 0) & 1)) | |
| 3116 return "untranslatable VMS error status"; | |
| 3117 buf[len] = '\0'; | |
| 3118 return buf; | |
| 3119 } | |
| 3120 | |
| 3121 #ifdef access | |
| 3122 #undef access | |
| 3123 | |
| 3124 /* The following is necessary because 'access' emulation by VMS C (2.0) does | |
| 3125 * not work correctly. (It also doesn't work well in version 2.3.) | |
| 3126 */ | |
| 3127 | |
| 3128 #ifdef VMS4_4 | |
| 3129 | |
| 3130 #define DESCRIPTOR(name,string) struct dsc$descriptor_s name = \ | |
| 3131 { strlen (string), DSC$K_DTYPE_T, DSC$K_CLASS_S, string } | |
| 3132 | |
| 3133 typedef union { | |
| 3134 struct { | |
| 3135 unsigned short s_buflen; | |
| 3136 unsigned short s_code; | |
| 3137 char *s_bufadr; | |
| 3138 unsigned short *s_retlenadr; | |
| 3139 } s; | |
| 3140 int end; | |
| 3141 } item; | |
| 3142 #define buflen s.s_buflen | |
| 3143 #define code s.s_code | |
| 3144 #define bufadr s.s_bufadr | |
| 3145 #define retlenadr s.s_retlenadr | |
| 3146 | |
| 3147 #define R_OK 4 /* test for read permission */ | |
| 3148 #define W_OK 2 /* test for write permission */ | |
| 3149 #define X_OK 1 /* test for execute (search) permission */ | |
| 3150 #define F_OK 0 /* test for presence of file */ | |
| 3151 | |
| 3152 int | |
| 3153 sys_access (path, mode) | |
| 3154 char *path; | |
| 3155 int mode; | |
| 3156 { | |
| 3157 static char *user = NULL; | |
| 3158 char dir_fn[512]; | |
| 3159 | |
| 3160 /* translate possible directory spec into .DIR file name, so brain-dead | |
| 3161 * access can treat the directory like a file. */ | |
| 3162 if (directory_file_name (path, dir_fn)) | |
| 3163 path = dir_fn; | |
| 3164 | |
| 3165 if (mode == F_OK) | |
| 3166 return access (path, mode); | |
| 3167 if (user == NULL && (user = (char *) getenv ("USER")) == NULL) | |
| 3168 return -1; | |
| 3169 { | |
| 3170 int stat; | |
| 3171 int flags; | |
| 3172 int acces; | |
| 3173 unsigned short int dummy; | |
| 3174 item itemlst[3]; | |
| 3175 static int constant = ACL$C_FILE; | |
| 3176 DESCRIPTOR (path_desc, path); | |
| 3177 DESCRIPTOR (user_desc, user); | |
| 3178 | |
| 3179 flags = 0; | |
| 3180 acces = 0; | |
| 3181 if ((mode & X_OK) && ((stat = access (path, mode)) < 0 || mode == X_OK)) | |
| 3182 return stat; | |
| 3183 if (mode & R_OK) | |
| 3184 acces |= CHP$M_READ; | |
| 3185 if (mode & W_OK) | |
| 3186 acces |= CHP$M_WRITE; | |
| 3187 itemlst[0].buflen = sizeof (int); | |
| 3188 itemlst[0].code = CHP$_FLAGS; | |
| 3189 itemlst[0].bufadr = (char *) &flags; | |
| 3190 itemlst[0].retlenadr = &dummy; | |
| 3191 itemlst[1].buflen = sizeof (int); | |
| 3192 itemlst[1].code = CHP$_ACCESS; | |
| 3193 itemlst[1].bufadr = (char *) &acces; | |
| 3194 itemlst[1].retlenadr = &dummy; | |
| 3195 itemlst[2].end = CHP$_END; | |
| 3196 stat = SYS$CHECK_ACCESS (&constant, &path_desc, &user_desc, itemlst); | |
| 3197 return stat == SS$_NORMAL ? 0 : -1; | |
| 3198 } | |
| 3199 } | |
| 3200 | |
| 3201 #else /* not VMS4_4 */ | |
| 3202 | |
| 3203 #include <prvdef.h> | |
| 3204 #define ACE$M_WRITE 2 | |
| 3205 #define ACE$C_KEYID 1 | |
| 3206 | |
| 3207 static unsigned short memid, grpid; | |
| 3208 static unsigned int uic; | |
| 3209 | |
| 3210 /* Called from init_sys_modes, so it happens not very often | |
| 3211 but at least each time Emacs is loaded. */ | |
| 3212 sys_access_reinit () | |
| 3213 { | |
| 3214 uic = 0; | |
| 3215 } | |
| 3216 | |
| 3217 int | |
| 3218 sys_access (filename, type) | |
| 3219 char * filename; | |
| 3220 int type; | |
| 3221 { | |
| 3222 struct FAB fab; | |
| 3223 struct XABPRO xab; | |
| 3224 int status, size, i, typecode, acl_controlled; | |
| 3225 unsigned int *aclptr, *aclend, aclbuf[60]; | |
| 3226 union prvdef prvmask; | |
| 3227 | |
| 3228 /* Get UIC and GRP values for protection checking. */ | |
| 3229 if (uic == 0) | |
| 3230 { | |
| 3231 status = LIB$GETJPI (&JPI$_UIC, 0, 0, &uic, 0, 0); | |
| 3232 if (! (status & 1)) | |
| 3233 return -1; | |
| 3234 memid = uic & 0xFFFF; | |
| 3235 grpid = uic >> 16; | |
| 3236 } | |
| 3237 | |
| 3238 if (type != 2) /* not checking write access */ | |
| 3239 return access (filename, type); | |
| 3240 | |
| 3241 /* Check write protection. */ | |
| 3242 | |
| 3243 #define CHECKPRIV(bit) (prvmask.bit) | |
| 3244 #define WRITEABLE(field) (! ((xab.xab$w_pro >> field) & XAB$M_NOWRITE)) | |
| 3245 | |
| 3246 /* Find privilege bits */ | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3247 status = SYS$SETPRV (0, 0, 0, prvmask); |
| 491 | 3248 if (! (status & 1)) |
| 3249 error ("Unable to find privileges: %s", vmserrstr (status)); | |
| 3250 if (CHECKPRIV (PRV$V_BYPASS)) | |
| 3251 return 0; /* BYPASS enabled */ | |
| 3252 fab = cc$rms_fab; | |
| 3253 fab.fab$b_fac = FAB$M_GET; | |
| 3254 fab.fab$l_fna = filename; | |
| 3255 fab.fab$b_fns = strlen (filename); | |
| 3256 fab.fab$l_xab = &xab; | |
| 3257 xab = cc$rms_xabpro; | |
| 3258 xab.xab$l_aclbuf = aclbuf; | |
| 3259 xab.xab$w_aclsiz = sizeof (aclbuf); | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3260 status = SYS$OPEN (&fab, 0, 0); |
| 491 | 3261 if (! (status & 1)) |
| 3262 return -1; | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3263 SYS$CLOSE (&fab, 0, 0); |
| 491 | 3264 /* Check system access */ |
| 3265 if (CHECKPRIV (PRV$V_SYSPRV) && WRITEABLE (XAB$V_SYS)) | |
| 3266 return 0; | |
| 3267 /* Check ACL entries, if any */ | |
| 3268 acl_controlled = 0; | |
| 3269 if (xab.xab$w_acllen > 0) | |
| 3270 { | |
| 3271 aclptr = aclbuf; | |
| 3272 aclend = &aclbuf[xab.xab$w_acllen / 4]; | |
| 3273 while (*aclptr && aclptr < aclend) | |
| 3274 { | |
| 3275 size = (*aclptr & 0xff) / 4; | |
| 3276 typecode = (*aclptr >> 8) & 0xff; | |
| 3277 if (typecode == ACE$C_KEYID) | |
| 3278 for (i = size - 1; i > 1; i--) | |
| 3279 if (aclptr[i] == uic) | |
| 3280 { | |
| 3281 acl_controlled = 1; | |
| 3282 if (aclptr[1] & ACE$M_WRITE) | |
| 3283 return 0; /* Write access through ACL */ | |
| 3284 } | |
| 3285 aclptr = &aclptr[size]; | |
| 3286 } | |
| 3287 if (acl_controlled) /* ACL specified, prohibits write access */ | |
| 3288 return -1; | |
| 3289 } | |
| 3290 /* No ACL entries specified, check normal protection */ | |
| 3291 if (WRITEABLE (XAB$V_WLD)) /* World writeable */ | |
| 3292 return 0; | |
| 3293 if (WRITEABLE (XAB$V_GRP) && | |
| 3294 (unsigned short) (xab.xab$l_uic >> 16) == grpid) | |
| 3295 return 0; /* Group writeable */ | |
| 3296 if (WRITEABLE (XAB$V_OWN) && | |
| 3297 (xab.xab$l_uic & 0xFFFF) == memid) | |
| 3298 return 0; /* Owner writeable */ | |
| 3299 | |
| 3300 return -1; /* Not writeable */ | |
| 3301 } | |
| 3302 #endif /* not VMS4_4 */ | |
| 3303 #endif /* access */ | |
| 3304 | |
| 3305 static char vtbuf[NAM$C_MAXRSS+1]; | |
| 3306 | |
| 3307 /* translate a vms file spec to a unix path */ | |
| 3308 char * | |
| 3309 sys_translate_vms (vfile) | |
| 3310 char * vfile; | |
| 3311 { | |
| 3312 char * p; | |
| 3313 char * targ; | |
| 3314 | |
| 3315 if (!vfile) | |
| 3316 return 0; | |
| 3317 | |
| 3318 targ = vtbuf; | |
| 3319 | |
| 3320 /* leading device or logical name is a root directory */ | |
| 3321 if (p = strchr (vfile, ':')) | |
| 3322 { | |
| 3323 *targ++ = '/'; | |
| 3324 while (vfile < p) | |
| 3325 *targ++ = *vfile++; | |
| 3326 vfile++; | |
| 3327 *targ++ = '/'; | |
| 3328 } | |
| 3329 p = vfile; | |
| 3330 if (*p == '[' || *p == '<') | |
| 3331 { | |
| 3332 while (*++vfile != *p + 2) | |
| 3333 switch (*vfile) | |
| 3334 { | |
| 3335 case '.': | |
| 3336 if (vfile[-1] == *p) | |
| 3337 *targ++ = '.'; | |
| 3338 *targ++ = '/'; | |
| 3339 break; | |
| 3340 | |
| 3341 case '-': | |
| 3342 *targ++ = '.'; | |
| 3343 *targ++ = '.'; | |
| 3344 break; | |
| 3345 | |
| 3346 default: | |
| 3347 *targ++ = *vfile; | |
| 3348 break; | |
| 3349 } | |
| 3350 vfile++; | |
| 3351 *targ++ = '/'; | |
| 3352 } | |
| 3353 while (*vfile) | |
| 3354 *targ++ = *vfile++; | |
| 3355 | |
| 3356 return vtbuf; | |
| 3357 } | |
| 3358 | |
| 3359 static char utbuf[NAM$C_MAXRSS+1]; | |
| 3360 | |
| 3361 /* translate a unix path to a VMS file spec */ | |
| 3362 char * | |
| 3363 sys_translate_unix (ufile) | |
| 3364 char * ufile; | |
| 3365 { | |
| 3366 int slash_seen = 0; | |
| 3367 char *p; | |
| 3368 char * targ; | |
| 3369 | |
| 3370 if (!ufile) | |
| 3371 return 0; | |
| 3372 | |
| 3373 targ = utbuf; | |
| 3374 | |
| 3375 if (*ufile == '/') | |
| 3376 { | |
| 3377 ufile++; | |
| 3378 } | |
| 3379 | |
| 3380 while (*ufile) | |
| 3381 { | |
| 3382 switch (*ufile) | |
| 3383 { | |
| 3384 case '/': | |
| 3385 if (slash_seen) | |
| 3386 if (index (&ufile[1], '/')) | |
| 3387 *targ++ = '.'; | |
| 3388 else | |
| 3389 *targ++ = ']'; | |
| 3390 else | |
| 3391 { | |
| 3392 *targ++ = ':'; | |
| 3393 if (index (&ufile[1], '/')) | |
| 3394 *targ++ = '['; | |
| 3395 slash_seen = 1; | |
| 3396 } | |
| 3397 break; | |
| 3398 | |
| 3399 case '.': | |
| 3400 if (strncmp (ufile, "./", 2) == 0) | |
| 3401 { | |
| 3402 if (!slash_seen) | |
| 3403 { | |
| 3404 *targ++ = '['; | |
| 3405 slash_seen = 1; | |
| 3406 } | |
| 3407 ufile++; /* skip the dot */ | |
| 3408 if (index (&ufile[1], '/')) | |
| 3409 *targ++ = '.'; | |
| 3410 else | |
| 3411 *targ++ = ']'; | |
| 3412 } | |
| 3413 else if (strncmp (ufile, "../", 3) == 0) | |
| 3414 { | |
| 3415 if (!slash_seen) | |
| 3416 { | |
| 3417 *targ++ = '['; | |
| 3418 slash_seen = 1; | |
| 3419 } | |
| 3420 *targ++ = '-'; | |
| 3421 ufile += 2; /* skip the dots */ | |
| 3422 if (index (&ufile[1], '/')) | |
| 3423 *targ++ = '.'; | |
| 3424 else | |
| 3425 *targ++ = ']'; | |
| 3426 } | |
| 3427 else | |
| 3428 *targ++ = *ufile; | |
| 3429 break; | |
| 3430 | |
| 3431 default: | |
| 3432 *targ++ = *ufile; | |
| 3433 break; | |
| 3434 } | |
| 3435 ufile++; | |
| 3436 } | |
| 3437 *targ = '\0'; | |
| 3438 | |
| 3439 return utbuf; | |
| 3440 } | |
| 3441 | |
| 3442 char * | |
| 3443 getwd (pathname) | |
| 3444 char *pathname; | |
| 3445 { | |
| 3446 char *ptr; | |
|
2264
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
3447 extern char *getcwd (); |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
3448 |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
3449 #define MAXPATHLEN 1024 |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
3450 |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2332
diff
changeset
|
3451 ptr = xmalloc (MAXPATHLEN); |
|
2264
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
3452 getcwd (ptr, MAXPATHLEN); |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
3453 strcpy (pathname, ptr); |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2332
diff
changeset
|
3454 xfree (ptr); |
|
2264
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
3455 |
|
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2121
diff
changeset
|
3456 return pathname; |
| 491 | 3457 } |
| 3458 | |
| 3459 getppid () | |
| 3460 { | |
| 3461 long item_code = JPI$_OWNER; | |
| 3462 unsigned long parent_id; | |
| 3463 int status; | |
| 3464 | |
| 3465 if (((status = LIB$GETJPI (&item_code, 0, 0, &parent_id)) & 1) == 0) | |
| 3466 { | |
| 3467 errno = EVMSERR; | |
| 3468 vaxc$errno = status; | |
| 3469 return -1; | |
| 3470 } | |
| 3471 return parent_id; | |
| 3472 } | |
| 3473 | |
| 3474 #undef getuid | |
| 3475 unsigned | |
| 3476 sys_getuid () | |
| 3477 { | |
| 3478 return (getgid () << 16) | getuid (); | |
| 3479 } | |
| 3480 | |
| 3481 int | |
| 3482 sys_read (fildes, buf, nbyte) | |
| 3483 int fildes; | |
| 3484 char *buf; | |
| 3485 unsigned int nbyte; | |
| 3486 { | |
| 3487 return read (fildes, buf, (nbyte < MAXIOSIZE ? nbyte : MAXIOSIZE)); | |
| 3488 } | |
| 3489 | |
| 3490 #if 0 | |
| 3491 int | |
| 3492 sys_write (fildes, buf, nbyte) | |
| 3493 int fildes; | |
| 3494 char *buf; | |
| 3495 unsigned int nbyte; | |
| 3496 { | |
| 3497 register int nwrote, rtnval = 0; | |
| 3498 | |
| 3499 while (nbyte > MAXIOSIZE && (nwrote = write (fildes, buf, MAXIOSIZE)) > 0) { | |
| 3500 nbyte -= nwrote; | |
| 3501 buf += nwrote; | |
| 3502 rtnval += nwrote; | |
| 3503 } | |
| 3504 if (nwrote < 0) | |
| 3505 return rtnval ? rtnval : -1; | |
| 3506 if ((nwrote = write (fildes, buf, nbyte)) < 0) | |
| 3507 return rtnval ? rtnval : -1; | |
| 3508 return (rtnval + nwrote); | |
| 3509 } | |
| 3510 #endif /* 0 */ | |
| 3511 | |
| 3512 /* | |
| 3513 * VAX/VMS VAX C RTL really loses. It insists that records | |
| 3514 * end with a newline (carriage return) character, and if they | |
| 3515 * don't it adds one (nice of it isn't it!) | |
| 3516 * | |
| 3517 * Thus we do this stupidity below. | |
| 3518 */ | |
| 3519 | |
| 3520 int | |
| 3521 sys_write (fildes, buf, nbytes) | |
| 3522 int fildes; | |
| 3523 char *buf; | |
| 3524 unsigned int nbytes; | |
| 3525 { | |
| 3526 register char *p; | |
| 3527 register char *e; | |
| 525 | 3528 int sum = 0; |
| 3529 struct stat st; | |
| 3530 | |
| 3531 fstat (fildes, &st); | |
| 491 | 3532 p = buf; |
| 3533 while (nbytes > 0) | |
| 3534 { | |
| 525 | 3535 int len, retval; |
| 3536 | |
| 3537 /* Handle fixed-length files with carriage control. */ | |
| 3538 if (st.st_fab_rfm == FAB$C_FIX | |
| 3539 && ((st.st_fab_rat & (FAB$M_FTN | FAB$M_CR)) != 0)) | |
| 3540 { | |
| 3541 len = st.st_fab_mrs; | |
| 3542 retval = write (fildes, p, min (len, nbytes)); | |
| 3543 if (retval != len) | |
| 3544 return -1; | |
| 3545 retval++; /* This skips the implied carriage control */ | |
| 3546 } | |
| 3547 else | |
| 3548 { | |
| 3549 e = p + min (MAXIOSIZE, nbytes) - 1; | |
| 3550 while (*e != '\n' && e > p) e--; | |
| 3551 if (p == e) /* Ok.. so here we add a newline... sigh. */ | |
| 3552 e = p + min (MAXIOSIZE, nbytes) - 1; | |
| 3553 len = e + 1 - p; | |
| 3554 retval = write (fildes, p, len); | |
| 3555 if (retval != len) | |
| 3556 return -1; | |
| 3557 } | |
| 3558 p += retval; | |
| 3559 sum += retval; | |
| 491 | 3560 nbytes -= retval; |
| 3561 } | |
| 3562 return sum; | |
| 3563 } | |
| 3564 | |
| 3565 /* Create file NEW copying its attributes from file OLD. If | |
| 3566 OLD is 0 or does not exist, create based on the value of | |
| 3567 vms_stmlf_recfm. */ | |
| 3568 | |
| 3569 /* Protection value the file should ultimately have. | |
| 3570 Set by create_copy_attrs, and use by rename_sansversions. */ | |
| 3571 static unsigned short int fab_final_pro; | |
| 3572 | |
| 3573 int | |
| 3574 creat_copy_attrs (old, new) | |
| 3575 char *old, *new; | |
| 3576 { | |
| 3577 struct FAB fab = cc$rms_fab; | |
| 3578 struct XABPRO xabpro; | |
| 3579 char aclbuf[256]; /* Choice of size is arbitrary. See below. */ | |
| 3580 extern int vms_stmlf_recfm; | |
| 3581 | |
| 3582 if (old) | |
| 3583 { | |
| 3584 fab.fab$b_fac = FAB$M_GET; | |
| 3585 fab.fab$l_fna = old; | |
| 3586 fab.fab$b_fns = strlen (old); | |
| 3587 fab.fab$l_xab = (char *) &xabpro; | |
| 3588 xabpro = cc$rms_xabpro; | |
| 3589 xabpro.xab$l_aclbuf = aclbuf; | |
| 3590 xabpro.xab$w_aclsiz = sizeof aclbuf; | |
| 3591 /* Call $OPEN to fill in the fab & xabpro fields. */ | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3592 if (SYS$OPEN (&fab, 0, 0) & 1) |
| 491 | 3593 { |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3594 SYS$CLOSE (&fab, 0, 0); |
| 491 | 3595 fab.fab$l_alq = 0; /* zero the allocation quantity */ |
| 3596 if (xabpro.xab$w_acllen > 0) | |
| 3597 { | |
| 3598 if (xabpro.xab$w_acllen > sizeof aclbuf) | |
| 3599 /* If the acl buffer was too short, redo open with longer one. | |
| 3600 Wouldn't need to do this if there were some system imposed | |
| 3601 limit on the size of an ACL, but I can't find any such. */ | |
| 3602 { | |
| 3603 xabpro.xab$l_aclbuf = (char *) alloca (xabpro.xab$w_acllen); | |
| 3604 xabpro.xab$w_aclsiz = xabpro.xab$w_acllen; | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3605 if (SYS$OPEN (&fab, 0, 0) & 1) |
|
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3606 SYS$CLOSE (&fab, 0, 0); |
| 491 | 3607 else |
| 3608 old = 0; | |
| 3609 } | |
| 3610 } | |
| 3611 else | |
| 3612 xabpro.xab$l_aclbuf = 0; | |
| 3613 } | |
| 3614 else | |
| 3615 old = 0; | |
| 3616 } | |
| 3617 fab.fab$l_fna = new; | |
| 3618 fab.fab$b_fns = strlen (new); | |
| 3619 if (!old) | |
| 3620 { | |
| 3621 fab.fab$l_xab = 0; | |
| 3622 fab.fab$b_rfm = vms_stmlf_recfm ? FAB$C_STMLF : FAB$C_VAR; | |
| 3623 fab.fab$b_rat = FAB$M_CR; | |
| 3624 } | |
| 3625 | |
| 3626 /* Set the file protections such that we will be able to manipulate | |
| 3627 this file. Once we are done writing and renaming it, we will set | |
| 3628 the protections back. */ | |
| 3629 if (old) | |
| 3630 fab_final_pro = xabpro.xab$w_pro; | |
| 3631 else | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3632 SYS$SETDFPROT (0, &fab_final_pro); |
| 491 | 3633 xabpro.xab$w_pro &= 0xff0f; /* set O:rewd for now. This is set back later. */ |
| 3634 | |
| 3635 /* Create the new file with either default attrs or attrs copied | |
| 3636 from old file. */ | |
| 3637 if (!(SYS$CREATE (&fab, 0, 0) & 1)) | |
| 3638 return -1; | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3639 SYS$CLOSE (&fab, 0, 0); |
| 491 | 3640 /* As this is a "replacement" for creat, return a file descriptor |
| 3641 opened for writing. */ | |
| 3642 return open (new, O_WRONLY); | |
| 3643 } | |
| 3644 | |
| 3645 #ifdef creat | |
| 3646 #undef creat | |
| 3647 #include <varargs.h> | |
| 3648 #ifdef __GNUC__ | |
| 3649 #ifndef va_count | |
| 3650 #define va_count(X) ((X) = *(((int *) &(va_alist)) - 1)) | |
| 3651 #endif | |
| 3652 #endif | |
| 3653 | |
| 3654 sys_creat (va_alist) | |
| 3655 va_dcl | |
| 3656 { | |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3559
diff
changeset
|
3657 va_list list_incrementer; |
| 491 | 3658 char *name; |
| 3659 int mode; | |
| 3660 int rfd; /* related file descriptor */ | |
| 3661 int fd; /* Our new file descriptor */ | |
| 3662 int count; | |
| 3663 struct stat st_buf; | |
| 3664 char rfm[12]; | |
| 3665 char rat[15]; | |
| 3666 char mrs[13]; | |
| 3667 char fsz[13]; | |
| 3668 extern int vms_stmlf_recfm; | |
| 3669 | |
| 3670 va_count (count); | |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3559
diff
changeset
|
3671 va_start (list_incrementer); |
|
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3559
diff
changeset
|
3672 name = va_arg (list_incrementer, char *); |
|
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3559
diff
changeset
|
3673 mode = va_arg (list_incrementer, int); |
| 491 | 3674 if (count > 2) |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3559
diff
changeset
|
3675 rfd = va_arg (list_incrementer, int); |
|
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3559
diff
changeset
|
3676 va_end (list_incrementer); |
| 491 | 3677 if (count > 2) |
| 3678 { | |
| 3679 /* Use information from the related file descriptor to set record | |
| 3680 format of the newly created file. */ | |
| 3681 fstat (rfd, &st_buf); | |
| 3682 switch (st_buf.st_fab_rfm) | |
| 3683 { | |
| 3684 case FAB$C_FIX: | |
| 3685 strcpy (rfm, "rfm = fix"); | |
| 3686 sprintf (mrs, "mrs = %d", st_buf.st_fab_mrs); | |
| 3687 strcpy (rat, "rat = "); | |
| 3688 if (st_buf.st_fab_rat & FAB$M_CR) | |
| 3689 strcat (rat, "cr"); | |
| 3690 else if (st_buf.st_fab_rat & FAB$M_FTN) | |
| 3691 strcat (rat, "ftn"); | |
| 3692 else if (st_buf.st_fab_rat & FAB$M_PRN) | |
| 3693 strcat (rat, "prn"); | |
| 3694 if (st_buf.st_fab_rat & FAB$M_BLK) | |
| 3695 if (st_buf.st_fab_rat & (FAB$M_CR|FAB$M_FTN|FAB$M_PRN)) | |
| 3696 strcat (rat, ", blk"); | |
| 3697 else | |
| 3698 strcat (rat, "blk"); | |
| 3699 return creat (name, 0, rfm, rat, mrs); | |
| 3700 | |
| 3701 case FAB$C_VFC: | |
| 3702 strcpy (rfm, "rfm = vfc"); | |
| 3703 sprintf (fsz, "fsz = %d", st_buf.st_fab_fsz); | |
| 3704 strcpy (rat, "rat = "); | |
| 3705 if (st_buf.st_fab_rat & FAB$M_CR) | |
| 3706 strcat (rat, "cr"); | |
| 3707 else if (st_buf.st_fab_rat & FAB$M_FTN) | |
| 3708 strcat (rat, "ftn"); | |
| 3709 else if (st_buf.st_fab_rat & FAB$M_PRN) | |
| 3710 strcat (rat, "prn"); | |
| 3711 if (st_buf.st_fab_rat & FAB$M_BLK) | |
| 3712 if (st_buf.st_fab_rat & (FAB$M_CR|FAB$M_FTN|FAB$M_PRN)) | |
| 3713 strcat (rat, ", blk"); | |
| 3714 else | |
| 3715 strcat (rat, "blk"); | |
| 3716 return creat (name, 0, rfm, rat, fsz); | |
| 3717 | |
| 3718 case FAB$C_STM: | |
| 3719 strcpy (rfm, "rfm = stm"); | |
| 3720 break; | |
| 3721 | |
| 3722 case FAB$C_STMCR: | |
| 3723 strcpy (rfm, "rfm = stmcr"); | |
| 3724 break; | |
| 3725 | |
| 3726 case FAB$C_STMLF: | |
| 3727 strcpy (rfm, "rfm = stmlf"); | |
| 3728 break; | |
| 3729 | |
| 3730 case FAB$C_UDF: | |
| 3731 strcpy (rfm, "rfm = udf"); | |
| 3732 break; | |
| 3733 | |
| 3734 case FAB$C_VAR: | |
| 3735 strcpy (rfm, "rfm = var"); | |
| 3736 break; | |
| 3737 } | |
| 3738 strcpy (rat, "rat = "); | |
| 3739 if (st_buf.st_fab_rat & FAB$M_CR) | |
| 3740 strcat (rat, "cr"); | |
| 3741 else if (st_buf.st_fab_rat & FAB$M_FTN) | |
| 3742 strcat (rat, "ftn"); | |
| 3743 else if (st_buf.st_fab_rat & FAB$M_PRN) | |
| 3744 strcat (rat, "prn"); | |
| 3745 if (st_buf.st_fab_rat & FAB$M_BLK) | |
| 3746 if (st_buf.st_fab_rat & (FAB$M_CR|FAB$M_FTN|FAB$M_PRN)) | |
| 3747 strcat (rat, ", blk"); | |
| 3748 else | |
| 3749 strcat (rat, "blk"); | |
| 3750 } | |
| 3751 else | |
| 3752 { | |
| 3753 strcpy (rfm, vms_stmlf_recfm ? "rfm = stmlf" : "rfm=var"); | |
| 3754 strcpy (rat, "rat=cr"); | |
| 3755 } | |
| 3756 /* Until the VAX C RTL fixes the many bugs with modes, always use | |
| 3757 mode 0 to get the user's default protection. */ | |
| 3758 fd = creat (name, 0, rfm, rat); | |
| 3759 if (fd < 0 && errno == EEXIST) | |
| 3760 { | |
| 3761 if (unlink (name) < 0) | |
| 3762 report_file_error ("delete", build_string (name)); | |
| 3763 fd = creat (name, 0, rfm, rat); | |
| 3764 } | |
| 3765 return fd; | |
| 3766 } | |
| 3767 #endif /* creat */ | |
| 3768 | |
| 3769 /* fwrite to stdout is S L O W. Speed it up by using fputc...*/ | |
| 3770 sys_fwrite (ptr, size, num, fp) | |
| 3771 register char * ptr; | |
| 3772 FILE * fp; | |
| 3773 { | |
| 3774 register int tot = num * size; | |
| 3775 | |
| 3776 while (tot--) | |
| 3777 fputc (*ptr++, fp); | |
| 3778 } | |
| 3779 | |
| 3780 /* | |
| 3781 * The VMS C library routine creat actually creates a new version of an | |
| 3782 * existing file rather than truncating the old version. There are times | |
| 3783 * when this is not the desired behavior, for instance, when writing an | |
| 3784 * auto save file (you only want one version), or when you don't have | |
| 3785 * write permission in the directory containing the file (but the file | |
| 3786 * itself is writable). Hence this routine, which is equivalent to | |
| 3787 * "close (creat (fn, 0));" on Unix if fn already exists. | |
| 3788 */ | |
| 3789 int | |
| 3790 vms_truncate (fn) | |
| 3791 char *fn; | |
| 3792 { | |
| 3793 struct FAB xfab = cc$rms_fab; | |
| 3794 struct RAB xrab = cc$rms_rab; | |
| 3795 int status; | |
| 3796 | |
| 3797 xfab.fab$l_fop = FAB$M_TEF; /* free allocated but unused blocks on close */ | |
| 3798 xfab.fab$b_fac = FAB$M_TRN | FAB$M_GET; /* allow truncate and get access */ | |
| 3799 xfab.fab$b_shr = FAB$M_NIL; /* allow no sharing - file must be locked */ | |
| 3800 xfab.fab$l_fna = fn; | |
| 3801 xfab.fab$b_fns = strlen (fn); | |
| 3802 xfab.fab$l_dna = ";0"; /* default to latest version of the file */ | |
| 3803 xfab.fab$b_dns = 2; | |
| 3804 xrab.rab$l_fab = &xfab; | |
| 3805 | |
| 3806 /* This gibberish opens the file, positions to the first record, and | |
| 3807 deletes all records from there until the end of file. */ | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3808 if ((SYS$OPEN (&xfab) & 01) == 01) |
| 491 | 3809 { |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3810 if ((SYS$CONNECT (&xrab) & 01) == 01 && |
|
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3811 (SYS$FIND (&xrab) & 01) == 01 && |
|
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3812 (SYS$TRUNCATE (&xrab) & 01) == 01) |
| 491 | 3813 status = 0; |
| 3814 else | |
| 3815 status = -1; | |
| 3816 } | |
| 3817 else | |
| 3818 status = -1; | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3819 SYS$CLOSE (&xfab); |
| 491 | 3820 return status; |
| 3821 } | |
| 3822 | |
| 3823 /* Define this symbol to actually read SYSUAF.DAT. This requires either | |
| 3824 SYSPRV or a readable SYSUAF.DAT. */ | |
| 3825 | |
| 3826 #ifdef READ_SYSUAF | |
| 3827 /* | |
| 3828 * getuaf.c | |
| 3829 * | |
| 3830 * Routine to read the VMS User Authorization File and return | |
| 3831 * a specific user's record. | |
| 3832 */ | |
| 3833 | |
| 3834 static struct UAF retuaf; | |
| 3835 | |
| 3836 struct UAF * | |
| 3837 get_uaf_name (uname) | |
| 3838 char * uname; | |
| 3839 { | |
| 3840 register status; | |
| 3841 struct FAB uaf_fab; | |
| 3842 struct RAB uaf_rab; | |
| 3843 | |
| 3844 uaf_fab = cc$rms_fab; | |
| 3845 uaf_rab = cc$rms_rab; | |
| 3846 /* initialize fab fields */ | |
| 3847 uaf_fab.fab$l_fna = "SYS$SYSTEM:SYSUAF.DAT"; | |
| 3848 uaf_fab.fab$b_fns = 21; | |
| 3849 uaf_fab.fab$b_fac = FAB$M_GET; | |
| 3850 uaf_fab.fab$b_org = FAB$C_IDX; | |
| 3851 uaf_fab.fab$b_shr = FAB$M_GET|FAB$M_PUT|FAB$M_UPD|FAB$M_DEL; | |
| 3852 /* initialize rab fields */ | |
| 3853 uaf_rab.rab$l_fab = &uaf_fab; | |
| 3854 /* open the User Authorization File */ | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3855 status = SYS$OPEN (&uaf_fab); |
| 491 | 3856 if (!(status&1)) |
| 3857 { | |
| 3858 errno = EVMSERR; | |
| 3859 vaxc$errno = status; | |
| 3860 return 0; | |
| 3861 } | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3862 status = SYS$CONNECT (&uaf_rab); |
| 491 | 3863 if (!(status&1)) |
| 3864 { | |
| 3865 errno = EVMSERR; | |
| 3866 vaxc$errno = status; | |
| 3867 return 0; | |
| 3868 } | |
| 3869 /* read the requested record - index is in uname */ | |
| 3870 uaf_rab.rab$l_kbf = uname; | |
| 3871 uaf_rab.rab$b_ksz = strlen (uname); | |
| 3872 uaf_rab.rab$b_rac = RAB$C_KEY; | |
| 3873 uaf_rab.rab$l_ubf = (char *)&retuaf; | |
| 3874 uaf_rab.rab$w_usz = sizeof retuaf; | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3875 status = SYS$GET (&uaf_rab); |
| 491 | 3876 if (!(status&1)) |
| 3877 { | |
| 3878 errno = EVMSERR; | |
| 3879 vaxc$errno = status; | |
| 3880 return 0; | |
| 3881 } | |
| 3882 /* close the User Authorization File */ | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3883 status = SYS$DISCONNECT (&uaf_rab); |
| 491 | 3884 if (!(status&1)) |
| 3885 { | |
| 3886 errno = EVMSERR; | |
| 3887 vaxc$errno = status; | |
| 3888 return 0; | |
| 3889 } | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3890 status = SYS$CLOSE (&uaf_fab); |
| 491 | 3891 if (!(status&1)) |
| 3892 { | |
| 3893 errno = EVMSERR; | |
| 3894 vaxc$errno = status; | |
| 3895 return 0; | |
| 3896 } | |
| 3897 return &retuaf; | |
| 3898 } | |
| 3899 | |
| 3900 struct UAF * | |
| 3901 get_uaf_uic (uic) | |
| 3902 unsigned long uic; | |
| 3903 { | |
| 3904 register status; | |
| 3905 struct FAB uaf_fab; | |
| 3906 struct RAB uaf_rab; | |
| 3907 | |
| 3908 uaf_fab = cc$rms_fab; | |
| 3909 uaf_rab = cc$rms_rab; | |
| 3910 /* initialize fab fields */ | |
| 3911 uaf_fab.fab$l_fna = "SYS$SYSTEM:SYSUAF.DAT"; | |
| 3912 uaf_fab.fab$b_fns = 21; | |
| 3913 uaf_fab.fab$b_fac = FAB$M_GET; | |
| 3914 uaf_fab.fab$b_org = FAB$C_IDX; | |
| 3915 uaf_fab.fab$b_shr = FAB$M_GET|FAB$M_PUT|FAB$M_UPD|FAB$M_DEL; | |
| 3916 /* initialize rab fields */ | |
| 3917 uaf_rab.rab$l_fab = &uaf_fab; | |
| 3918 /* open the User Authorization File */ | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3919 status = SYS$OPEN (&uaf_fab); |
| 491 | 3920 if (!(status&1)) |
| 3921 { | |
| 3922 errno = EVMSERR; | |
| 3923 vaxc$errno = status; | |
| 3924 return 0; | |
| 3925 } | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3926 status = SYS$CONNECT (&uaf_rab); |
| 491 | 3927 if (!(status&1)) |
| 3928 { | |
| 3929 errno = EVMSERR; | |
| 3930 vaxc$errno = status; | |
| 3931 return 0; | |
| 3932 } | |
| 3933 /* read the requested record - index is in uic */ | |
| 3934 uaf_rab.rab$b_krf = 1; /* 1st alternate key */ | |
| 3935 uaf_rab.rab$l_kbf = (char *) &uic; | |
| 3936 uaf_rab.rab$b_ksz = sizeof uic; | |
| 3937 uaf_rab.rab$b_rac = RAB$C_KEY; | |
| 3938 uaf_rab.rab$l_ubf = (char *)&retuaf; | |
| 3939 uaf_rab.rab$w_usz = sizeof retuaf; | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3940 status = SYS$GET (&uaf_rab); |
| 491 | 3941 if (!(status&1)) |
| 3942 { | |
| 3943 errno = EVMSERR; | |
| 3944 vaxc$errno = status; | |
| 3945 return 0; | |
| 3946 } | |
| 3947 /* close the User Authorization File */ | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3948 status = SYS$DISCONNECT (&uaf_rab); |
| 491 | 3949 if (!(status&1)) |
| 3950 { | |
| 3951 errno = EVMSERR; | |
| 3952 vaxc$errno = status; | |
| 3953 return 0; | |
| 3954 } | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
3955 status = SYS$CLOSE (&uaf_fab); |
| 491 | 3956 if (!(status&1)) |
| 3957 { | |
| 3958 errno = EVMSERR; | |
| 3959 vaxc$errno = status; | |
| 3960 return 0; | |
| 3961 } | |
| 3962 return &retuaf; | |
| 3963 } | |
| 3964 | |
| 3965 static struct passwd retpw; | |
| 3966 | |
| 3967 struct passwd * | |
| 3968 cnv_uaf_pw (up) | |
| 3969 struct UAF * up; | |
| 3970 { | |
| 3971 char * ptr; | |
| 3972 | |
| 3973 /* copy these out first because if the username is 32 chars, the next | |
| 3974 section will overwrite the first byte of the UIC */ | |
| 3975 retpw.pw_uid = up->uaf$w_mem; | |
| 3976 retpw.pw_gid = up->uaf$w_grp; | |
| 3977 | |
| 3978 /* I suppose this is not the best sytle, to possibly overwrite one | |
| 3979 byte beyond the end of the field, but what the heck... */ | |
| 3980 ptr = &up->uaf$t_username[UAF$S_USERNAME]; | |
| 3981 while (ptr[-1] == ' ') | |
| 3982 ptr--; | |
| 3983 *ptr = '\0'; | |
| 3984 strcpy (retpw.pw_name, up->uaf$t_username); | |
| 3985 | |
| 3986 /* the rest of these are counted ascii strings */ | |
| 3987 strncpy (retpw.pw_gecos, &up->uaf$t_owner[1], up->uaf$t_owner[0]); | |
| 3988 retpw.pw_gecos[up->uaf$t_owner[0]] = '\0'; | |
| 3989 strncpy (retpw.pw_dir, &up->uaf$t_defdev[1], up->uaf$t_defdev[0]); | |
| 3990 retpw.pw_dir[up->uaf$t_defdev[0]] = '\0'; | |
| 3991 strncat (retpw.pw_dir, &up->uaf$t_defdir[1], up->uaf$t_defdir[0]); | |
| 3992 retpw.pw_dir[up->uaf$t_defdev[0] + up->uaf$t_defdir[0]] = '\0'; | |
| 3993 strncpy (retpw.pw_shell, &up->uaf$t_defcli[1], up->uaf$t_defcli[0]); | |
| 3994 retpw.pw_shell[up->uaf$t_defcli[0]] = '\0'; | |
| 3995 | |
| 3996 return &retpw; | |
| 3997 } | |
| 3998 #else /* not READ_SYSUAF */ | |
| 3999 static struct passwd retpw; | |
| 4000 #endif /* not READ_SYSUAF */ | |
| 4001 | |
| 4002 struct passwd * | |
| 4003 getpwnam (name) | |
| 4004 char * name; | |
| 4005 { | |
| 4006 #ifdef READ_SYSUAF | |
| 4007 struct UAF *up; | |
| 4008 #else | |
| 4009 char * user; | |
| 4010 char * dir; | |
| 4011 unsigned char * full; | |
| 4012 #endif /* READ_SYSUAF */ | |
| 4013 char *ptr = name; | |
| 4014 | |
| 4015 while (*ptr) | |
| 4016 { | |
| 4017 if ('a' <= *ptr && *ptr <= 'z') | |
| 4018 *ptr -= 040; | |
| 4019 ptr++; | |
| 4020 } | |
| 4021 #ifdef READ_SYSUAF | |
| 4022 if (!(up = get_uaf_name (name))) | |
| 4023 return 0; | |
| 4024 return cnv_uaf_pw (up); | |
| 4025 #else | |
| 4026 if (strcmp (name, getenv ("USER")) == 0) | |
| 4027 { | |
| 4028 retpw.pw_uid = getuid (); | |
| 4029 retpw.pw_gid = getgid (); | |
| 4030 strcpy (retpw.pw_name, name); | |
| 4031 if (full = egetenv ("FULLNAME")) | |
| 4032 strcpy (retpw.pw_gecos, full); | |
| 4033 else | |
| 4034 *retpw.pw_gecos = '\0'; | |
| 4035 strcpy (retpw.pw_dir, egetenv ("HOME")); | |
| 4036 *retpw.pw_shell = '\0'; | |
| 4037 return &retpw; | |
| 4038 } | |
| 4039 else | |
| 4040 return 0; | |
| 4041 #endif /* not READ_SYSUAF */ | |
| 4042 } | |
| 4043 | |
| 4044 struct passwd * | |
| 4045 getpwuid (uid) | |
| 4046 unsigned long uid; | |
| 4047 { | |
| 4048 #ifdef READ_SYSUAF | |
| 4049 struct UAF * up; | |
| 4050 | |
| 4051 if (!(up = get_uaf_uic (uid))) | |
| 4052 return 0; | |
| 4053 return cnv_uaf_pw (up); | |
| 4054 #else | |
| 4055 if (uid == sys_getuid ()) | |
| 4056 return getpwnam (egetenv ("USER")); | |
| 4057 else | |
| 4058 return 0; | |
| 4059 #endif /* not READ_SYSUAF */ | |
| 4060 } | |
| 4061 | |
| 4062 /* return total address space available to the current process. This is | |
| 4063 the sum of the current p0 size, p1 size and free page table entries | |
| 4064 available. */ | |
| 4065 vlimit () | |
| 4066 { | |
| 4067 int item_code; | |
| 4068 unsigned long free_pages; | |
| 4069 unsigned long frep0va; | |
| 4070 unsigned long frep1va; | |
| 4071 register status; | |
| 4072 | |
| 4073 item_code = JPI$_FREPTECNT; | |
| 4074 if (((status = LIB$GETJPI (&item_code, 0, 0, &free_pages)) & 1) == 0) | |
| 4075 { | |
| 4076 errno = EVMSERR; | |
| 4077 vaxc$errno = status; | |
| 4078 return -1; | |
| 4079 } | |
| 4080 free_pages *= 512; | |
| 4081 | |
| 4082 item_code = JPI$_FREP0VA; | |
| 4083 if (((status = LIB$GETJPI (&item_code, 0, 0, &frep0va)) & 1) == 0) | |
| 4084 { | |
| 4085 errno = EVMSERR; | |
| 4086 vaxc$errno = status; | |
| 4087 return -1; | |
| 4088 } | |
| 4089 item_code = JPI$_FREP1VA; | |
| 4090 if (((status = LIB$GETJPI (&item_code, 0, 0, &frep1va)) & 1) == 0) | |
| 4091 { | |
| 4092 errno = EVMSERR; | |
| 4093 vaxc$errno = status; | |
| 4094 return -1; | |
| 4095 } | |
| 4096 | |
| 4097 return free_pages + frep0va + (0x7fffffff - frep1va); | |
| 4098 } | |
| 4099 | |
| 4100 define_logical_name (varname, string) | |
| 4101 char *varname; | |
| 4102 char *string; | |
| 4103 { | |
| 4104 struct dsc$descriptor_s strdsc = | |
| 4105 {strlen (string), DSC$K_DTYPE_T, DSC$K_CLASS_S, string}; | |
| 4106 struct dsc$descriptor_s envdsc = | |
| 4107 {strlen (varname), DSC$K_DTYPE_T, DSC$K_CLASS_S, varname}; | |
| 4108 struct dsc$descriptor_s lnmdsc = | |
| 4109 {7, DSC$K_DTYPE_T, DSC$K_CLASS_S, "LNM$JOB"}; | |
| 4110 | |
| 4111 return LIB$SET_LOGICAL (&envdsc, &strdsc, &lnmdsc, 0, 0); | |
| 4112 } | |
| 4113 | |
| 4114 delete_logical_name (varname) | |
| 4115 char *varname; | |
| 4116 { | |
| 4117 struct dsc$descriptor_s envdsc = | |
| 4118 {strlen (varname), DSC$K_DTYPE_T, DSC$K_CLASS_S, varname}; | |
| 4119 struct dsc$descriptor_s lnmdsc = | |
| 4120 {7, DSC$K_DTYPE_T, DSC$K_CLASS_S, "LNM$JOB"}; | |
| 4121 | |
| 4122 return LIB$DELETE_LOGICAL (&envdsc, &lnmdsc); | |
| 4123 } | |
| 4124 | |
| 4125 ulimit () | |
| 4126 {} | |
| 4127 | |
| 4128 setpgrp () | |
| 4129 {} | |
| 4130 | |
| 4131 execvp () | |
| 4132 { | |
| 4133 error ("execvp system call not implemented"); | |
| 4134 } | |
| 4135 | |
| 4136 int | |
| 4137 rename (from, to) | |
| 4138 char *from, *to; | |
| 4139 { | |
| 4140 int status; | |
| 4141 struct FAB from_fab = cc$rms_fab, to_fab = cc$rms_fab; | |
| 4142 struct NAM from_nam = cc$rms_nam, to_nam = cc$rms_nam; | |
| 4143 char from_esn[NAM$C_MAXRSS]; | |
| 4144 char to_esn[NAM$C_MAXRSS]; | |
| 4145 | |
| 4146 from_fab.fab$l_fna = from; | |
| 4147 from_fab.fab$b_fns = strlen (from); | |
| 4148 from_fab.fab$l_nam = &from_nam; | |
| 4149 from_fab.fab$l_fop = FAB$M_NAM; | |
| 4150 | |
| 4151 from_nam.nam$l_esa = from_esn; | |
| 4152 from_nam.nam$b_ess = sizeof from_esn; | |
| 4153 | |
| 4154 to_fab.fab$l_fna = to; | |
| 4155 to_fab.fab$b_fns = strlen (to); | |
| 4156 to_fab.fab$l_nam = &to_nam; | |
| 4157 to_fab.fab$l_fop = FAB$M_NAM; | |
| 4158 | |
| 4159 to_nam.nam$l_esa = to_esn; | |
| 4160 to_nam.nam$b_ess = sizeof to_esn; | |
| 4161 | |
| 4162 status = SYS$RENAME (&from_fab, 0, 0, &to_fab); | |
| 4163 | |
| 4164 if (status & 1) | |
| 4165 return 0; | |
| 4166 else | |
| 4167 { | |
| 4168 if (status == RMS$_DEV) | |
| 4169 errno = EXDEV; | |
| 4170 else | |
| 4171 errno = EVMSERR; | |
| 4172 vaxc$errno = status; | |
| 4173 return -1; | |
| 4174 } | |
| 4175 } | |
| 4176 | |
| 4177 /* This function renames a file like `rename', but it strips | |
| 4178 the version number from the "to" filename, such that the "to" file is | |
| 4179 will always be a new version. It also sets the file protection once it is | |
| 4180 finished. The protection that we will use is stored in fab_final_pro, | |
| 4181 and was set when we did a creat_copy_attrs to create the file that we | |
| 4182 are renaming. | |
| 4183 | |
| 4184 We could use the chmod function, but Eunichs uses 3 bits per user category | |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3559
diff
changeset
|
4185 to describe the protection, and VMS uses 4 (write and delete are separate |
| 491 | 4186 bits). To maintain portability, the VMS implementation of `chmod' wires |
| 4187 the W and D bits together. */ | |
| 4188 | |
| 4189 | |
| 4190 static struct fibdef fib; /* We need this initialized to zero */ | |
| 4191 char vms_file_written[NAM$C_MAXRSS]; | |
| 4192 | |
| 4193 int | |
| 4194 rename_sans_version (from,to) | |
| 4195 char *from, *to; | |
| 4196 { | |
| 4197 short int chan; | |
| 4198 int stat; | |
| 4199 short int iosb[4]; | |
| 4200 int status; | |
| 4201 struct FAB to_fab = cc$rms_fab; | |
| 4202 struct NAM to_nam = cc$rms_nam; | |
| 4203 struct dsc$descriptor fib_d ={sizeof (fib),0,0,(char*) &fib}; | |
| 4204 struct dsc$descriptor fib_attr[2] | |
| 4205 = {{sizeof (fab_final_pro),ATR$C_FPRO,0,(char*) &fab_final_pro},{0,0,0,0}}; | |
| 4206 char to_esn[NAM$C_MAXRSS]; | |
| 4207 | |
| 4208 $DESCRIPTOR (disk,to_esn); | |
| 4209 | |
| 4210 to_fab.fab$l_fna = to; | |
| 4211 to_fab.fab$b_fns = strlen (to); | |
| 4212 to_fab.fab$l_nam = &to_nam; | |
| 4213 to_fab.fab$l_fop = FAB$M_NAM; | |
| 4214 | |
| 4215 to_nam.nam$l_esa = to_esn; | |
| 4216 to_nam.nam$b_ess = sizeof to_esn; | |
| 4217 | |
| 4218 status = SYS$PARSE (&to_fab, 0, 0); /* figure out the full file name */ | |
| 4219 | |
| 4220 if (to_nam.nam$l_fnb && NAM$M_EXP_VER) | |
| 4221 *(to_nam.nam$l_ver) = '\0'; | |
| 4222 | |
| 4223 stat = rename (from, to_esn); | |
| 4224 if (stat < 0) | |
| 4225 return stat; | |
| 4226 | |
| 4227 strcpy (vms_file_written, to_esn); | |
| 4228 | |
| 4229 to_fab.fab$l_fna = vms_file_written; /* this points to the versionless name */ | |
| 4230 to_fab.fab$b_fns = strlen (vms_file_written); | |
| 4231 | |
| 4232 /* Now set the file protection to the correct value */ | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
4233 SYS$OPEN (&to_fab, 0, 0); /* This fills in the nam$w_fid fields */ |
| 491 | 4234 |
| 4235 /* Copy these fields into the fib */ | |
| 4236 fib.fib$r_fid_overlay.fib$w_fid[0] = to_nam.nam$w_fid[0]; | |
| 4237 fib.fib$r_fid_overlay.fib$w_fid[1] = to_nam.nam$w_fid[1]; | |
| 4238 fib.fib$r_fid_overlay.fib$w_fid[2] = to_nam.nam$w_fid[2]; | |
| 4239 | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
4240 SYS$CLOSE (&to_fab, 0, 0); |
|
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
4241 |
|
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
4242 stat = SYS$ASSIGN (&disk, &chan, 0, 0); /* open a channel to the disk */ |
| 491 | 4243 if (!stat) |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
4244 LIB$SIGNAL (stat); |
|
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
4245 stat = SYS$QIOW (0, chan, IO$_MODIFY, iosb, 0, 0, &fib_d, |
| 491 | 4246 0, 0, 0, &fib_attr, 0); |
| 4247 if (!stat) | |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
4248 LIB$SIGNAL (stat); |
|
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
4249 stat = SYS$DASSGN (chan); |
| 491 | 4250 if (!stat) |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1570
diff
changeset
|
4251 LIB$SIGNAL (stat); |
| 766 | 4252 strcpy (vms_file_written, to_esn); /* We will write this to the terminal*/ |
| 491 | 4253 return 0; |
| 4254 } | |
| 4255 | |
| 4256 link (file, new) | |
| 4257 char * file, * new; | |
| 4258 { | |
| 4259 register status; | |
| 4260 struct FAB fab; | |
| 4261 struct NAM nam; | |
| 4262 unsigned short fid[3]; | |
| 4263 char esa[NAM$C_MAXRSS]; | |
| 4264 | |
| 4265 fab = cc$rms_fab; | |
| 4266 fab.fab$l_fop = FAB$M_OFP; | |
| 4267 fab.fab$l_fna = file; | |
| 4268 fab.fab$b_fns = strlen (file); | |
| 4269 fab.fab$l_nam = &nam; | |
| 4270 | |
| 4271 nam = cc$rms_nam; | |
| 4272 nam.nam$l_esa = esa; | |
| 4273 nam.nam$b_ess = NAM$C_MAXRSS; | |
| 4274 | |
| 4275 status = SYS$PARSE (&fab); | |
| 4276 if ((status & 1) == 0) | |
| 4277 { | |
| 4278 errno = EVMSERR; | |
| 4279 vaxc$errno = status; | |
| 4280 return -1; | |
| 4281 } | |
| 4282 status = SYS$SEARCH (&fab); | |
| 4283 if ((status & 1) == 0) | |
| 4284 { | |
| 4285 errno = EVMSERR; | |
| 4286 vaxc$errno = status; | |
| 4287 return -1; | |
| 4288 } | |
| 4289 | |
| 4290 fid[0] = nam.nam$w_fid[0]; | |
| 4291 fid[1] = nam.nam$w_fid[1]; | |
| 4292 fid[2] = nam.nam$w_fid[2]; | |
| 4293 | |
| 4294 fab.fab$l_fna = new; | |
| 4295 fab.fab$b_fns = strlen (new); | |
| 4296 | |
| 4297 status = SYS$PARSE (&fab); | |
| 4298 if ((status & 1) == 0) | |
| 4299 { | |
| 4300 errno = EVMSERR; | |
| 4301 vaxc$errno = status; | |
| 4302 return -1; | |
| 4303 } | |
| 4304 | |
| 4305 nam.nam$w_fid[0] = fid[0]; | |
| 4306 nam.nam$w_fid[1] = fid[1]; | |
| 4307 nam.nam$w_fid[2] = fid[2]; | |
| 4308 | |
| 4309 nam.nam$l_esa = nam.nam$l_name; | |
| 4310 nam.nam$b_esl = nam.nam$b_name + nam.nam$b_type + nam.nam$b_ver; | |
| 4311 | |
| 4312 status = SYS$ENTER (&fab); | |
| 4313 if ((status & 1) == 0) | |
| 4314 { | |
| 4315 errno = EVMSERR; | |
| 4316 vaxc$errno = status; | |
| 4317 return -1; | |
| 4318 } | |
| 4319 | |
| 4320 return 0; | |
| 4321 } | |
| 4322 | |
| 4323 croak (badfunc) | |
| 4324 char *badfunc; | |
| 4325 { | |
| 4326 printf ("%s not yet implemented\r\n", badfunc); | |
| 4327 reset_sys_modes (); | |
| 4328 exit (1); | |
| 4329 } | |
| 4330 | |
| 4331 long | |
| 4332 random () | |
| 4333 { | |
| 4334 /* Arrange to return a range centered on zero. */ | |
| 4335 return rand () - (1 << 30); | |
| 4336 } | |
| 4337 | |
| 4338 srandom (seed) | |
| 4339 { | |
| 4340 srand (seed); | |
| 4341 } | |
| 4342 #endif /* VMS */ | |
| 4343 | |
| 4344 #ifdef AIX | |
| 4345 | |
| 4346 /* Called from init_sys_modes. */ | |
| 4347 hft_init () | |
| 4348 { | |
| 4349 int junk; | |
| 4350 | |
| 4351 /* If we're not on an HFT we shouldn't do any of this. We determine | |
| 4352 if we are on an HFT by trying to get an HFT error code. If this | |
| 4353 call fails, we're not on an HFT. */ | |
| 4354 #ifdef IBMR2AIX | |
| 4355 if (ioctl (0, HFQERROR, &junk) < 0) | |
| 4356 return; | |
| 4357 #else /* not IBMR2AIX */ | |
| 4358 if (ioctl (0, HFQEIO, 0) < 0) | |
| 4359 return; | |
| 4360 #endif /* not IBMR2AIX */ | |
| 4361 | |
| 4362 /* On AIX the default hft keyboard mapping uses backspace rather than delete | |
| 4363 as the rubout key's ASCII code. Here this is changed. The bug is that | |
| 4364 there's no way to determine the old mapping, so in reset_sys_modes | |
| 4365 we need to assume that the normal map had been present. Of course, this | |
| 4366 code also doesn't help if on a terminal emulator which doesn't understand | |
| 4367 HFT VTD's. */ | |
| 4368 { | |
| 4369 struct hfbuf buf; | |
| 4370 struct hfkeymap keymap; | |
| 4371 | |
| 4372 buf.hf_bufp = (char *)&keymap; | |
| 4373 buf.hf_buflen = sizeof (keymap); | |
| 4374 keymap.hf_nkeys = 2; | |
| 4375 keymap.hfkey[0].hf_kpos = 15; | |
| 4376 keymap.hfkey[0].hf_kstate = HFMAPCHAR | HFSHFNONE; | |
| 4377 #ifdef IBMR2AIX | |
| 4378 keymap.hfkey[0].hf_keyidh = '<'; | |
| 4379 #else /* not IBMR2AIX */ | |
| 4380 keymap.hfkey[0].hf_page = '<'; | |
| 4381 #endif /* not IBMR2AIX */ | |
| 4382 keymap.hfkey[0].hf_char = 127; | |
| 4383 keymap.hfkey[1].hf_kpos = 15; | |
| 4384 keymap.hfkey[1].hf_kstate = HFMAPCHAR | HFSHFSHFT; | |
| 4385 #ifdef IBMR2AIX | |
| 4386 keymap.hfkey[1].hf_keyidh = '<'; | |
| 4387 #else /* not IBMR2AIX */ | |
| 4388 keymap.hfkey[1].hf_page = '<'; | |
| 4389 #endif /* not IBMR2AIX */ | |
| 4390 keymap.hfkey[1].hf_char = 127; | |
| 4391 hftctl (0, HFSKBD, &buf); | |
| 4392 } | |
| 4393 /* The HFT system on AIX doesn't optimize for scrolling, so it's really ugly | |
| 4394 at times. */ | |
| 4395 line_ins_del_ok = char_ins_del_ok = 0; | |
| 4396 } | |
| 4397 | |
| 4398 /* Reset the rubout key to backspace. */ | |
| 4399 | |
| 4400 hft_reset () | |
| 4401 { | |
| 4402 struct hfbuf buf; | |
| 4403 struct hfkeymap keymap; | |
| 4404 int junk; | |
| 4405 | |
| 4406 #ifdef IBMR2AIX | |
| 4407 if (ioctl (0, HFQERROR, &junk) < 0) | |
| 4408 return; | |
| 4409 #else /* not IBMR2AIX */ | |
| 4410 if (ioctl (0, HFQEIO, 0) < 0) | |
| 4411 return; | |
| 4412 #endif /* not IBMR2AIX */ | |
| 4413 | |
| 4414 buf.hf_bufp = (char *)&keymap; | |
| 4415 buf.hf_buflen = sizeof (keymap); | |
| 4416 keymap.hf_nkeys = 2; | |
| 4417 keymap.hfkey[0].hf_kpos = 15; | |
| 4418 keymap.hfkey[0].hf_kstate = HFMAPCHAR | HFSHFNONE; | |
| 4419 #ifdef IBMR2AIX | |
| 4420 keymap.hfkey[0].hf_keyidh = '<'; | |
| 4421 #else /* not IBMR2AIX */ | |
| 4422 keymap.hfkey[0].hf_page = '<'; | |
| 4423 #endif /* not IBMR2AIX */ | |
| 4424 keymap.hfkey[0].hf_char = 8; | |
| 4425 keymap.hfkey[1].hf_kpos = 15; | |
| 4426 keymap.hfkey[1].hf_kstate = HFMAPCHAR | HFSHFSHFT; | |
| 4427 #ifdef IBMR2AIX | |
| 4428 keymap.hfkey[1].hf_keyidh = '<'; | |
| 4429 #else /* not IBMR2AIX */ | |
| 4430 keymap.hfkey[1].hf_page = '<'; | |
| 4431 #endif /* not IBMR2AIX */ | |
| 4432 keymap.hfkey[1].hf_char = 8; | |
| 4433 hftctl (0, HFSKBD, &buf); | |
| 4434 } | |
| 4435 | |
| 4436 #endif /* AIX */ |
