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