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