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