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