428
|
1 /* Interfaces to system-dependent kernel and library entries.
|
|
2 Copyright (C) 1985-1988, 1992-1995 Free Software Foundation, Inc.
|
|
3 Copyright (C) 1995 Tinker Systems.
|
1318
|
4 Copyright (C) 2000, 2001, 2002, 2003 Ben Wing.
|
428
|
5
|
|
6 This file is part of XEmacs.
|
|
7
|
|
8 XEmacs is free software; you can redistribute it and/or modify it
|
|
9 under the terms of the GNU General Public License as published by the
|
|
10 Free Software Foundation; either version 2, or (at your option) any
|
|
11 later version.
|
|
12
|
|
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
16 for more details.
|
|
17
|
|
18 You should have received a copy of the GNU General Public License
|
|
19 along with XEmacs; see the file COPYING. If not, write to
|
|
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
21 Boston, MA 02111-1307, USA. */
|
|
22
|
771
|
23
|
428
|
24 /* Synched up with: FSF 19.30 except for some Windows-NT crap. */
|
|
25
|
771
|
26 /* Authorship:
|
|
27
|
|
28 Current primary author: Various
|
|
29
|
|
30 Originally from FSF. Major changes at various times.
|
|
31 Substantially cleaned up by Ben Wing, Dec. 1994 / Jan. 1995.
|
|
32 SIGIO stuff ripped apart and redone by Ben Wing. (during 19.14 devel?)
|
|
33 Signal stuff totally redone by Ben Wing. (during 19.14 devel? that would
|
|
34 be Dec 1995 - Apr 1996.)
|
|
35 Controlling terminal stuff redone by Ben Wing for 19.13.
|
|
36 System call encapsulation stuff written by Ben Wing for 19.12. (1995)
|
|
37 Ripped up and redone avoiding preprocessor tricks Aug - Sep 2001 during
|
|
38 Mule-on-Windows development.
|
|
39 */
|
428
|
40
|
|
41 #include <config.h>
|
|
42 #include "lisp.h"
|
|
43
|
|
44 /* ------------------------------- */
|
|
45 /* basic includes */
|
|
46 /* ------------------------------- */
|
|
47
|
800
|
48
|
|
49 #include "buffer.h"
|
872
|
50 #include "device-impl.h"
|
800
|
51 #include "events.h"
|
|
52 #include "frame.h"
|
|
53 #include "process.h"
|
|
54 #include "redisplay.h"
|
|
55 #include "sysdep.h"
|
|
56 #include "window.h"
|
|
57
|
428
|
58 #ifdef HAVE_TTY
|
872
|
59 #include "console-tty-impl.h"
|
428
|
60 #else
|
|
61 #endif /* HAVE_TTY */
|
|
62
|
872
|
63 #include "console-stream-impl.h"
|
442
|
64 #ifdef WIN32_NATIVE
|
771
|
65 #include "syswindows.h"
|
428
|
66 #endif
|
|
67
|
800
|
68 #include "sysdir.h"
|
|
69 #include "sysfile.h"
|
|
70 #include "sysproc.h"
|
|
71 #include "syspwd.h"
|
859
|
72 #include "syssignal.h"
|
800
|
73 #include "systime.h"
|
|
74 #include "systty.h"
|
|
75 #include "syswait.h"
|
|
76
|
|
77 #include <setjmp.h>
|
|
78
|
|
79
|
428
|
80 /* ------------------------------- */
|
|
81 /* TTY definitions */
|
|
82 /* ------------------------------- */
|
|
83
|
|
84 #ifdef USG
|
|
85 #include <sys/utsname.h>
|
|
86 #if defined (TIOCGWINSZ) || defined (ISC4_0)
|
|
87 #ifdef NEED_SIOCTL
|
|
88 #include <sys/sioctl.h>
|
|
89 #endif
|
|
90 #ifdef NEED_PTEM_H
|
|
91 #include <sys/stream.h>
|
|
92 #include <sys/ptem.h>
|
|
93 #endif
|
|
94 #endif /* TIOCGWINSZ or ISC4_0 */
|
|
95 #endif /* USG */
|
|
96
|
|
97 /* LPASS8 is new in 4.3, and makes cbreak mode provide all 8 bits. */
|
|
98 #ifndef LPASS8
|
|
99 #define LPASS8 0
|
|
100 #endif
|
|
101
|
|
102 #ifndef HAVE_H_ERRNO
|
|
103 int h_errno;
|
|
104 #endif
|
|
105
|
|
106 #ifdef HAVE_TTY
|
|
107
|
|
108 static int baud_convert[] =
|
|
109 #ifdef BAUD_CONVERT
|
|
110 BAUD_CONVERT;
|
|
111 #else
|
|
112 {
|
|
113 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
|
|
114 1800, 2400, 4800, 9600, 19200, 38400
|
|
115 };
|
|
116 #endif
|
|
117
|
|
118 #endif
|
|
119
|
|
120 #ifdef AIXHFT
|
|
121 static void hft_init (struct console *c);
|
|
122 static void hft_reset (struct console *c);
|
|
123 #include <sys/termio.h>
|
|
124 #endif
|
|
125
|
|
126
|
|
127 /************************************************************************/
|
|
128 /* subprocess control */
|
|
129 /************************************************************************/
|
|
130
|
853
|
131 #ifdef NEED_SYNC_PROCESS_CODE
|
|
132
|
|
133 /* True iff we are about to fork off a synchronous process or if we
|
|
134 are waiting for it. */
|
|
135 volatile int synch_process_alive;
|
|
136
|
|
137 /* Nonzero => this is a string explaining death of synchronous subprocess. */
|
|
138 const char *synch_process_death;
|
|
139
|
|
140 /* If synch_process_death is zero,
|
|
141 this is exit code of synchronous subprocess. */
|
|
142 int synch_process_retcode;
|
|
143
|
|
144 #endif /* NEED_SYNC_PROCESS_CODE */
|
|
145
|
428
|
146 #ifdef HAVE_TTY
|
|
147
|
|
148 #ifdef SIGTSTP
|
|
149
|
|
150 /* Arrange for character C to be read as the next input from
|
|
151 the terminal. */
|
|
152 void
|
2311
|
153 stuff_char (struct console *con,
|
|
154 #ifdef TIOCSTI
|
|
155 int c
|
|
156 #else
|
|
157 int UNUSED (c)
|
|
158 #endif
|
|
159 )
|
428
|
160 {
|
|
161 int input_fd;
|
|
162
|
|
163 assert (CONSOLE_TTY_P (con));
|
|
164 input_fd = CONSOLE_TTY_DATA (con)->infd;
|
|
165 /* Should perhaps error if in batch mode */
|
|
166 #ifdef TIOCSTI
|
|
167 ioctl (input_fd, TIOCSTI, &c);
|
|
168 #else /* no TIOCSTI */
|
563
|
169 invalid_operation ("Cannot stuff terminal input characters in this version of Unix.", Qunbound);
|
428
|
170 #endif /* no TIOCSTI */
|
|
171 }
|
|
172
|
|
173 #endif /* SIGTSTP */
|
|
174
|
|
175 #endif /* HAVE_TTY */
|
|
176
|
|
177 void
|
2311
|
178 set_exclusive_use (
|
|
179 #ifdef FIOCLEX
|
|
180 int fd
|
|
181 #else
|
|
182 int UNUSED (fd)
|
|
183 #endif
|
|
184 )
|
428
|
185 {
|
|
186 #ifdef FIOCLEX
|
|
187 ioctl (fd, FIOCLEX, 0);
|
|
188 #endif
|
|
189 /* Ok to do nothing if this feature does not exist */
|
|
190 }
|
|
191
|
|
192 void
|
|
193 set_descriptor_non_blocking (int fd)
|
|
194 {
|
|
195 /* Stride people say it's a mystery why this is needed
|
|
196 as well as the O_NDELAY, but that it fails without this. */
|
|
197 /* For AIX: Apparently need this for non-blocking reads on sockets.
|
|
198 It seems that O_NONBLOCK applies only to FIFOs? From
|
|
199 lowry@watson.ibm.com (Andy Lowry). */
|
|
200 /* #### Should this be conditionalized on FIONBIO? */
|
872
|
201 #if defined (STRIDE) || (defined (pfa) && defined (HAVE_PTYS)) || defined (AIX)
|
428
|
202 {
|
|
203 int one = 1;
|
|
204 ioctl (fd, FIONBIO, &one);
|
|
205 }
|
|
206 #endif
|
|
207
|
|
208 #ifdef F_SETFL
|
|
209 fcntl (fd, F_SETFL, O_NONBLOCK);
|
|
210 #endif
|
|
211 }
|
|
212
|
853
|
213 #ifdef NEED_SYNC_PROCESS_CODE /* #### Used only on super-ancient systems */
|
|
214
|
|
215 static void
|
814
|
216 wait_for_termination (int pid)
|
428
|
217 {
|
|
218 /* #### With the new improved SIGCHLD handling stuff, there is much
|
|
219 less danger of race conditions and some of the comments below
|
|
220 don't apply. This should be updated. */
|
|
221
|
|
222 #if defined (NO_SUBPROCESSES)
|
|
223 while (1)
|
|
224 {
|
|
225 /* No need to be tricky like below; we can just call wait(). */
|
|
226 /* #### should figure out how to write a wait_allowing_quit().
|
|
227 Since hardly any systems don't have subprocess support,
|
|
228 however, there doesn't seem to be much point. */
|
|
229 if (wait (0) == pid)
|
|
230 return;
|
|
231 }
|
|
232 #elif defined (HAVE_WAITPID)
|
|
233 /* Note that, whenever any subprocess terminates (asynch. or synch.),
|
|
234 the SIGCHLD handler will be called and it will call wait(). Thus
|
|
235 we cannot just call wait() ourselves, and we can't block SIGCHLD
|
|
236 and then call wait(), because then if an asynch. process dies
|
|
237 while we're waiting for our synch. process, Emacs will never
|
|
238 notice that the asynch. process died.
|
|
239
|
|
240 So, the general approach we take is to repeatedly block until a
|
|
241 signal arrives, and then check if our process died using kill
|
|
242 (pid, 0). (We could also check the value of `synch_process_alive',
|
|
243 since the SIGCHLD handler will reset that and we know that we're
|
|
244 only being called on synchronous processes, but this approach is
|
|
245 safer. I don't trust the proper delivery of SIGCHLD.
|
|
246
|
|
247 Note also that we cannot use any form of waitpid(). A loop with
|
|
248 WNOHANG will chew up CPU time; better to use sleep(). A loop
|
|
249 without WNOWAIT will screw up the SIGCHLD handler (actually this
|
|
250 is not true, if you duplicate the exit-status-reaping code; see
|
|
251 below). A loop with WNOWAIT will result in a race condition if
|
|
252 the process terminates between the process-status check and the
|
|
253 call to waitpid(). */
|
|
254
|
|
255 /* Formerly, immediate_quit was set around this function call, but
|
|
256 that could lead to problems if the QUIT happened when SIGCHLD was
|
|
257 blocked -- it would remain blocked. Yet another reason why
|
|
258 immediate_quit is a bad idea. In any case, there is no reason to
|
|
259 resort to this because either the SIGIO or the SIGALRM will stop
|
|
260 the block in EMACS_WAIT_FOR_SIGNAL(). */
|
|
261
|
|
262 /* Apparently there are bugs on some systems with the second method
|
|
263 used below (the EMACS_BLOCK_SIGNAL method), whereby zombie
|
|
264 processes get left around. It appears in those cases that the
|
|
265 SIGCHLD handler is never getting invoked. It's not clear whether
|
|
266 this is an Emacs bug or a kernel bug or both: on HPUX this
|
|
267 problem is observed only with XEmacs, but under Solaris 2.4 all
|
|
268 sorts of different programs have problems with zombies. The
|
|
269 method we use here does not require a working SIGCHLD (but will
|
|
270 not break if it is working), and should be safe. */
|
|
271 /*
|
|
272 We use waitpid(), contrary to the remarks above. There is no
|
|
273 race condition, because the three situations when sigchld_handler
|
|
274 is invoked should be handled OK:
|
|
275
|
|
276 - handler invoked before waitpid(): In this case, subprocess
|
|
277 status will be set by sigchld_handler. waitpid() here will
|
|
278 return -1 with errno set to ECHILD, which is a valid exit
|
|
279 condition.
|
|
280
|
|
281 - handler invoked during waitpid(): as above, except that errno
|
|
282 here will be set to EINTR. This will cause waitpid() to be
|
|
283 called again, and this time it will exit with ECHILD.
|
|
284
|
|
285 - handler invoked after waitpid(): The following code will reap
|
|
286 the subprocess. In the handler, wait() will return -1 because
|
|
287 there is no child to reap, and the handler will exit without
|
|
288 modifying child subprocess status. */
|
|
289 int ret, status;
|
|
290
|
|
291 /* Because the SIGCHLD handler can potentially reap the synchronous
|
|
292 subprocess, we should take care of that. */
|
|
293
|
|
294 /* Will stay in the do loop as long as:
|
|
295 1. Process is alive
|
|
296 2. Ctrl-G is not pressed */
|
|
297 do
|
|
298 {
|
|
299 QUIT;
|
|
300 ret = waitpid (pid, &status, 0);
|
|
301 /* waitpid returns 0 if the process is still alive. */
|
|
302 }
|
|
303 while (ret == 0 || (ret == -1 && errno == EINTR));
|
|
304
|
|
305 if (ret == pid) /* Success */
|
|
306 /* Set synch process globals. This is can also happen
|
|
307 in sigchld_handler, and that code is duplicated. */
|
|
308 {
|
|
309 synch_process_alive = 0;
|
|
310 if (WIFEXITED (status))
|
|
311 synch_process_retcode = WEXITSTATUS (status);
|
|
312 else if (WIFSIGNALED (status))
|
|
313 synch_process_death = signal_name (WTERMSIG (status));
|
|
314 }
|
|
315 /* On exiting the loop, ret will be -1, with errno set to ECHILD if
|
|
316 the child has already been reaped, e.g. in the signal handler. */
|
|
317
|
|
318 /* Otherwise, we've had some error condition here.
|
|
319 Per POSIX, the only other possibilities are:
|
|
320 - EFAULT (bus error accessing arg 2) or
|
|
321 - EINVAL (incorrect arguments),
|
|
322 which are both program bugs.
|
|
323
|
|
324 Since implementations may add their own error indicators on top,
|
|
325 we ignore it by default. */
|
|
326 #elif defined (EMACS_BLOCK_SIGNAL) && !defined (BROKEN_WAIT_FOR_SIGNAL) && defined (SIGCHLD)
|
|
327 while (1)
|
|
328 {
|
|
329 static int wait_debugging = 0; /* Set nonzero to make following
|
|
330 function work under dbx (at least for bsd). */
|
|
331 QUIT;
|
|
332 if (wait_debugging)
|
|
333 return;
|
|
334
|
|
335 EMACS_BLOCK_SIGNAL (SIGCHLD);
|
|
336 /* Block SIGCHLD from happening during this check,
|
|
337 to avoid race conditions. */
|
|
338 if (kill (pid, 0) < 0)
|
|
339 {
|
|
340 EMACS_UNBLOCK_SIGNAL (SIGCHLD);
|
|
341 return;
|
|
342 }
|
|
343 else
|
|
344 /* WARNING: Whatever this macro does *must* not allow SIGCHLD
|
|
345 to happen between the time that it's reenabled and when we
|
|
346 begin to block. Otherwise we may end up blocking for a
|
|
347 signal that has already arrived and isn't coming again.
|
|
348 Can you say "race condition"?
|
|
349
|
|
350 I assume that the system calls sigpause() or sigsuspend()
|
|
351 to provide this atomicness. If you're getting hangs in
|
|
352 sigpause()/sigsuspend(), then your OS doesn't implement
|
|
353 this properly (this applies under hpux9, for example).
|
|
354 Try defining BROKEN_WAIT_FOR_SIGNAL. */
|
|
355 EMACS_WAIT_FOR_SIGNAL (SIGCHLD);
|
|
356 }
|
853
|
357 #else /* not HAVE_WAITPID and (not EMACS_BLOCK_SIGNAL or BROKEN_WAIT_FOR_SIGNAL) */
|
428
|
358 /* This approach is kind of cheesy but is guaranteed(?!) to work
|
|
359 for all systems. */
|
|
360 while (1)
|
|
361 {
|
|
362 QUIT;
|
|
363 if (kill (pid, 0) < 0)
|
|
364 return;
|
771
|
365 stop_interrupts ();
|
|
366 sleep (1);
|
|
367 start_interrupts ();
|
428
|
368 }
|
|
369 #endif /* OS features */
|
|
370 }
|
|
371
|
853
|
372 #endif /* NEED_SYNC_PROCESS_CODE */
|
428
|
373
|
|
374 #if !defined (NO_SUBPROCESSES)
|
|
375
|
|
376 /*
|
|
377 * flush any pending output
|
|
378 * (may flush input as well; it does not matter the way we use it)
|
|
379 */
|
|
380
|
|
381 void
|
2286
|
382 flush_pending_output (
|
|
383 #if !defined (HAVE_TERMIOS) && (defined (TCFLSH) || defined (TIOCFLUSH))
|
|
384 int channel
|
|
385 #else
|
|
386 int UNUSED (channel)
|
|
387 #endif
|
|
388 )
|
428
|
389 {
|
|
390 #ifdef HAVE_TERMIOS
|
|
391 /* If we try this, we get hit with SIGTTIN, because
|
|
392 the child's tty belongs to the child's pgrp. */
|
|
393 #elif defined (TCFLSH)
|
|
394 ioctl (channel, TCFLSH, 1);
|
|
395 #elif defined (TIOCFLUSH)
|
|
396 int zero = 0;
|
|
397 /* 3rd arg should be ignored
|
|
398 but some 4.2 kernels actually want the address of an int
|
|
399 and nonzero means something different. */
|
|
400 ioctl (channel, TIOCFLUSH, &zero);
|
|
401 #endif
|
|
402 }
|
|
403
|
442
|
404 #ifndef WIN32_NATIVE
|
428
|
405 /* Set up the terminal at the other end of a pseudo-terminal that
|
|
406 we will be controlling an inferior through.
|
|
407 It should not echo or do line-editing, since that is done
|
|
408 in Emacs. No padding needed for insertion into an Emacs buffer. */
|
|
409
|
|
410 void
|
|
411 child_setup_tty (int out)
|
|
412 {
|
|
413 struct emacs_tty s;
|
430
|
414 emacs_get_tty (out, &s);
|
428
|
415
|
|
416 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
|
|
417 assert (isatty(out));
|
|
418 s.main.c_oflag |= OPOST; /* Enable output postprocessing */
|
|
419 s.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL on output */
|
513
|
420
|
|
421 {
|
|
422 /* Disable all output delays. */
|
|
423 tcflag_t delay_mask = 0;
|
428
|
424 #ifdef NLDLY
|
513
|
425 delay_mask |= NLDLY;
|
|
426 #endif
|
|
427 #ifdef CRDLY
|
|
428 delay_mask |= CRDLY;
|
|
429 #endif
|
|
430 #ifdef TABDLY
|
|
431 delay_mask |= TABDLY; /* Also disables tab expansion (Posix). */
|
|
432 #endif
|
|
433 #ifdef BSDLY
|
|
434 delay_mask |= BSDLY;
|
|
435 #endif
|
|
436 #ifdef VTDLY
|
|
437 delay_mask |= VTDLY;
|
428
|
438 #endif
|
513
|
439 #ifdef FFDLY
|
|
440 delay_mask |= FFDLY;
|
|
441 #endif
|
|
442 s.main.c_oflag &= ~delay_mask;
|
|
443 }
|
|
444
|
|
445 #ifdef OXTABS
|
|
446 /* Posix defines the TAB3 value for TABDLY to mean: expand tabs to spaces.
|
|
447 On those systems tab expansion would be disabled by the above code.
|
|
448 BSD systems use an independent flag, OXTABS. */
|
|
449 s.main.c_oflag &= ~OXTABS; /* Disable tab expansion */
|
|
450 #endif
|
|
451
|
428
|
452 s.main.c_lflag &= ~ECHO; /* Disable echo */
|
|
453 s.main.c_lflag |= ISIG; /* Enable signals */
|
|
454 #ifdef IUCLC
|
|
455 s.main.c_iflag &= ~IUCLC; /* Disable downcasing on input. */
|
|
456 #endif
|
|
457 #ifdef OLCUC
|
|
458 s.main.c_oflag &= ~OLCUC; /* Disable upcasing on output. */
|
|
459 #endif
|
513
|
460
|
428
|
461 #if defined (CSIZE) && defined (CS8)
|
|
462 s.main.c_cflag = (s.main.c_cflag & ~CSIZE) | CS8; /* Don't strip 8th bit */
|
|
463 #endif
|
|
464 #ifdef ISTRIP
|
|
465 s.main.c_iflag &= ~ISTRIP; /* Don't strip 8th bit on input */
|
|
466 #endif
|
|
467 #if 0
|
|
468 /* Unnecessary as long as ICANON is set */
|
|
469 s.main.c_cc[VMIN] = 1; /* minimum number of characters to accept */
|
|
470 s.main.c_cc[VTIME] = 0; /* wait forever for at least 1 character */
|
|
471 #endif /* 0 */
|
|
472
|
|
473 s.main.c_lflag |= ICANON; /* Enable erase/kill and eof processing */
|
|
474 s.main.c_cc[VEOF] = 04; /* ensure that EOF is Control-D */
|
|
475 s.main.c_cc[VERASE] = _POSIX_VDISABLE; /* disable erase processing */
|
|
476 s.main.c_cc[VKILL] = _POSIX_VDISABLE; /* disable kill processing */
|
|
477
|
|
478 #ifdef HPUX
|
|
479 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
|
|
480 #endif /* HPUX */
|
|
481
|
|
482 #ifdef AIX
|
|
483 #ifndef IBMR2AIX
|
|
484 /* AIX enhanced edit loses NULs, so disable it. */
|
|
485 s.main.c_line = 0;
|
|
486 s.main.c_iflag &= ~ASCEDIT;
|
|
487 #endif /* IBMR2AIX */
|
|
488 /* Also, PTY overloads NUL and BREAK.
|
|
489 don't ignore break, but don't signal either, so it looks like NUL.
|
|
490 This really serves a purpose only if running in an XTERM window
|
|
491 or via TELNET or the like, but does no harm elsewhere. */
|
|
492 s.main.c_iflag &= ~IGNBRK;
|
|
493 s.main.c_iflag &= ~BRKINT;
|
|
494 #endif /* AIX */
|
|
495 #ifdef SIGNALS_VIA_CHARACTERS
|
|
496 /* TTY `special characters' are used in process_send_signal
|
|
497 so set them here to something useful. */
|
|
498 s.main.c_cc[VQUIT] = '\\'&037; /* Control-\ */
|
|
499 s.main.c_cc[VINTR] = 'C' &037; /* Control-C */
|
|
500 s.main.c_cc[VSUSP] = 'Z' &037; /* Control-Z */
|
|
501 #else /* no TIOCGPGRP or no TIOCGLTC or no TIOCGETC */
|
|
502 /* TTY `special characters' work better as signals, so disable
|
|
503 character forms */
|
|
504 s.main.c_cc[VQUIT] = _POSIX_VDISABLE;
|
|
505 s.main.c_cc[VINTR] = _POSIX_VDISABLE;
|
|
506 s.main.c_cc[VSUSP] = _POSIX_VDISABLE;
|
|
507 s.main.c_lflag &= ~ISIG;
|
|
508 #endif /* no TIOCGPGRP or no TIOCGLTC or no TIOCGETC */
|
|
509 s.main.c_cc[VEOL] = _POSIX_VDISABLE;
|
|
510 #if defined (CBAUD)
|
440
|
511 /* <mdiers> #### This is not portable. ###
|
428
|
512 POSIX does not specify CBAUD, and 4.4BSD does not have it.
|
|
513 Instead, POSIX suggests to use cfset{i,o}speed().
|
|
514 [cf. D. Lewine, POSIX Programmer's Guide, Chapter 8: Terminal
|
|
515 I/O, O'Reilly 1991] */
|
|
516 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
|
|
517 #else
|
|
518 /* <mdiers> What to do upon failure? Just ignoring rc is probably
|
|
519 not acceptable, is it? */
|
|
520 if (cfsetispeed (&s.main, B9600) == -1) /* ignore */;
|
|
521 if (cfsetospeed (&s.main, B9600) == -1) /* ignore */;
|
|
522 #endif /* defined (CBAUD) */
|
|
523
|
|
524 #else /* not HAVE_TERMIO */
|
|
525
|
|
526 s.main.sg_flags &= ~(ECHO | CRMOD | ANYP | ALLDELAY | RAW | LCASE
|
|
527 | CBREAK | TANDEM);
|
|
528 s.main.sg_flags |= LPASS8;
|
|
529 s.main.sg_erase = 0377;
|
|
530 s.main.sg_kill = 0377;
|
|
531 s.lmode = LLITOUT | s.lmode; /* Don't strip 8th bit */
|
|
532
|
|
533 #endif /* not HAVE_TERMIO */
|
430
|
534 emacs_set_tty (out, &s, 0);
|
428
|
535
|
|
536 #ifdef RTU
|
|
537 {
|
|
538 int zero = 0;
|
|
539 ioctl (out, FIOASYNC, &zero);
|
|
540 }
|
|
541 #endif /* RTU */
|
|
542 }
|
442
|
543 #endif /* WIN32_NATIVE */
|
428
|
544
|
|
545 #endif /* not NO_SUBPROCESSES */
|
|
546
|
|
547
|
|
548 #if !defined (SIGTSTP) && !defined (USG_JOBCTRL)
|
|
549
|
|
550 #define SIG_PARAM_TYPE int
|
|
551
|
|
552 /* Record a signal code and the handler for it. */
|
|
553 struct save_signal
|
|
554 {
|
|
555 int code;
|
872
|
556 RETSIGTYPE (XCDECL * handler) (SIG_PARAM_TYPE);
|
428
|
557 };
|
|
558
|
|
559 static void
|
|
560 save_signal_handlers (struct save_signal *saved_handlers)
|
|
561 {
|
|
562 while (saved_handlers->code)
|
|
563 {
|
|
564 saved_handlers->handler
|
872
|
565 = (RETSIGTYPE (XCDECL *) (SIG_PARAM_TYPE)) EMACS_SIGNAL (saved_handlers->code, SIG_IGN);
|
428
|
566 saved_handlers++;
|
|
567 }
|
|
568 }
|
|
569
|
|
570 static void
|
|
571 restore_signal_handlers (struct save_signal *saved_handlers)
|
|
572 {
|
|
573 while (saved_handlers->code)
|
|
574 {
|
613
|
575 EMACS_SIGNAL (saved_handlers->code, saved_handlers->handler);
|
428
|
576 saved_handlers++;
|
|
577 }
|
|
578 }
|
|
579
|
|
580
|
|
581 /* Fork a subshell. */
|
|
582 static void
|
|
583 sys_subshell (void)
|
|
584 {
|
|
585 Lisp_Object dir;
|
867
|
586 Ibyte *str = 0;
|
771
|
587 Bytecount len;
|
428
|
588 struct gcpro gcpro1;
|
867
|
589 Ibyte *sh = 0;
|
771
|
590 Extbyte *shext;
|
|
591
|
|
592 /* Use our buffer's default directory for the subshell. */
|
|
593
|
|
594 /* Note: These calls are spread out to insure that the return values
|
|
595 of the calls (which may be newly-created strings) are properly
|
|
596 GC-protected. */
|
854
|
597
|
428
|
598 GCPRO1 (dir);
|
771
|
599
|
|
600 dir = current_buffer->directory;
|
|
601 /* If the current dir has no terminating slash, we'll get undesirable
|
|
602 results, so put the slash back. */
|
|
603 dir = Ffile_name_as_directory (dir);
|
428
|
604 dir = Funhandled_file_name_directory (dir);
|
|
605 dir = expand_and_dir_to_file (dir, Qnil);
|
771
|
606
|
867
|
607 str = (Ibyte *) ALLOCA (XSTRING_LENGTH (dir) + 2);
|
428
|
608 len = XSTRING_LENGTH (dir);
|
|
609 memcpy (str, XSTRING_DATA (dir), len);
|
442
|
610 if (!IS_ANY_SEP (str[len - 1]))
|
|
611 str[len++] = DIRECTORY_SEP;
|
428
|
612 str[len] = 0;
|
771
|
613
|
|
614 if (sh == 0)
|
|
615 sh = egetenv ("SHELL");
|
|
616 if (sh == 0)
|
1204
|
617 sh = (Ibyte *) "sh";
|
771
|
618
|
|
619 C_STRING_TO_EXTERNAL (sh, shext, Qfile_name);
|
|
620
|
|
621 UNGCPRO;
|
428
|
622
|
442
|
623 #ifdef WIN32_NATIVE
|
|
624
|
771
|
625 if (str)
|
|
626 qxe_chdir (str);
|
|
627
|
|
628 /* Waits for process completion */
|
|
629 if (_spawnlp (_P_WAIT, shext, shext, NULL) != 0)
|
|
630 report_process_error ("Can't spawn subshell", Qunbound);
|
|
631 else
|
|
632 return; /* we're done, no need to wait for termination */
|
|
633
|
|
634 #else /* not WIN32_NATIVE */
|
|
635
|
|
636 {
|
|
637 int pid;
|
|
638 struct save_signal saved_handlers[5];
|
|
639
|
|
640 saved_handlers[0].code = SIGINT;
|
|
641 saved_handlers[1].code = SIGQUIT;
|
|
642 saved_handlers[2].code = SIGTERM;
|
|
643 #ifdef SIGIO
|
|
644 saved_handlers[3].code = SIGIO;
|
|
645 saved_handlers[4].code = 0;
|
|
646 #else
|
|
647 saved_handlers[3].code = 0;
|
|
648 #endif
|
|
649
|
|
650 pid = fork ();
|
|
651
|
|
652 if (pid == -1)
|
563
|
653 report_process_error ("Can't spawn subshell", Qunbound);
|
771
|
654 if (pid == 0)
|
|
655 {
|
|
656 if (str)
|
|
657 qxe_chdir (str);
|
442
|
658
|
|
659 #if !defined (NO_SUBPROCESSES)
|
771
|
660 close_process_descs (); /* Close Emacs's pipes/ptys */
|
428
|
661 #endif
|
|
662
|
|
663 #ifdef SET_EMACS_PRIORITY
|
771
|
664 if (emacs_priority != 0)
|
|
665 nice (-emacs_priority); /* Give the new shell the default priority */
|
428
|
666 #endif
|
|
667
|
771
|
668 execlp (shext, shext, 0);
|
|
669 retry_write (1, "Can't execute subshell", 22);
|
|
670 _exit (1);
|
|
671 }
|
|
672
|
|
673 save_signal_handlers (saved_handlers);
|
|
674 synch_process_alive = 1;
|
|
675 wait_for_termination (pid);
|
|
676 restore_signal_handlers (saved_handlers);
|
428
|
677 }
|
|
678
|
442
|
679 #endif /* not WIN32_NATIVE */
|
428
|
680 }
|
|
681
|
|
682 #endif /* !defined (SIGTSTP) && !defined (USG_JOBCTRL) */
|
|
683
|
|
684
|
|
685
|
|
686 /* Suspend the Emacs process; give terminal to its superior. */
|
|
687 void
|
|
688 sys_suspend (void)
|
|
689 {
|
|
690 #if defined (SIGTSTP)
|
|
691 {
|
|
692 int pgrp = EMACS_GET_PROCESS_GROUP ();
|
|
693 EMACS_KILLPG (pgrp, SIGTSTP);
|
|
694 }
|
|
695
|
|
696 #elif defined (USG_JOBCTRL)
|
|
697 /* If you don't know what this is don't mess with it */
|
|
698 ptrace (0, 0, 0, 0); /* set for ptrace - caught by csh */
|
|
699 kill (getpid (), SIGQUIT);
|
|
700
|
|
701 #else /* No SIGTSTP or USG_JOBCTRL */
|
|
702
|
|
703 /* On a system where suspending is not implemented,
|
|
704 instead fork a subshell and let it talk directly to the terminal
|
|
705 while we wait. */
|
|
706 sys_subshell ();
|
|
707
|
|
708 #endif
|
|
709 }
|
|
710
|
|
711 /* Suspend a process if possible; give terminal to its superior. */
|
|
712 void
|
|
713 sys_suspend_process (int process)
|
|
714 {
|
|
715 /* I don't doubt that it is possible to suspend processes on
|
|
716 * VMS machines or thost that use USG_JOBCTRL,
|
|
717 * but I don't know how to do it, so...
|
|
718 */
|
|
719 #if defined (SIGTSTP)
|
|
720 kill(process, SIGTSTP);
|
|
721 #endif
|
|
722 }
|
|
723
|
|
724
|
|
725 /* Given FD, obtain pty buffer size. When no luck, a good guess is made,
|
442
|
726 so that the function works even when fd is not a pty. */
|
428
|
727
|
|
728 int
|
|
729 get_pty_max_bytes (int fd)
|
|
730 {
|
442
|
731 /* DEC OSF 4.0 fpathconf returns 255, but xemacs hangs on long shell
|
|
732 input lines if we return 253. 252 is OK!. So let's leave a bit
|
|
733 of slack for the newline that xemacs will insert, and for those
|
|
734 inevitable vendor off-by-one-or-two-or-three bugs. */
|
|
735 #define MAX_CANON_SLACK 10
|
|
736 #define SAFE_MAX_CANON (127 - MAX_CANON_SLACK)
|
428
|
737 #if defined (HAVE_FPATHCONF) && defined (_PC_MAX_CANON)
|
442
|
738 {
|
|
739 int max_canon = fpathconf (fd, _PC_MAX_CANON);
|
|
740 #ifdef __hpux__
|
|
741 /* HP-UX 10.20 fpathconf returns 768, but this results in
|
|
742 truncated input lines, while 255 works. */
|
|
743 if (max_canon > 255) max_canon = 255;
|
428
|
744 #endif
|
442
|
745 return (max_canon < 0 ? SAFE_MAX_CANON :
|
|
746 max_canon > SAFE_MAX_CANON ? max_canon - MAX_CANON_SLACK :
|
|
747 max_canon);
|
|
748 }
|
|
749 #elif defined (_POSIX_MAX_CANON)
|
|
750 return (_POSIX_MAX_CANON > SAFE_MAX_CANON ?
|
|
751 _POSIX_MAX_CANON - MAX_CANON_SLACK :
|
|
752 _POSIX_MAX_CANON);
|
|
753 #else
|
|
754 return SAFE_MAX_CANON;
|
|
755 #endif
|
428
|
756 }
|
|
757
|
|
758 /* Figure out the eof character for the FD. */
|
|
759
|
867
|
760 Ibyte
|
428
|
761 get_eof_char (int fd)
|
|
762 {
|
867
|
763 const Ibyte ctrl_d = (Ibyte) '\004';
|
428
|
764
|
|
765 if (!isatty (fd))
|
|
766 return ctrl_d;
|
|
767 #ifdef HAVE_TERMIOS
|
|
768 {
|
|
769 struct termios t;
|
|
770 tcgetattr (fd, &t);
|
|
771 #if 0
|
|
772 /* What is the following line designed to do??? -mrb */
|
647
|
773 if ((int) strlen ((const char *) t.c_cc) < (VEOF + 1))
|
428
|
774 return ctrl_d;
|
|
775 else
|
867
|
776 return (Ibyte) t.c_cc[VEOF];
|
428
|
777 #endif
|
867
|
778 return t.c_cc[VEOF] == _POSIX_VDISABLE ? ctrl_d : (Ibyte) t.c_cc[VEOF];
|
428
|
779 }
|
|
780 #else /* ! HAVE_TERMIOS */
|
|
781 /* On Berkeley descendants, the following IOCTL's retrieve the
|
|
782 current control characters. */
|
|
783 #if defined (TIOCGETC)
|
|
784 {
|
|
785 struct tchars c;
|
|
786 ioctl (fd, TIOCGETC, &c);
|
867
|
787 return (Ibyte) c.t_eofc;
|
428
|
788 }
|
|
789 #else /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
|
|
790 /* On SYSV descendants, the TCGETA ioctl retrieves the current control
|
|
791 characters. */
|
|
792 #ifdef TCGETA
|
|
793 {
|
|
794 struct termio t;
|
|
795 ioctl (fd, TCGETA, &t);
|
647
|
796 if ((int) strlen ((const char *) t.c_cc) < (VINTR + 1))
|
428
|
797 return ctrl_d;
|
|
798 else
|
867
|
799 return (Ibyte) t.c_cc[VINTR];
|
428
|
800 }
|
|
801 #else /* ! defined (TCGETA) */
|
|
802 /* Rather than complain, we'll just guess ^D, which is what
|
|
803 * earlier emacsen always used. */
|
|
804 return ctrl_d;
|
|
805 #endif /* ! defined (TCGETA) */
|
|
806 #endif /* ! defined (TIOCGETC) */
|
|
807 #endif /* ! defined (HAVE_TERMIOS) */
|
|
808 }
|
|
809
|
|
810 /* Set the logical window size associated with descriptor FD
|
|
811 to HEIGHT and WIDTH. This is used mainly with ptys. */
|
|
812
|
|
813 int
|
|
814 set_window_size (int fd, int height, int width)
|
|
815 {
|
|
816 #ifdef TIOCSWINSZ
|
|
817
|
|
818 /* BSD-style. */
|
|
819 struct winsize size;
|
|
820 size.ws_row = height;
|
|
821 size.ws_col = width;
|
|
822
|
|
823 if (ioctl (fd, TIOCSWINSZ, &size) == -1)
|
|
824 return 0; /* error */
|
|
825 else
|
|
826 return 1;
|
|
827
|
|
828 #elif defined (TIOCSSIZE)
|
|
829
|
|
830 /* SunOS - style. */
|
|
831 struct ttysize size;
|
|
832 size.ts_lines = height;
|
|
833 size.ts_cols = width;
|
|
834
|
|
835 if (ioctl (fd, TIOCGSIZE, &size) == -1)
|
|
836 return 0;
|
|
837 else
|
|
838 return 1;
|
|
839 #else
|
|
840 return -1;
|
|
841 #endif
|
|
842 }
|
|
843
|
|
844 /* Set up the proper status flags for use of a pty. */
|
|
845
|
|
846 void
|
|
847 setup_pty (int fd)
|
|
848 {
|
|
849 #ifdef IBMRTAIX
|
|
850 /* On AIX, the parent gets SIGHUP when a pty attached child dies. So, we */
|
|
851 /* ignore SIGHUP once we've started a child on a pty. Note that this may */
|
|
852 /* cause EMACS not to die when it should, i.e., when its own controlling */
|
|
853 /* tty goes away. I've complained to the AIX developers, and they may */
|
|
854 /* change this behavior, but I'm not going to hold my breath. */
|
613
|
855 EMACS_SIGNAL (SIGHUP, SIG_IGN);
|
535
|
856 #endif /* IBMRTAIX */
|
|
857
|
428
|
858 #ifdef TIOCPKT
|
|
859 /* In some systems (Linux through 2.0.0, at least), packet mode doesn't
|
|
860 get cleared when a pty is closed, so we need to clear it here.
|
|
861 Linux pre2.0.13 contained an attempted fix for this (from Ted Ts'o,
|
|
862 tytso@mit.edu), but apparently it messed up rlogind and telnetd, so he
|
|
863 removed the fix in pre2.0.14. - dkindred@cs.cmu.edu
|
|
864 */
|
|
865 {
|
|
866 int off = 0;
|
|
867 ioctl (fd, TIOCPKT, (char *)&off);
|
|
868 }
|
535
|
869 #endif /* TIOCPKT */
|
428
|
870 }
|
|
871
|
|
872
|
|
873 /************************************************************************/
|
|
874 /* TTY control */
|
|
875 /************************************************************************/
|
|
876
|
|
877 /* ------------------------------------------------------ */
|
|
878 /* get baud rate */
|
|
879 /* ------------------------------------------------------ */
|
|
880
|
|
881 /* It really makes more sense for the baud-rate to be console-specific
|
|
882 and not device-specific, but it's (at least potentially) used for output
|
|
883 decisions. */
|
|
884
|
|
885 void
|
|
886 init_baud_rate (struct device *d)
|
|
887 {
|
|
888 if (DEVICE_WIN_P (d) || DEVICE_STREAM_P (d))
|
|
889 {
|
|
890 DEVICE_BAUD_RATE (d) = 38400;
|
|
891 return;
|
|
892 }
|
|
893
|
|
894 #ifdef HAVE_TTY
|
|
895 assert (DEVICE_TTY_P (d));
|
|
896 {
|
647
|
897 struct console *con = XCONSOLE (DEVICE_CONSOLE (d));
|
428
|
898 int input_fd = CONSOLE_TTY_DATA (con)->infd;
|
814
|
899 #ifdef HAVE_TERMIOS
|
428
|
900 struct termios sg;
|
|
901
|
|
902 sg.c_cflag = B9600;
|
|
903 tcgetattr (input_fd, &sg);
|
|
904 DEVICE_TTY_DATA (d)->ospeed = cfgetospeed (&sg);
|
|
905 # if defined (USE_GETOBAUD) && defined (getobaud)
|
|
906 /* m88k-motorola-sysv3 needs this (ghazi@noc.rutgers.edu) 9/1/94. */
|
|
907 if (DEVICE_TTY_DATA (d)->ospeed == 0)
|
|
908 DEVICE_TTY_DATA (d)->ospeed = getobaud (sg.c_cflag);
|
|
909 # endif
|
|
910 #elif defined (HAVE_TERMIO)
|
|
911 struct termio sg;
|
|
912
|
|
913 sg.c_cflag = B9600;
|
|
914 # ifdef HAVE_TCATTR
|
|
915 tcgetattr (input_fd, &sg);
|
|
916 # else
|
|
917 ioctl (input_fd, TCGETA, &sg);
|
|
918 # endif
|
|
919 DEVICE_TTY_DATA (d)->ospeed = sg.c_cflag & CBAUD;
|
|
920 #else /* neither TERMIOS nor TERMIO */
|
|
921 struct sgttyb sg;
|
|
922
|
|
923 sg.sg_ospeed = B9600;
|
|
924 if (ioctl (input_fd, TIOCGETP, &sg) < 0)
|
|
925 abort ();
|
|
926 DEVICE_TTY_DATA (d)->ospeed = sg.sg_ospeed;
|
|
927 #endif
|
|
928 }
|
|
929
|
|
930 DEVICE_BAUD_RATE (d) =
|
|
931 (DEVICE_TTY_DATA (d)->ospeed < countof (baud_convert)
|
|
932 ? baud_convert[DEVICE_TTY_DATA (d)->ospeed]
|
|
933 : 9600);
|
|
934
|
|
935 if (DEVICE_BAUD_RATE (d) == 0)
|
|
936 DEVICE_BAUD_RATE (d) = 1200;
|
|
937 #endif /* HAVE_TTY */
|
|
938 }
|
|
939
|
|
940
|
|
941 /* ------------------------------------------------------ */
|
|
942 /* SIGIO control */
|
|
943 /* ------------------------------------------------------ */
|
|
944
|
853
|
945 #if defined (SIGIO) && !defined (BROKEN_SIGIO)
|
428
|
946
|
|
947 static void
|
|
948 init_sigio_on_device (struct device *d)
|
|
949 {
|
|
950 int filedesc = DEVICE_INFD (d);
|
|
951
|
|
952 #if defined (FIOSSAIOOWN)
|
|
953 { /* HPUX stuff */
|
|
954 int owner = getpid ();
|
|
955 int ioctl_status;
|
|
956 if (DEVICE_TTY_P (d))
|
|
957 {
|
|
958 ioctl_status = ioctl (filedesc, FIOGSAIOOWN,
|
|
959 &DEVICE_OLD_FCNTL_OWNER (d));
|
|
960 ioctl_status = ioctl (filedesc, FIOSSAIOOWN, &owner);
|
|
961 }
|
|
962 #ifdef HAVE_WINDOW_SYSTEM
|
|
963 else if (!DEVICE_STREAM_P (d))
|
|
964 {
|
|
965 ioctl_status = ioctl (filedesc, SIOCGPGRP,
|
|
966 &DEVICE_OLD_FCNTL_OWNER (d));
|
|
967 ioctl_status = ioctl (filedesc, SIOCSPGRP, &owner);
|
|
968 }
|
|
969 #endif
|
|
970 }
|
|
971 #elif defined (F_SETOWN) && !defined (F_SETOWN_BUG)
|
|
972 DEVICE_OLD_FCNTL_OWNER (d) = fcntl (filedesc, F_GETOWN, 0);
|
|
973 # ifdef F_SETOWN_SOCK_NEG
|
|
974 /* stdin is a socket here */
|
|
975 fcntl (filedesc, F_SETOWN, -getpid ());
|
|
976 # else
|
|
977 fcntl (filedesc, F_SETOWN, getpid ());
|
|
978 # endif
|
|
979 #endif
|
|
980 }
|
|
981
|
|
982 static void
|
|
983 reset_sigio_on_device (struct device *d)
|
|
984 {
|
|
985 int filedesc = DEVICE_INFD (d);
|
|
986
|
|
987 #if defined (FIOSSAIOOWN)
|
|
988 { /* HPUX stuff */
|
|
989 int ioctl_status;
|
|
990 if (DEVICE_TTY_P (d))
|
|
991 {
|
|
992 ioctl_status = ioctl (filedesc, FIOSSAIOOWN,
|
|
993 &DEVICE_OLD_FCNTL_OWNER (d));
|
|
994 }
|
|
995 #ifdef HAVE_WINDOW_SYSTEM
|
|
996 else if (!DEVICE_STREAM_P (d))
|
|
997 {
|
|
998 ioctl_status = ioctl (filedesc, SIOCSPGRP,
|
|
999 &DEVICE_OLD_FCNTL_OWNER (d));
|
|
1000 }
|
|
1001 #endif
|
|
1002 }
|
|
1003 #elif defined (F_SETOWN) && !defined (F_SETOWN_BUG)
|
|
1004 fcntl (filedesc, F_SETOWN, DEVICE_OLD_FCNTL_OWNER (d));
|
|
1005 #endif
|
|
1006 }
|
|
1007
|
|
1008 static void
|
|
1009 request_sigio_on_device (struct device *d)
|
|
1010 {
|
|
1011 int filedesc = DEVICE_INFD (d);
|
|
1012
|
502
|
1013 /* NOTE: It appears that Linux has its own mechanism for requesting
|
|
1014 SIGIO, using the F_GETSIG and F_SETSIG commands to fcntl().
|
|
1015 These let you pick which signal you want sent (not just SIGIO),
|
|
1016 and if you do this, you get additional info which tells you which
|
|
1017 file descriptor has input ready on it. The man page says:
|
|
1018
|
|
1019 Using these mechanisms, a program can implement fully
|
|
1020 asynchronous I/O without using select(2) or poll(2) most
|
|
1021 of the time.
|
|
1022
|
|
1023 The use of O_ASYNC, F_GETOWN, F_SETOWN is specific to BSD
|
|
1024 and Linux. F_GETSIG and F_SETSIG are Linux-specific.
|
|
1025 POSIX has asynchronous I/O and the aio_sigevent structure
|
|
1026 to achieve similar things; these are also available in
|
|
1027 Linux as part of the GNU C Library (Glibc).
|
|
1028
|
|
1029 But it appears that Linux also supports O_ASYNC, so I see no
|
|
1030 particular need to switch. --ben
|
|
1031 */
|
|
1032
|
|
1033 #if defined (I_SETSIG) && !defined (HPUX10) && !defined (LINUX)
|
428
|
1034 {
|
502
|
1035 int events = 0;
|
428
|
1036 ioctl (filedesc, I_GETSIG, &events);
|
|
1037 ioctl (filedesc, I_SETSIG, events | S_INPUT);
|
|
1038 }
|
502
|
1039 #elif defined (O_ASYNC)
|
|
1040 /* Generally FASYNC and O_ASYNC are both defined, and both equal;
|
|
1041 but let's not depend on that. O_ASYNC appears to be more
|
|
1042 standard (at least the Linux include files think so), so
|
|
1043 check it first. */
|
|
1044 fcntl (filedesc, F_SETFL, fcntl (filedesc, F_GETFL, 0) | O_ASYNC);
|
428
|
1045 #elif defined (FASYNC)
|
|
1046 fcntl (filedesc, F_SETFL, fcntl (filedesc, F_GETFL, 0) | FASYNC);
|
|
1047 #elif defined (FIOSSAIOSTAT)
|
|
1048 {
|
|
1049 /* DG: Changed for HP-UX. HP-UX uses different IOCTLs for
|
|
1050 sockets and other devices for some bizarre reason. We guess
|
|
1051 that an X device is a socket, and tty devices aren't. We then
|
|
1052 use the following crud to do the appropriate thing. */
|
|
1053 int on = 1;
|
|
1054 int ioctl_status; /* ####DG: check if IOCTL succeeds here. */
|
|
1055
|
|
1056 if (DEVICE_TTY_P (d))
|
|
1057 {
|
|
1058 ioctl_status = ioctl (filedesc, FIOSSAIOSTAT, &on);
|
|
1059 }
|
|
1060 #ifdef HAVE_WINDOW_SYSTEM
|
|
1061 else if (!DEVICE_STREAM_P (d))
|
|
1062 {
|
|
1063 ioctl_status = ioctl (filedesc, FIOASYNC, &on);
|
|
1064 }
|
|
1065 #endif
|
|
1066 }
|
|
1067 #elif defined (FIOASYNC)
|
|
1068 {
|
|
1069 int on = 1;
|
|
1070 ioctl (filedesc, FIOASYNC, &on);
|
|
1071 }
|
|
1072 #endif
|
|
1073
|
|
1074 #if defined (_CX_UX) /* #### Is this crap necessary? */
|
|
1075 EMACS_UNBLOCK_SIGNAL (SIGIO);
|
|
1076 #endif
|
|
1077 }
|
|
1078
|
|
1079 static void
|
|
1080 unrequest_sigio_on_device (struct device *d)
|
|
1081 {
|
|
1082 int filedesc = DEVICE_INFD (d);
|
|
1083
|
502
|
1084 #if defined (I_SETSIG) && !defined (HPUX10) && !defined (LINUX)
|
428
|
1085 {
|
502
|
1086 int events = 0;
|
428
|
1087 ioctl (filedesc, I_GETSIG, &events);
|
|
1088 ioctl (filedesc, I_SETSIG, events & ~S_INPUT);
|
|
1089 }
|
502
|
1090 #elif defined (O_ASYNC)
|
|
1091 fcntl (filedesc, F_SETFL, fcntl (filedesc, F_GETFL, 0) & ~O_ASYNC);
|
428
|
1092 #elif defined (FASYNC)
|
|
1093 fcntl (filedesc, F_SETFL, fcntl (filedesc, F_GETFL, 0) & ~FASYNC);
|
|
1094 #elif defined (FIOSSAIOSTAT)
|
|
1095 {
|
|
1096 /* DG: Changed for HP-UX. HP-UX uses different IOCTLs for
|
|
1097 sockets and other devices for some bizarre reason. We guess
|
|
1098 that an X device is a socket, and tty devices aren't. We then
|
|
1099 use the following crud to do the appropriate thing. */
|
|
1100
|
|
1101 int off = 0;
|
|
1102 int ioctl_status;
|
|
1103
|
|
1104 /* See comment for request_sigio_on_device */
|
|
1105
|
|
1106 if (DEVICE_TTY_P (d))
|
|
1107 {
|
|
1108 ioctl_status = ioctl (filedesc, FIOSSAIOSTAT, &off);
|
|
1109 }
|
|
1110 else
|
|
1111 {
|
|
1112 ioctl_status = ioctl (filedesc, FIOASYNC, &off);
|
|
1113 }
|
|
1114 }
|
|
1115 #elif defined (FIOASYNC)
|
|
1116 {
|
|
1117 int off = 0;
|
|
1118 ioctl (filedesc, FIOASYNC, &off);
|
|
1119 }
|
|
1120 #endif
|
|
1121 }
|
|
1122
|
|
1123 void
|
|
1124 request_sigio (void)
|
|
1125 {
|
|
1126 Lisp_Object devcons, concons;
|
|
1127
|
|
1128 DEVICE_LOOP_NO_BREAK (devcons, concons)
|
|
1129 {
|
|
1130 struct device *d;
|
|
1131
|
|
1132 d = XDEVICE (XCAR (devcons));
|
|
1133
|
|
1134 if (!DEVICE_STREAM_P (d))
|
|
1135 request_sigio_on_device (d);
|
|
1136 }
|
|
1137 }
|
|
1138
|
|
1139 void
|
|
1140 unrequest_sigio (void)
|
|
1141 {
|
|
1142 Lisp_Object devcons, concons;
|
|
1143
|
|
1144 DEVICE_LOOP_NO_BREAK (devcons, concons)
|
|
1145 {
|
|
1146 struct device *d;
|
|
1147
|
|
1148 d = XDEVICE (XCAR (devcons));
|
|
1149
|
|
1150 if (!DEVICE_STREAM_P (d))
|
|
1151 unrequest_sigio_on_device (d);
|
|
1152 }
|
|
1153 }
|
|
1154
|
|
1155 #endif /* SIGIO */
|
|
1156
|
|
1157 /* ------------------------------------------------------ */
|
|
1158 /* Changing Emacs's process group */
|
|
1159 /* ------------------------------------------------------ */
|
|
1160
|
|
1161 /* Saving and restoring the process group of Emacs's terminal. */
|
|
1162
|
|
1163 /* On some systems, apparently (?!) Emacs must be in its own process
|
|
1164 group in order to receive SIGIO correctly. On other systems
|
|
1165 (e.g. Solaris), it's not required and doing it makes things
|
|
1166 get fucked up. So, we only do it when
|
|
1167 SIGIO_REQUIRES_SEPARATE_PROCESS_GROUP is defined. Basically,
|
|
1168 this is only required for BSD 4.2 systems. (Actually, I bet
|
|
1169 we don't have to do this at all -- those systems also
|
|
1170 required interrupt input, which we don't support.)
|
|
1171
|
|
1172 If Emacs was in its own process group (i.e. inherited_pgroup ==
|
|
1173 getpid ()), then we know we're running under a shell with job
|
|
1174 control (Emacs would never be run as part of a pipeline).
|
|
1175 Everything is fine.
|
|
1176
|
|
1177 If Emacs was not in its own process group, then we know we're
|
|
1178 running under a shell (or a caller) that doesn't know how to
|
|
1179 separate itself from Emacs (like sh). Emacs must be in its own
|
|
1180 process group in order to receive SIGIO correctly. In this
|
|
1181 situation, we put ourselves in our own pgroup, forcibly set the
|
|
1182 tty's pgroup to our pgroup, and make sure to restore and reinstate
|
|
1183 the tty's pgroup just like any other terminal setting. If
|
|
1184 inherited_group was not the tty's pgroup, then we'll get a
|
|
1185 SIGTTmumble when we try to change the tty's pgroup, and a CONT if
|
|
1186 it goes foreground in the future, which is what should happen. */
|
|
1187
|
|
1188 #ifdef SIGIO_REQUIRES_SEPARATE_PROCESS_GROUP
|
|
1189
|
442
|
1190 static pid_t inherited_pgroup;
|
|
1191 static pid_t inherited_tty_pgroup;
|
428
|
1192
|
|
1193 #endif
|
|
1194
|
|
1195 void
|
|
1196 munge_tty_process_group (void)
|
|
1197 {
|
|
1198 #ifdef SIGIO_REQUIRES_SEPARATE_PROCESS_GROUP
|
|
1199 if (noninteractive)
|
|
1200 return;
|
|
1201
|
|
1202 /* Only do this munging if we have a device on the controlling
|
|
1203 terminal. See the large comment below. */
|
|
1204
|
|
1205 if (CONSOLEP (Vcontrolling_terminal) &&
|
|
1206 CONSOLE_LIVE_P (XCONSOLE (Vcontrolling_terminal)))
|
|
1207 {
|
|
1208 int fd = open ("/dev/tty", O_RDWR, 0);
|
442
|
1209 pid_t me = getpid ();
|
428
|
1210 EMACS_BLOCK_SIGNAL (SIGTTOU);
|
|
1211 EMACS_SET_TTY_PROCESS_GROUP (fd, &me);
|
|
1212 EMACS_UNBLOCK_SIGNAL (SIGTTOU);
|
771
|
1213 retry_close (fd);
|
428
|
1214 }
|
|
1215 #endif
|
|
1216 }
|
|
1217
|
|
1218 /* Split off the foreground process group to Emacs alone.
|
|
1219 When we are in the foreground, but not started in our own process
|
|
1220 group, redirect the TTY to point to our own process group. We need
|
|
1221 to be in our own process group to receive SIGIO properly. */
|
|
1222 static void
|
|
1223 munge_process_groups (void)
|
|
1224 {
|
|
1225 #ifdef SIGIO_REQUIRES_SEPARATE_PROCESS_GROUP
|
|
1226 if (noninteractive)
|
|
1227 return;
|
|
1228
|
|
1229 EMACS_SEPARATE_PROCESS_GROUP ();
|
|
1230
|
|
1231 munge_tty_process_group ();
|
|
1232 #endif
|
|
1233 }
|
|
1234
|
|
1235 void
|
|
1236 unmunge_tty_process_group (void)
|
|
1237 {
|
|
1238 #ifdef SIGIO_REQUIRES_SEPARATE_PROCESS_GROUP
|
|
1239 {
|
|
1240 int fd = open ("/dev/tty", O_RDWR, 0);
|
|
1241 EMACS_BLOCK_SIGNAL (SIGTTOU);
|
|
1242 EMACS_SET_TTY_PROCESS_GROUP (fd, &inherited_tty_pgroup);
|
|
1243 EMACS_UNBLOCK_SIGNAL (SIGTTOU);
|
771
|
1244 retry_close (fd);
|
428
|
1245 }
|
|
1246 #endif
|
|
1247 }
|
|
1248
|
|
1249 /* Set the tty to our original foreground group.
|
|
1250 Also restore the original process group (put us back into sh's
|
|
1251 process group), so that ^Z will suspend both us and sh. */
|
|
1252 static void
|
|
1253 unmunge_process_groups (void)
|
|
1254 {
|
|
1255 #ifdef SIGIO_REQUIRES_SEPARATE_PROCESS_GROUP
|
|
1256 if (noninteractive)
|
|
1257 return;
|
|
1258
|
|
1259 unmunge_tty_process_group ();
|
|
1260
|
|
1261 EMACS_SET_PROCESS_GROUP (inherited_pgroup);
|
|
1262 #endif
|
|
1263 }
|
|
1264
|
|
1265 /* According to some old wisdom, we need to be in a separate process
|
|
1266 group for SIGIO to work correctly (at least on some systems ...).
|
|
1267 So go ahead and put ourselves into our own process group. This
|
|
1268 will fail if we're already in our own process group, but who cares.
|
|
1269 Also record whether we were in our own process group. (In general,
|
|
1270 we will already be in our own process group if we were started from
|
|
1271 a job-control shell like csh, but not if we were started from sh).
|
|
1272
|
|
1273 If we succeeded in changing our process group, then we will no
|
|
1274 longer be in the foreground process group of our controlling
|
|
1275 terminal. Therefore, if we have a console open onto this terminal,
|
|
1276 we have to change the controlling terminal's foreground process
|
|
1277 group (otherwise we will get stopped with a SIGTTIN signal when
|
|
1278 attempting to read from the terminal). It's important,
|
|
1279 however, that we do this *only* when we have a console open onto
|
|
1280 the terminal. It's a decidedly bad idea to do so otherwise,
|
|
1281 especially if XEmacs was started from the background. */
|
|
1282
|
|
1283 void
|
|
1284 init_process_group (void)
|
|
1285 {
|
|
1286 #ifdef SIGIO_REQUIRES_SEPARATE_PROCESS_GROUP
|
|
1287 if (! noninteractive)
|
|
1288 {
|
|
1289 int fd = open ("/dev/tty", O_RDWR, 0);
|
|
1290 inherited_pgroup = EMACS_GET_PROCESS_GROUP ();
|
|
1291 EMACS_GET_TTY_PROCESS_GROUP (fd, &inherited_tty_pgroup);
|
771
|
1292 retry_close (fd);
|
428
|
1293 EMACS_SEPARATE_PROCESS_GROUP ();
|
|
1294 }
|
|
1295 #endif
|
|
1296 }
|
|
1297
|
|
1298 void
|
|
1299 disconnect_controlling_terminal (void)
|
|
1300 {
|
|
1301 # ifdef HAVE_SETSID
|
|
1302 /* Controlling terminals are attached to a session.
|
|
1303 Create a new session for us; it will have no controlling
|
|
1304 terminal. This also, of course, puts us in our own
|
|
1305 process group. */
|
|
1306 setsid ();
|
|
1307 # else
|
|
1308 /* Put us in our own process group. */
|
|
1309 EMACS_SEPARATE_PROCESS_GROUP ();
|
|
1310 # if defined (TIOCNOTTY)
|
|
1311 /* This is the older way of disconnecting the controlling
|
|
1312 terminal, on 4.3 BSD. We must open /dev/tty; using
|
|
1313 filedesc 0 is not sufficient because it could be
|
|
1314 something else (e.g. our stdin was redirected to
|
|
1315 another terminal).
|
|
1316 */
|
|
1317 {
|
|
1318 int j = open ("/dev/tty", O_RDWR, 0);
|
|
1319 ioctl (j, TIOCNOTTY, 0);
|
771
|
1320 retry_close (j);
|
428
|
1321 }
|
|
1322 # endif /* TIOCNOTTY */
|
|
1323 /*
|
|
1324 On systems without TIOCNOTTY and without
|
|
1325 setsid(), we don't need to do anything more to
|
|
1326 disconnect our controlling terminal. Here is
|
|
1327 what the man page for termio(7) from a SYSV 3.2
|
|
1328 system says:
|
|
1329
|
|
1330 "The first terminal file opened by the process group leader
|
|
1331 of a terminal file not already associated with a process
|
|
1332 group becomes the control terminal for that process group.
|
|
1333 The control terminal plays a special role in handling quit
|
|
1334 and interrupt signals, as discussed below. The control
|
|
1335 terminal is inherited by a child process during a fork(2).
|
|
1336 A process can break this association by changing its process
|
|
1337 group using setpgrp(2)."
|
|
1338
|
|
1339 */
|
|
1340 # endif /* not HAVE_SETSID */
|
|
1341 }
|
|
1342
|
|
1343
|
|
1344 /* ------------------------------------------------------ */
|
|
1345 /* Getting and setting emacs_tty structures */
|
|
1346 /* ------------------------------------------------------ */
|
|
1347
|
|
1348 /* It's wrong to encase these into #ifdef HAVE_TTY because we need
|
|
1349 them for child TTY processes. */
|
|
1350 /* However, this does break NT support while we don't do child TTY processes */
|
442
|
1351 #ifndef WIN32_NATIVE
|
428
|
1352
|
|
1353 /* Set *TC to the parameters associated with the terminal FD.
|
|
1354 Return zero if all's well, or -1 if we ran into an error we
|
|
1355 couldn't deal with. */
|
|
1356 int
|
|
1357 emacs_get_tty (int fd, struct emacs_tty *settings)
|
|
1358 {
|
|
1359 /* Retrieve the primary parameters - baud rate, character size, etcetera. */
|
|
1360 #ifdef HAVE_TCATTR
|
|
1361 /* We have those nifty POSIX tcmumbleattr functions. */
|
|
1362 if (tcgetattr (fd, &settings->main) < 0)
|
|
1363 return -1;
|
|
1364
|
|
1365 #elif defined HAVE_TERMIO
|
|
1366 /* The SYSV-style interface? */
|
|
1367 if (ioctl (fd, TCGETA, &settings->main) < 0)
|
|
1368 return -1;
|
|
1369
|
814
|
1370 #else
|
428
|
1371 /* I give up - I hope you have the BSD ioctls. */
|
|
1372 if (ioctl (fd, TIOCGETP, &settings->main) < 0)
|
|
1373 return -1;
|
|
1374 #endif /* HAVE_TCATTR */
|
|
1375
|
|
1376 /* Suivant - Do we have to get struct ltchars data? */
|
|
1377 #ifdef HAVE_LTCHARS
|
|
1378 if (ioctl (fd, TIOCGLTC, &settings->ltchars) < 0)
|
|
1379 return -1;
|
|
1380 #endif
|
|
1381
|
|
1382 /* How about a struct tchars and a wordful of lmode bits? */
|
|
1383 #ifdef HAVE_TCHARS
|
|
1384 if (ioctl (fd, TIOCGETC, &settings->tchars) < 0
|
|
1385 || ioctl (fd, TIOCLGET, &settings->lmode) < 0)
|
|
1386 return -1;
|
|
1387 #endif
|
|
1388
|
|
1389 /* We have survived the tempest. */
|
|
1390 return 0;
|
|
1391 }
|
|
1392
|
|
1393 /* Set the parameters of the tty on FD according to the contents of
|
|
1394 *SETTINGS. If FLUSHP is non-zero, we discard input.
|
430
|
1395 Return 0 if all went well, and -1 if anything failed.
|
|
1396 #### All current callers use FLUSHP == 0. */
|
428
|
1397
|
|
1398 int
|
|
1399 emacs_set_tty (int fd, struct emacs_tty *settings, int flushp)
|
|
1400 {
|
|
1401 /* Set the primary parameters - baud rate, character size, etcetera. */
|
|
1402 #ifdef HAVE_TCATTR
|
|
1403 int i;
|
|
1404 /* We have those nifty POSIX tcmumbleattr functions.
|
|
1405 William J. Smith <wjs@wiis.wang.com> writes:
|
|
1406 "POSIX 1003.1 defines tcsetattr() to return success if it was
|
|
1407 able to perform any of the requested actions, even if some
|
|
1408 of the requested actions could not be performed.
|
|
1409 We must read settings back to ensure tty setup properly.
|
|
1410 AIX requires this to keep tty from hanging occasionally." */
|
|
1411 /* This makes sure that we don't loop indefinitely in here. */
|
|
1412 for (i = 0 ; i < 10 ; i++)
|
|
1413 if (tcsetattr (fd, flushp ? TCSAFLUSH : TCSADRAIN, &settings->main) < 0)
|
|
1414 {
|
|
1415 if (errno == EINTR)
|
|
1416 continue;
|
|
1417 else
|
|
1418 return -1;
|
|
1419 }
|
|
1420 else
|
|
1421 {
|
|
1422 struct termios new;
|
|
1423
|
|
1424 /* Get the current settings, and see if they're what we asked for. */
|
|
1425 tcgetattr (fd, &new);
|
|
1426 /* We cannot use memcmp on the whole structure here because under
|
|
1427 * aix386 the termios structure has some reserved field that may
|
|
1428 * not be filled in.
|
|
1429 */
|
|
1430 if ( new.c_iflag == settings->main.c_iflag
|
|
1431 && new.c_oflag == settings->main.c_oflag
|
|
1432 && new.c_cflag == settings->main.c_cflag
|
|
1433 && new.c_lflag == settings->main.c_lflag
|
|
1434 && memcmp(new.c_cc, settings->main.c_cc, NCCS) == 0)
|
|
1435 break;
|
|
1436 else
|
|
1437 continue;
|
|
1438 }
|
|
1439 #elif defined HAVE_TERMIO
|
|
1440 /* The SYSV-style interface? */
|
|
1441 if (ioctl (fd, flushp ? TCSETAF : TCSETAW, &settings->main) < 0)
|
|
1442 return -1;
|
|
1443
|
814
|
1444 #else
|
428
|
1445 /* I give up - I hope you have the BSD ioctls. */
|
|
1446 if (ioctl (fd, (flushp) ? TIOCSETP : TIOCSETN, &settings->main) < 0)
|
|
1447 return -1;
|
|
1448 #endif /* HAVE_TCATTR */
|
|
1449
|
|
1450 /* Suivant - Do we have to get struct ltchars data? */
|
|
1451 #ifdef HAVE_LTCHARS
|
|
1452 if (ioctl (fd, TIOCSLTC, &settings->ltchars) < 0)
|
|
1453 return -1;
|
|
1454 #endif
|
|
1455
|
|
1456 /* How about a struct tchars and a wordful of lmode bits? */
|
|
1457 #ifdef HAVE_TCHARS
|
|
1458 if (ioctl (fd, TIOCSETC, &settings->tchars) < 0
|
|
1459 || ioctl (fd, TIOCLSET, &settings->lmode) < 0)
|
|
1460 return -1;
|
|
1461 #endif
|
|
1462
|
|
1463 /* We have survived the tempest. */
|
|
1464 return 0;
|
|
1465 }
|
|
1466
|
442
|
1467 #endif /* WIN32_NATIVE */
|
428
|
1468
|
|
1469 /* ------------------------------------------------------ */
|
|
1470 /* Initializing a device */
|
|
1471 /* ------------------------------------------------------ */
|
|
1472
|
|
1473 #ifdef HAVE_TTY
|
|
1474
|
|
1475 /* This may also be defined in stdio,
|
|
1476 but if so, this does no harm,
|
|
1477 and using the same name avoids wasting the other one's space. */
|
|
1478
|
|
1479 #if ((defined(USG) || defined(DGUX)) && !defined(__STDC__))
|
|
1480 char _sobuf[BUFSIZ+8];
|
|
1481 #elif (defined(USG) && !defined(LINUX) && !defined(_SCO_DS)) || defined(IRIX5)
|
|
1482 extern unsigned char _sobuf[BUFSIZ+8];
|
|
1483 #else
|
|
1484 char _sobuf[BUFSIZ];
|
|
1485 #endif
|
|
1486
|
|
1487 #if defined (TIOCGLTC) && defined (HAVE_LTCHARS) /* HAVE_LTCHARS */
|
|
1488 static struct ltchars new_ltchars = {-1,-1,-1,-1,-1,-1};
|
|
1489 #endif
|
|
1490 #ifdef TIOCGETC /* HAVE_TCHARS */
|
|
1491 #ifdef HAVE_TCHARS
|
|
1492 static struct tchars new_tchars = {-1,-1,-1,-1,-1,-1};
|
|
1493 #endif
|
|
1494 #endif
|
|
1495
|
|
1496 static void
|
|
1497 tty_init_sys_modes_on_device (struct device *d)
|
|
1498 {
|
|
1499 struct emacs_tty tty;
|
2286
|
1500 int input_fd;
|
|
1501 #if defined (IBMR2AIX) && defined (AIXHFT)
|
|
1502 int output_fd;
|
|
1503 #endif
|
428
|
1504 struct console *con = XCONSOLE (DEVICE_CONSOLE (d));
|
|
1505
|
|
1506 input_fd = CONSOLE_TTY_DATA (con)->infd;
|
2286
|
1507 #if defined (IBMR2AIX) && defined (AIXHFT)
|
428
|
1508 output_fd = CONSOLE_TTY_DATA (con)->outfd;
|
2286
|
1509 #endif
|
428
|
1510
|
430
|
1511 emacs_get_tty (input_fd, &CONSOLE_TTY_DATA (con)->old_tty);
|
428
|
1512 tty = CONSOLE_TTY_DATA (con)->old_tty;
|
|
1513
|
|
1514 con->tty_erase_char = Qnil;
|
|
1515
|
|
1516 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
|
|
1517 /* after all those years... */
|
|
1518 con->tty_erase_char = make_char (tty.main.c_cc[VERASE]);
|
|
1519 #ifdef DGUX
|
|
1520 /* This allows meta to be sent on 8th bit. */
|
|
1521 tty.main.c_iflag &= ~INPCK; /* don't check input for parity */
|
|
1522 #endif
|
|
1523 tty.main.c_iflag |= (IGNBRK); /* Ignore break condition */
|
|
1524 tty.main.c_iflag &= ~ICRNL; /* Disable map of CR to NL on input */
|
|
1525 #ifdef ISTRIP
|
|
1526 tty.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
|
|
1527 #endif
|
|
1528 tty.main.c_lflag &= ~ECHO; /* Disable echo */
|
|
1529 tty.main.c_lflag &= ~ICANON; /* Disable erase/kill processing */
|
|
1530 #ifdef IEXTEN
|
|
1531 tty.main.c_lflag &= ~IEXTEN; /* Disable other editing characters. */
|
|
1532 #endif
|
|
1533 tty.main.c_lflag |= ISIG; /* Enable signals */
|
|
1534 if (TTY_FLAGS (con).flow_control)
|
|
1535 {
|
|
1536 tty.main.c_iflag |= IXON; /* Enable start/stop output control */
|
|
1537 #ifdef IXANY
|
|
1538 tty.main.c_iflag &= ~IXANY;
|
|
1539 #endif /* IXANY */
|
|
1540 }
|
|
1541 else
|
|
1542 tty.main.c_iflag &= ~IXON; /* Disable start/stop output control */
|
|
1543 tty.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL
|
|
1544 on output */
|
513
|
1545
|
|
1546 #if 0
|
|
1547 /* We used to disable tab expansion here, but this is the user's decision. */
|
|
1548 #if defined (TABDLY) && defined (TAB3)
|
|
1549 if ((tty.main.c_oflag & TABDLY) == TAB3)
|
|
1550 tty.main.c_oflag &= ~TABDLY; /* Disable tab expansion (Posix). */
|
|
1551 #elif defined (OXTABS)
|
|
1552 tty.main.c_oflag &= ~OXTABS; /* Disable tab expansion (BSD). */
|
|
1553 #endif
|
|
1554 #endif /* 0 */
|
|
1555
|
428
|
1556 #ifdef CS8
|
|
1557 if (TTY_FLAGS (con).meta_key)
|
|
1558 {
|
|
1559 tty.main.c_cflag |= CS8; /* allow 8th bit on input */
|
|
1560 tty.main.c_cflag &= ~PARENB;/* Don't check parity */
|
|
1561 }
|
|
1562 #endif
|
|
1563 if (CONSOLE_TTY_DATA (con)->controlling_terminal)
|
|
1564 {
|
1204
|
1565 tty.main.c_cc[VINTR] = /* C-g (usually) gives SIGINT */
|
|
1566 event_to_character (CONSOLE_QUIT_EVENT (con), 0, 1, 0);
|
428
|
1567 /* Set up C-g for both SIGQUIT and SIGINT.
|
|
1568 We don't know which we will get, but we handle both alike
|
|
1569 so which one it really gives us does not matter. */
|
1204
|
1570 tty.main.c_cc[VQUIT] = tty.main.c_cc[VINTR];
|
428
|
1571 }
|
|
1572 else
|
|
1573 {
|
|
1574 tty.main.c_cc[VINTR] = _POSIX_VDISABLE;
|
|
1575 tty.main.c_cc[VQUIT] = _POSIX_VDISABLE;
|
|
1576 }
|
|
1577 tty.main.c_cc[VMIN] = 1; /* Input should wait for at
|
|
1578 least 1 char */
|
|
1579 tty.main.c_cc[VTIME] = 0; /* no matter how long that takes. */
|
|
1580 #ifdef VSWTCH
|
|
1581 tty.main.c_cc[VSWTCH] = _POSIX_VDISABLE; /* Turn off shell layering use
|
|
1582 of C-z */
|
|
1583 #endif /* VSWTCH */
|
|
1584 /* There was some conditionalizing here on (mips or TCATTR), but
|
|
1585 I think that's wrong. There was one report of C-y (DSUSP) not being
|
|
1586 disabled on HP9000s700 systems, and this might fix it. */
|
|
1587 #ifdef VSUSP
|
|
1588 tty.main.c_cc[VSUSP] = _POSIX_VDISABLE; /* Turn off mips handling of C-z. */
|
|
1589 #endif /* VSUSP */
|
|
1590 #ifdef V_DSUSP
|
|
1591 tty.main.c_cc[V_DSUSP] = _POSIX_VDISABLE; /* Turn off mips handling of C-y. */
|
|
1592 #endif /* V_DSUSP */
|
|
1593 #ifdef VDSUSP /* Some systems have VDSUSP, some have V_DSUSP. */
|
|
1594 tty.main.c_cc[VDSUSP] = _POSIX_VDISABLE;
|
|
1595 #endif /* VDSUSP */
|
|
1596 #ifdef VLNEXT
|
|
1597 tty.main.c_cc[VLNEXT] = _POSIX_VDISABLE;
|
|
1598 #endif /* VLNEXT */
|
|
1599 #ifdef VREPRINT
|
|
1600 tty.main.c_cc[VREPRINT] = _POSIX_VDISABLE;
|
|
1601 #endif /* VREPRINT */
|
|
1602 #ifdef VWERASE
|
|
1603 tty.main.c_cc[VWERASE] = _POSIX_VDISABLE;
|
|
1604 #endif /* VWERASE */
|
|
1605 #ifdef VDISCARD
|
|
1606 tty.main.c_cc[VDISCARD] = _POSIX_VDISABLE;
|
|
1607 #endif /* VDISCARD */
|
|
1608 #ifdef VSTART
|
|
1609 tty.main.c_cc[VSTART] = _POSIX_VDISABLE;
|
|
1610 #endif /* VSTART */
|
|
1611 #ifdef VSTRT
|
|
1612 tty.main.c_cc[VSTRT] = _POSIX_VDISABLE; /* called VSTRT on some systems */
|
|
1613 #endif /* VSTART */
|
|
1614 #ifdef VSTOP
|
|
1615 tty.main.c_cc[VSTOP] = _POSIX_VDISABLE;
|
|
1616 #endif /* VSTOP */
|
|
1617 #ifdef SET_LINE_DISCIPLINE
|
|
1618 /* Need to explicitly request TERMIODISC line discipline or
|
|
1619 Ultrix's termios does not work correctly. */
|
|
1620 tty.main.c_line = SET_LINE_DISCIPLINE;
|
|
1621 #endif
|
|
1622
|
|
1623 #ifdef AIX
|
|
1624 #ifndef IBMR2AIX
|
|
1625 /* AIX enhanced edit loses NULs, so disable it. */
|
|
1626 tty.main.c_line = 0;
|
|
1627 tty.main.c_iflag &= ~ASCEDIT;
|
|
1628 #else
|
|
1629 tty.main.c_cc[VSTRT] = 255;
|
|
1630 tty.main.c_cc[VSTOP] = 255;
|
|
1631 tty.main.c_cc[VSUSP] = 255;
|
|
1632 tty.main.c_cc[VDSUSP] = 255;
|
|
1633 #endif /* IBMR2AIX */
|
|
1634 /* Also, PTY overloads NUL and BREAK.
|
|
1635 don't ignore break, but don't signal either, so it looks like NUL.
|
|
1636 This really serves a purpose only if running in an XTERM window
|
|
1637 or via TELNET or the like, but does no harm elsewhere. */
|
|
1638 tty.main.c_iflag &= ~IGNBRK;
|
|
1639 tty.main.c_iflag &= ~BRKINT;
|
|
1640 #endif /* AIX */
|
|
1641 #else /* if not HAVE_TERMIO */
|
|
1642 con->tty_erase_char = make_char (tty.main.sg_erase);
|
|
1643 tty.main.sg_flags &= ~(ECHO | CRMOD | XTABS);
|
|
1644 if (TTY_FLAGS (con).meta_key)
|
|
1645 tty.main.sg_flags |= ANYP;
|
|
1646 /* #### should we be using RAW mode here? */
|
|
1647 tty.main.sg_flags |= /* interrupt_input ? RAW : */ CBREAK;
|
|
1648 #endif /* not HAVE_TERMIO */
|
|
1649
|
|
1650 /* If going to use CBREAK mode, we must request C-g to interrupt
|
|
1651 and turn off start and stop chars, etc. If not going to use
|
|
1652 CBREAK mode, do this anyway so as to turn off local flow
|
|
1653 control for user coming over network on 4.2; in this case,
|
|
1654 only t_stopc and t_startc really matter. */
|
|
1655 #ifndef HAVE_TERMIO
|
|
1656 #ifdef HAVE_TCHARS
|
|
1657 /* Note: if not using CBREAK mode, it makes no difference how we
|
|
1658 set this */
|
|
1659 tty.tchars = new_tchars;
|
1204
|
1660 tty.tchars.t_intrc = event_to_character (CONSOLE_QUIT_EVENT (con), 0, 1, 0);
|
428
|
1661 if (TTY_FLAGS (con).flow_control)
|
|
1662 {
|
|
1663 tty.tchars.t_startc = '\021';
|
|
1664 tty.tchars.t_stopc = '\023';
|
|
1665 }
|
|
1666
|
|
1667 tty.lmode = LDECCTQ | LLITOUT | LPASS8 | LNOFLSH |
|
|
1668 CONSOLE_TTY_DATA (con)->old_tty.lmode;
|
|
1669
|
|
1670 #if defined (ultrix) || defined (__bsdi__)
|
|
1671 /* Under Ultrix 4.2a, leaving this out doesn't seem to hurt
|
|
1672 anything, and leaving it in breaks the meta key. Go figure. */
|
|
1673 /* Turning off ONLCR is enough under BSD/386. Leave the general
|
|
1674 output post-processing flag alone since for some reason it
|
|
1675 doesn't get reset after XEmacs goes away. */
|
|
1676 tty.lmode &= ~LLITOUT;
|
|
1677 #endif
|
|
1678
|
|
1679 #endif /* HAVE_TCHARS */
|
|
1680 #endif /* not HAVE_TERMIO */
|
|
1681
|
|
1682 #ifdef HAVE_LTCHARS
|
|
1683 tty.ltchars = new_ltchars;
|
|
1684 #endif /* HAVE_LTCHARS */
|
|
1685
|
430
|
1686 emacs_set_tty (input_fd, &tty, 0);
|
428
|
1687
|
|
1688 /* This code added to insure that, if flow-control is not to be used,
|
|
1689 we have an unlocked terminal at the start. */
|
|
1690
|
|
1691 #ifdef TCXONC
|
|
1692 if (!TTY_FLAGS (con).flow_control) ioctl (input_fd, TCXONC, 1);
|
|
1693 #endif
|
|
1694 #ifdef TIOCSTART
|
|
1695 if (!TTY_FLAGS (con).flow_control) ioctl (input_fd, TIOCSTART, 0);
|
|
1696 #endif
|
|
1697
|
|
1698 #if defined (HAVE_TERMIOS) || defined (HPUX9)
|
|
1699 #ifdef TCOON
|
|
1700 if (!TTY_FLAGS (con).flow_control) tcflow (input_fd, TCOON);
|
|
1701 #endif
|
|
1702 #endif
|
|
1703 #ifdef AIXHFT
|
|
1704 hft_init (con);
|
|
1705 #ifdef IBMR2AIX
|
|
1706 {
|
|
1707 /* IBM's HFT device usually thinks a ^J should be LF/CR.
|
|
1708 We need it to be only LF. This is the way that is
|
|
1709 done. */
|
|
1710 struct termio tty;
|
|
1711
|
|
1712 if (ioctl (output_fd, HFTGETID, &tty) != -1)
|
771
|
1713 retry_write (output_fd, "\033[20l", 5);
|
428
|
1714 }
|
|
1715 #endif
|
|
1716 #endif
|
|
1717
|
|
1718 #if 0 /* We do our own buffering with lstreams. */
|
|
1719 #ifdef _IOFBF
|
|
1720 /* This symbol is defined on recent USG systems.
|
|
1721 Someone says without this call USG won't really buffer the file
|
|
1722 even with a call to setbuf. */
|
647
|
1723 setvbuf (CONSOLE_TTY_DATA (con)->outfd, (char *) _sobuf, _IOFBF,
|
|
1724 sizeof (_sobuf));
|
428
|
1725 #else
|
|
1726 setbuf (CONSOLE_TTY_DATA (con)->outfd, (char *) _sobuf);
|
|
1727 #endif
|
|
1728 #endif
|
|
1729 set_tty_modes (con);
|
|
1730 }
|
|
1731
|
|
1732 #endif /* HAVE_TTY */
|
|
1733
|
|
1734 void
|
|
1735 init_one_device (struct device *d)
|
|
1736 {
|
|
1737 #ifdef HAVE_TTY
|
|
1738 if (DEVICE_TTY_P (d))
|
|
1739 tty_init_sys_modes_on_device (d);
|
|
1740 #endif
|
|
1741 #if defined(SIGIO) && !defined(BROKEN_SIGIO)
|
|
1742 if (!DEVICE_STREAM_P (d))
|
|
1743 {
|
|
1744 init_sigio_on_device (d);
|
|
1745 request_sigio_on_device (d);
|
|
1746 }
|
|
1747 #endif
|
|
1748 }
|
|
1749
|
|
1750 void
|
|
1751 init_one_console (struct console *con)
|
|
1752 {
|
|
1753 Lisp_Object devcons;
|
|
1754
|
|
1755 CONSOLE_DEVICE_LOOP (devcons, con)
|
|
1756 {
|
|
1757 struct device *d = XDEVICE (XCAR (devcons));
|
|
1758
|
|
1759 init_one_device (d);
|
|
1760 }
|
|
1761 }
|
|
1762
|
|
1763 void
|
|
1764 reinit_initial_console (void)
|
|
1765 {
|
|
1766 munge_process_groups ();
|
|
1767 if (CONSOLEP (Vcontrolling_terminal) &&
|
|
1768 CONSOLE_LIVE_P (XCONSOLE (Vcontrolling_terminal)))
|
|
1769 init_one_console (XCONSOLE (Vcontrolling_terminal));
|
|
1770 }
|
|
1771
|
|
1772
|
|
1773 /* ------------------------------------------------------ */
|
|
1774 /* Other TTY functions */
|
|
1775 /* ------------------------------------------------------ */
|
|
1776
|
|
1777 #ifdef HAVE_TTY
|
|
1778
|
|
1779 #if 0 /* not currently used */
|
|
1780
|
|
1781 /* Return nonzero if safe to use tabs in output.
|
|
1782 At the time this is called, init_sys_modes has not been done yet. */
|
|
1783
|
|
1784 int
|
|
1785 tabs_safe_p (struct device *d)
|
|
1786 {
|
|
1787 #ifdef HAVE_TTY
|
|
1788 if (DEVICE_TTY_P (d))
|
|
1789 {
|
|
1790 struct emacs_tty tty;
|
|
1791
|
430
|
1792 emacs_get_tty (DEVICE_INFD (d), &tty);
|
428
|
1793 return EMACS_TTY_TABS_OK (&tty);
|
|
1794 }
|
|
1795 #endif
|
|
1796 return 1;
|
|
1797 }
|
|
1798
|
|
1799 #endif /* 0 */
|
|
1800
|
|
1801 /* Get terminal size from system.
|
|
1802 Store number of lines into *heightp and width into *widthp.
|
|
1803 If zero or a negative number is stored, the value is not valid. */
|
|
1804
|
|
1805 void
|
|
1806 get_tty_device_size (struct device *d, int *widthp, int *heightp)
|
|
1807 {
|
|
1808 int input_fd = DEVICE_INFD (d);
|
|
1809
|
|
1810 assert (DEVICE_TTY_P (d));
|
|
1811
|
|
1812 #ifdef TIOCGWINSZ
|
|
1813 {
|
|
1814 /* BSD-style. */
|
|
1815 struct winsize size;
|
|
1816
|
|
1817 if (ioctl (input_fd, TIOCGWINSZ, &size) == -1)
|
|
1818 *widthp = *heightp = 0;
|
|
1819 else
|
|
1820 {
|
|
1821 *widthp = size.ws_col;
|
|
1822 *heightp = size.ws_row;
|
|
1823 }
|
|
1824 }
|
|
1825 #elif defined TIOCGSIZE
|
|
1826 {
|
|
1827 /* SunOS - style. */
|
|
1828 struct ttysize size;
|
|
1829
|
|
1830 if (ioctl (input_fd, TIOCGSIZE, &size) == -1)
|
|
1831 *widthp = *heightp = 0;
|
|
1832 else
|
|
1833 {
|
|
1834 *widthp = size.ts_cols;
|
|
1835 *heightp = size.ts_lines;
|
|
1836 }
|
|
1837 }
|
|
1838 #else /* system doesn't know size */
|
|
1839
|
|
1840 *widthp = 0;
|
|
1841 *heightp = 0;
|
|
1842
|
|
1843 #endif /* not !TIOCGWINSZ */
|
|
1844 }
|
|
1845
|
|
1846 #endif /* HAVE_TTY */
|
|
1847
|
|
1848
|
|
1849 /* ------------------------------------------------------ */
|
|
1850 /* Is device 8 bit ? */
|
|
1851 /* ------------------------------------------------------ */
|
|
1852
|
|
1853 #ifdef HAVE_TTY
|
|
1854
|
|
1855 int
|
|
1856 eight_bit_tty (struct device *d)
|
|
1857 {
|
|
1858 struct emacs_tty s;
|
|
1859 int input_fd;
|
|
1860 int eight_bit = 0;
|
|
1861
|
|
1862 assert (DEVICE_TTY_P (d));
|
|
1863 input_fd = DEVICE_INFD (d);
|
|
1864
|
430
|
1865 emacs_get_tty (input_fd, &s);
|
428
|
1866
|
|
1867 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
|
|
1868 eight_bit = (s.main.c_cflag & CSIZE) == CS8;
|
|
1869 #else
|
|
1870 eight_bit = 0; /* I don't know how to do it */
|
|
1871 #endif
|
|
1872 return eight_bit;
|
|
1873 }
|
|
1874
|
|
1875 #endif /* HAVE_TTY */
|
|
1876
|
|
1877
|
|
1878 /* ------------------------------------------------------ */
|
|
1879 /* Resetting a device */
|
|
1880 /* ------------------------------------------------------ */
|
|
1881
|
|
1882 #ifdef HAVE_TTY
|
|
1883
|
|
1884 /* Prepare the terminal for exiting Emacs; move the cursor to the
|
|
1885 bottom of the frame, turn off interrupt-driven I/O, etc. */
|
|
1886 static void
|
|
1887 tty_reset_sys_modes_on_device (struct device *d)
|
|
1888 {
|
2286
|
1889 #if defined (BSD) || (defined (IBMR2AIX) && defined (AIXHFT))
|
|
1890 int output_fd;
|
|
1891 #endif
|
|
1892 int input_fd;
|
428
|
1893 struct console *con = XCONSOLE (DEVICE_CONSOLE (d));
|
|
1894
|
|
1895 input_fd = CONSOLE_TTY_DATA (con)->infd;
|
2286
|
1896 #if defined (BSD) || (defined (IBMR2AIX) && defined (AIXHFT))
|
428
|
1897 output_fd = CONSOLE_TTY_DATA (con)->outfd;
|
2286
|
1898 #endif
|
428
|
1899
|
|
1900 #if defined (IBMR2AIX) && defined (AIXHFT)
|
|
1901 {
|
|
1902 /* HFT consoles normally use ^J as a LF/CR. We forced it to
|
|
1903 do the LF only. Now, we need to reset it. */
|
|
1904 struct termio tty;
|
|
1905
|
|
1906 if (ioctl (output_fd, HFTGETID, &tty) != -1)
|
771
|
1907 retry_write (output_fd, "\033[20h", 5);
|
428
|
1908 }
|
|
1909 #endif
|
|
1910
|
|
1911 tty_redisplay_shutdown (con);
|
|
1912 /* reset_tty_modes() flushes the connection at its end. */
|
|
1913 reset_tty_modes (con);
|
|
1914
|
|
1915 #if defined (BSD)
|
|
1916 /* Avoid possible loss of output when changing terminal modes. */
|
|
1917 fsync (output_fd);
|
|
1918 #endif
|
|
1919
|
430
|
1920 while (emacs_set_tty (input_fd, &CONSOLE_TTY_DATA (con)->old_tty, 0)
|
428
|
1921 < 0 && errno == EINTR)
|
|
1922 ;
|
|
1923
|
|
1924 #ifdef SET_LINE_DISCIPLINE
|
|
1925 /* Ultrix's termios *ignores* any line discipline except TERMIODISC.
|
|
1926 A different old line discipline is therefore not restored, yet.
|
|
1927 Restore the old line discipline by hand. */
|
|
1928 ioctl (input_fd, TIOCSETD, &old_tty.main.c_line);
|
|
1929 #endif
|
|
1930
|
|
1931 #ifdef AIXHFT
|
|
1932 hft_reset (con);
|
|
1933 #endif
|
|
1934
|
|
1935 }
|
|
1936
|
|
1937 #endif /* HAVE_TTY */
|
|
1938
|
|
1939 void
|
|
1940 reset_one_device (struct device *d)
|
|
1941 {
|
|
1942 #ifdef HAVE_TTY
|
|
1943 if (DEVICE_TTY_P (d))
|
|
1944 tty_reset_sys_modes_on_device (d);
|
|
1945 else
|
|
1946 #endif
|
|
1947 if (DEVICE_STREAM_P (d))
|
|
1948 fflush (CONSOLE_STREAM_DATA (XCONSOLE (DEVICE_CONSOLE (d)))->out);
|
|
1949 #if defined(SIGIO) && !defined(BROKEN_SIGIO)
|
|
1950 if (!DEVICE_STREAM_P (d))
|
|
1951 {
|
|
1952 unrequest_sigio_on_device (d);
|
|
1953 reset_sigio_on_device (d);
|
|
1954 }
|
|
1955 #endif
|
|
1956 }
|
|
1957
|
|
1958 void
|
|
1959 reset_one_console (struct console *con)
|
|
1960 {
|
|
1961 /* Note: this can be called during GC. */
|
|
1962 Lisp_Object devcons;
|
|
1963
|
|
1964 CONSOLE_DEVICE_LOOP (devcons, con)
|
|
1965 {
|
|
1966 struct device *d = XDEVICE (XCAR (devcons));
|
|
1967
|
|
1968 reset_one_device (d);
|
|
1969 }
|
|
1970 }
|
|
1971
|
|
1972 void
|
|
1973 reset_all_consoles (void)
|
|
1974 {
|
|
1975 /* Note: this can be called during GC. */
|
|
1976 Lisp_Object concons;
|
|
1977
|
|
1978 CONSOLE_LOOP (concons)
|
|
1979 {
|
|
1980 struct console *con = XCONSOLE (XCAR (concons));
|
|
1981
|
|
1982 reset_one_console (con);
|
|
1983 }
|
|
1984
|
|
1985 unmunge_process_groups ();
|
|
1986 }
|
|
1987
|
|
1988 void
|
|
1989 reset_initial_console (void)
|
|
1990 {
|
|
1991 if (CONSOLEP (Vcontrolling_terminal) &&
|
|
1992 CONSOLE_LIVE_P (XCONSOLE (Vcontrolling_terminal)))
|
|
1993 reset_one_console (XCONSOLE (Vcontrolling_terminal));
|
|
1994 unmunge_process_groups ();
|
|
1995 }
|
|
1996
|
|
1997
|
|
1998 /* ------------------------------------------------------ */
|
|
1999 /* extra TTY stuff under AIX */
|
|
2000 /* ------------------------------------------------------ */
|
|
2001
|
|
2002 #ifdef AIXHFT
|
|
2003
|
|
2004 /* Called from init_sys_modes. */
|
|
2005 static void
|
|
2006 hft_init (struct console *con)
|
|
2007 {
|
|
2008 int junk;
|
|
2009 int input_fd;
|
|
2010
|
|
2011 assert (CONSOLE_TTY_P (con));
|
|
2012 input_fd = CONSOLE_TTY_DATA (con)->infd;
|
|
2013
|
|
2014 /* If we're not on an HFT we shouldn't do any of this. We determine
|
|
2015 if we are on an HFT by trying to get an HFT error code. If this
|
|
2016 call fails, we're not on an HFT. */
|
|
2017 #ifdef IBMR2AIX
|
|
2018 if (ioctl (input_fd, HFQERROR, &junk) < 0)
|
|
2019 return;
|
|
2020 #else /* not IBMR2AIX */
|
|
2021 if (ioctl (input_fd, HFQEIO, 0) < 0)
|
|
2022 return;
|
|
2023 #endif /* not IBMR2AIX */
|
|
2024
|
|
2025 /* On AIX the default hft keyboard mapping uses backspace rather than delete
|
|
2026 as the rubout key's ASCII code. Here this is changed. The bug is that
|
|
2027 there's no way to determine the old mapping, so in reset_one_console
|
|
2028 we need to assume that the normal map had been present. Of course, this
|
|
2029 code also doesn't help if on a terminal emulator which doesn't understand
|
|
2030 HFT VTD's. */
|
|
2031 {
|
|
2032 struct hfbuf buf;
|
|
2033 struct hfkeymap keymap;
|
|
2034
|
|
2035 buf.hf_bufp = (char *)&keymap;
|
|
2036 buf.hf_buflen = sizeof (keymap);
|
|
2037 keymap.hf_nkeys = 2;
|
|
2038 keymap.hfkey[0].hf_kpos = 15;
|
|
2039 keymap.hfkey[0].hf_kstate = HFMAPCHAR | HFSHFNONE;
|
|
2040 #ifdef IBMR2AIX
|
|
2041 keymap.hfkey[0].hf_keyidh = '<';
|
|
2042 #else /* not IBMR2AIX */
|
|
2043 keymap.hfkey[0].hf_page = '<';
|
|
2044 #endif /* not IBMR2AIX */
|
|
2045 keymap.hfkey[0].hf_char = 127;
|
|
2046 keymap.hfkey[1].hf_kpos = 15;
|
|
2047 keymap.hfkey[1].hf_kstate = HFMAPCHAR | HFSHFSHFT;
|
|
2048 #ifdef IBMR2AIX
|
|
2049 keymap.hfkey[1].hf_keyidh = '<';
|
|
2050 #else /* not IBMR2AIX */
|
|
2051 keymap.hfkey[1].hf_page = '<';
|
|
2052 #endif /* not IBMR2AIX */
|
|
2053 keymap.hfkey[1].hf_char = 127;
|
|
2054 hftctl (input_fd, HFSKBD, &buf);
|
|
2055 }
|
|
2056 /* #### Should probably set a console TTY flag here. */
|
|
2057 #if 0
|
|
2058 /* The HFT system on AIX doesn't optimize for scrolling, so it's really ugly
|
|
2059 at times. */
|
|
2060 line_ins_del_ok = char_ins_del_ok = 0;
|
|
2061 #endif /* 0 */
|
|
2062 }
|
|
2063
|
|
2064 /* Reset the rubout key to backspace. */
|
|
2065
|
|
2066 static void
|
|
2067 hft_reset (struct console *con)
|
|
2068 {
|
|
2069 struct hfbuf buf;
|
|
2070 struct hfkeymap keymap;
|
|
2071 int junk;
|
|
2072 int input_fd;
|
|
2073
|
|
2074 assert (CONSOLE_TTY_P (con));
|
|
2075 input_fd = CONSOLE_TTY_DATA (con)->infd;
|
|
2076
|
|
2077 #ifdef IBMR2AIX
|
|
2078 if (ioctl (input_fd, HFQERROR, &junk) < 0)
|
|
2079 return;
|
|
2080 #else /* not IBMR2AIX */
|
|
2081 if (ioctl (input_fd, HFQEIO, 0) < 0)
|
|
2082 return;
|
|
2083 #endif /* not IBMR2AIX */
|
|
2084
|
|
2085 buf.hf_bufp = (char *)&keymap;
|
|
2086 buf.hf_buflen = sizeof (keymap);
|
|
2087 keymap.hf_nkeys = 2;
|
|
2088 keymap.hfkey[0].hf_kpos = 15;
|
|
2089 keymap.hfkey[0].hf_kstate = HFMAPCHAR | HFSHFNONE;
|
|
2090 #ifdef IBMR2AIX
|
|
2091 keymap.hfkey[0].hf_keyidh = '<';
|
|
2092 #else /* not IBMR2AIX */
|
|
2093 keymap.hfkey[0].hf_page = '<';
|
|
2094 #endif /* not IBMR2AIX */
|
|
2095 keymap.hfkey[0].hf_char = 8;
|
|
2096 keymap.hfkey[1].hf_kpos = 15;
|
|
2097 keymap.hfkey[1].hf_kstate = HFMAPCHAR | HFSHFSHFT;
|
|
2098 #ifdef IBMR2AIX
|
|
2099 keymap.hfkey[1].hf_keyidh = '<';
|
|
2100 #else /* not IBMR2AIX */
|
|
2101 keymap.hfkey[1].hf_page = '<';
|
|
2102 #endif /* not IBMR2AIX */
|
|
2103 keymap.hfkey[1].hf_char = 8;
|
|
2104 hftctl (input_fd, HFSKBD, &buf);
|
|
2105 }
|
|
2106
|
|
2107 #endif /* AIXHFT */
|
|
2108
|
|
2109
|
|
2110 /************************************************************************/
|
|
2111 /* limits of text/data segments */
|
|
2112 /************************************************************************/
|
|
2113
|
801
|
2114 /* Need start_of_data() as much as possible now, for total_data_usage();
|
|
2115 but with PDUMP and WIN32_NATIVE, can't currently do it. */
|
1330
|
2116 #if ! (defined (PDUMP) && defined (WIN32_NATIVE) && defined (SYSTEM_MALLOC))
|
428
|
2117 #define NEED_STARTS
|
|
2118 #endif
|
|
2119
|
|
2120 #ifdef NEED_STARTS
|
|
2121 /* Some systems that cannot dump also cannot implement these. */
|
|
2122
|
|
2123 /*
|
|
2124 * Return the address of the start of the text segment prior to
|
|
2125 * doing an unexec. After unexec the return value is undefined.
|
|
2126 * See crt0.c for further explanation and _start.
|
|
2127 *
|
|
2128 */
|
|
2129
|
801
|
2130 #if !defined (HAVE_TEXT_START) && !defined (PDUMP)
|
440
|
2131
|
442
|
2132 EXTERN_C int _start (void);
|
428
|
2133
|
|
2134 char *
|
|
2135 start_of_text (void)
|
|
2136 {
|
|
2137 #ifdef TEXT_START
|
442
|
2138 return (char *) TEXT_START;
|
428
|
2139 #else
|
442
|
2140 return (char *) _start;
|
428
|
2141 #endif /* TEXT_START */
|
|
2142 }
|
440
|
2143 #endif /* !defined(HAVE_TEXT_START) && !defined(PDUMP) */
|
428
|
2144
|
|
2145 /*
|
|
2146 * Return the address of the start of the data segment prior to
|
|
2147 * doing an unexec. After unexec the return value is undefined.
|
442
|
2148 * See ecrt0.c for further information and definition of data_start.
|
428
|
2149 *
|
|
2150 * Apparently, on BSD systems this is etext at startup. On
|
|
2151 * USG systems (swapping) this is highly mmu dependent and
|
|
2152 * is also dependent on whether or not the program is running
|
|
2153 * with shared text. Generally there is a (possibly large)
|
|
2154 * gap between end of text and start of data with shared text.
|
|
2155 *
|
|
2156 * On Uniplus+ systems with shared text, data starts at a
|
|
2157 * fixed address. Each port (from a given oem) is generally
|
|
2158 * different, and the specific value of the start of data can
|
|
2159 * be obtained via the UniPlus+ specific "uvar" system call,
|
|
2160 * however the method outlined in crt0.c seems to be more portable.
|
|
2161 *
|
|
2162 * Probably what will have to happen when a USG unexec is available,
|
|
2163 * at least on UniPlus, is temacs will have to be made unshared so
|
|
2164 * that text and data are contiguous. Then once loadup is complete,
|
|
2165 * unexec will produce a shared executable where the data can be
|
|
2166 * at the normal shared text boundary and the startofdata variable
|
|
2167 * will be patched by unexec to the correct value.
|
|
2168 *
|
|
2169 */
|
|
2170
|
801
|
2171 #if defined (ORDINARY_LINK) && !defined (MINGW)
|
428
|
2172 extern char **environ;
|
|
2173 #endif
|
|
2174
|
|
2175 void *
|
|
2176 start_of_data (void)
|
|
2177 {
|
|
2178 #ifdef DATA_START
|
|
2179 return ((char *) DATA_START);
|
|
2180 #else
|
452
|
2181 #if defined (ORDINARY_LINK) || defined(PDUMP)
|
428
|
2182 /*
|
|
2183 * This is a hack. Since we're not linking crt0.c or pre_crt0.c,
|
|
2184 * data_start isn't defined. We take the address of environ, which
|
|
2185 * is known to live at or near the start of the system crt0.c, and
|
|
2186 * we don't sweat the handful of bytes that might lose.
|
|
2187 */
|
442
|
2188 #if defined (HEAP_IN_DATA) && !defined(PDUMP)
|
428
|
2189 extern char* static_heap_base;
|
|
2190 if (!initialized)
|
|
2191 return static_heap_base;
|
|
2192 #endif
|
801
|
2193 return ((char *) &environ);
|
428
|
2194 #else
|
|
2195 extern int data_start;
|
|
2196 return ((char *) &data_start);
|
|
2197 #endif /* ORDINARY_LINK */
|
|
2198 #endif /* DATA_START */
|
|
2199 }
|
1330
|
2200 #endif /* NEED_STARTS aka !(PDUMP && WIN32_NATIVE && SYSTEM_MALLOC) */
|
428
|
2201
|
801
|
2202 extern void *minimum_address_seen; /* from xmalloc() */
|
|
2203 extern void *maximum_address_seen; /* from xmalloc() */
|
|
2204
|
|
2205 Bytecount
|
|
2206 total_data_usage (void)
|
|
2207 {
|
|
2208 #ifdef NEED_STARTS
|
|
2209 void *data_start = start_of_data ();
|
|
2210 #else
|
|
2211 void *data_start = minimum_address_seen;
|
|
2212 #endif
|
854
|
2213
|
1315
|
2214 #ifndef WIN32_ANY
|
814
|
2215 void *data_end = sbrk (0);
|
801
|
2216 #else
|
|
2217 void *data_end = maximum_address_seen;
|
|
2218 #endif
|
|
2219
|
|
2220 /* Sanity checking -- the min determined by malloc() should always be
|
|
2221 greater than data start determined by other means. We could do the
|
|
2222 same check on the max, except that things like rel-alloc might
|
|
2223 invalidate it. */
|
|
2224 if (minimum_address_seen &&
|
|
2225 (char *) minimum_address_seen < (char *) data_start)
|
|
2226 data_start = minimum_address_seen;
|
|
2227
|
|
2228 if (data_end < data_start) /* Huh?????????? */
|
|
2229 data_end = maximum_address_seen;
|
|
2230
|
|
2231 /* #### Doesn't seem to give good results on Windows; values are much
|
|
2232 higher than actual memory usage. How to fix??? */
|
|
2233 return (char *) data_end - (char *) data_start;
|
|
2234 }
|
|
2235
|
428
|
2236
|
|
2237 /************************************************************************/
|
|
2238 /* get the system name */
|
|
2239 /************************************************************************/
|
|
2240
|
|
2241 /* init_system_name sets up the string for the Lisp function
|
|
2242 system-name to return. */
|
|
2243
|
|
2244 extern Lisp_Object Vsystem_name;
|
|
2245
|
|
2246 void
|
|
2247 init_system_name (void)
|
|
2248 {
|
442
|
2249 #if defined (WIN32_NATIVE)
|
771
|
2250 Extbyte hostname[MAX_XETCHAR_SIZE * (MAX_COMPUTERNAME_LENGTH + 1)];
|
|
2251 DWORD size = sizeof (hostname) / XETCHAR_SIZE;
|
|
2252 qxeGetComputerName (hostname, &size);
|
|
2253 Vsystem_name = build_tstr_string (hostname);
|
428
|
2254 #elif !defined (HAVE_GETHOSTNAME)
|
|
2255 struct utsname uts;
|
|
2256 uname (&uts);
|
|
2257 Vsystem_name = build_string (uts.nodename);
|
|
2258 #else /* HAVE_GETHOSTNAME */
|
647
|
2259 int hostname_size = 256;
|
851
|
2260 char *hostname = (char *) ALLOCA (hostname_size);
|
428
|
2261
|
|
2262 /* Try to get the host name; if the buffer is too short, try
|
|
2263 again. Apparently, the only indication gethostname gives of
|
|
2264 whether the buffer was large enough is the presence or absence
|
|
2265 of a '\0' in the string. Eech. */
|
|
2266 for (;;)
|
|
2267 {
|
|
2268 gethostname (hostname, hostname_size - 1);
|
|
2269 hostname[hostname_size - 1] = '\0';
|
|
2270
|
|
2271 /* Was the buffer large enough for the '\0'? */
|
647
|
2272 if ((int) strlen (hostname) < (hostname_size - 1))
|
428
|
2273 break;
|
|
2274
|
|
2275 hostname_size <<= 1;
|
851
|
2276 hostname = (char *) ALLOCA (hostname_size);
|
428
|
2277 }
|
558
|
2278 # if defined( HAVE_SOCKETS)
|
428
|
2279 /* Turn the hostname into the official, fully-qualified hostname.
|
|
2280 Don't do this if we're going to dump; this can confuse system
|
|
2281 libraries on some machines and make the dumped emacs core dump. */
|
|
2282 if (initialized)
|
|
2283 if (!strchr (hostname, '.'))
|
|
2284 {
|
440
|
2285 # if !(defined(HAVE_GETADDRINFO) && defined(HAVE_GETNAMEINFO))
|
428
|
2286 struct hostent *hp = NULL;
|
|
2287 int count;
|
440
|
2288 # ifdef TRY_AGAIN
|
428
|
2289 for (count = 0; count < 10; count++)
|
|
2290 {
|
|
2291 h_errno = 0;
|
440
|
2292 # endif
|
428
|
2293 /* Some systems can't handle SIGALARM/SIGIO in gethostbyname(). */
|
|
2294 stop_interrupts ();
|
|
2295 hp = gethostbyname (hostname);
|
|
2296 start_interrupts ();
|
440
|
2297 # ifdef TRY_AGAIN
|
428
|
2298 if (! (hp == 0 && h_errno == TRY_AGAIN))
|
|
2299 break;
|
|
2300 Fsleep_for (make_int (1));
|
|
2301 }
|
440
|
2302 # endif
|
428
|
2303 if (hp)
|
|
2304 {
|
442
|
2305 const char *fqdn = (const char *) hp->h_name;
|
428
|
2306
|
|
2307 if (!strchr (fqdn, '.'))
|
|
2308 {
|
|
2309 /* We still don't have a fully qualified domain name.
|
|
2310 Try to find one in the list of alternate names */
|
|
2311 char **alias = hp->h_aliases;
|
|
2312 while (*alias && !strchr (*alias, '.'))
|
|
2313 alias++;
|
|
2314 if (*alias)
|
|
2315 fqdn = *alias;
|
|
2316 }
|
851
|
2317 hostname = (char *) ALLOCA (strlen (fqdn) + 1);
|
428
|
2318 strcpy (hostname, fqdn);
|
|
2319 }
|
440
|
2320 # else /* !(HAVE_GETADDRINFO && HAVE_GETNAMEINFO) */
|
|
2321 struct addrinfo hints, *res;
|
|
2322
|
|
2323 xzero (hints);
|
|
2324 hints.ai_flags = AI_CANONNAME;
|
724
|
2325 #ifdef IPV6_CANONICALIZE
|
440
|
2326 hints.ai_family = AF_UNSPEC;
|
724
|
2327 #else
|
|
2328 hints.ai_family = PF_INET;
|
|
2329 #endif
|
440
|
2330 hints.ai_socktype = SOCK_STREAM;
|
|
2331 hints.ai_protocol = 0;
|
|
2332 if (!getaddrinfo (hostname, NULL, &hints, &res))
|
|
2333 {
|
851
|
2334 hostname = (char *) ALLOCA (strlen (res->ai_canonname) + 1);
|
440
|
2335 strcpy (hostname, res->ai_canonname);
|
|
2336
|
|
2337 freeaddrinfo (res);
|
|
2338 }
|
|
2339 # endif /* !(HAVE_GETADDRINFO && HAVE_GETNAMEINFO) */
|
428
|
2340 }
|
|
2341 # endif /* HAVE_SOCKETS */
|
|
2342 Vsystem_name = build_string (hostname);
|
|
2343 #endif /* HAVE_GETHOSTNAME */
|
|
2344 {
|
867
|
2345 Ibyte *p;
|
428
|
2346 Bytecount i;
|
|
2347
|
|
2348 for (i = 0, p = XSTRING_DATA (Vsystem_name);
|
|
2349 i < XSTRING_LENGTH (Vsystem_name);
|
|
2350 i++, p++)
|
|
2351 {
|
|
2352 if (*p == ' ' || *p == '\t')
|
|
2353 *p = '-';
|
|
2354 }
|
|
2355 }
|
|
2356 }
|
|
2357
|
|
2358
|
|
2359 /************************************************************************/
|
|
2360 /* Emulation of select() */
|
|
2361 /************************************************************************/
|
|
2362
|
|
2363 #ifndef HAVE_SELECT
|
|
2364
|
|
2365 ERROR: XEmacs requires a working select().
|
|
2366
|
|
2367 #endif /* not HAVE_SELECT */
|
|
2368
|
|
2369
|
|
2370 /************************************************************************/
|
|
2371 /* Emulation of signal stuff */
|
|
2372 /************************************************************************/
|
|
2373
|
|
2374 /* BSD 4.1 crap deleted. 4.2 was released in 1983, for God's sake! I
|
|
2375 can't imagine that anyone is actually running that OS any more.
|
|
2376 You can't use X under it (I think) because there's no select().
|
|
2377 Anyway, the signal stuff has all been changed. If someone wants to
|
|
2378 get this stuff working again, look in the FSF Emacs sources. */
|
|
2379
|
|
2380 /* POSIX signals support - DJB */
|
|
2381
|
|
2382 #ifdef HAVE_SIGPROCMASK
|
|
2383
|
|
2384 /* #### Is there any reason this is static global rather than local? */
|
|
2385 static struct sigaction new_action, old_action;
|
|
2386
|
|
2387 signal_handler_t
|
613
|
2388 qxe_reliable_signal (int signal_number, signal_handler_t action)
|
428
|
2389 {
|
|
2390 #if 0
|
|
2391
|
|
2392 /* XEmacs works better if system calls are *not* restarted.
|
|
2393 This allows C-g to interrupt reads and writes, on most systems.
|
|
2394
|
|
2395 #### Another possibility is to just longjmp() out of the signal
|
|
2396 handler. According to W.R. Stevens, this should be OK on all
|
|
2397 systems. However, I don't want to deal with the potential
|
|
2398 evil ramifications of this at this point. */
|
|
2399
|
|
2400 #ifdef DGUX
|
|
2401 /* This gets us restartable system calls for efficiency.
|
|
2402 The "else" code will work as well. */
|
|
2403 return (berk_signal (signal_number, action));
|
|
2404 #else
|
|
2405 sigemptyset (&new_action.sa_mask);
|
|
2406 new_action.sa_handler = action;
|
|
2407 #if defined (SA_RESTART)
|
|
2408 /* Emacs mostly works better with restartable system services. If this
|
|
2409 * flag exists, we probably want to turn it on here.
|
|
2410 */
|
|
2411 new_action.sa_flags = SA_RESTART;
|
|
2412 #else
|
|
2413 new_action.sa_flags = 0;
|
|
2414 #endif
|
|
2415 sigaction (signal_number, &new_action, &old_action);
|
|
2416 return (old_action.sa_handler);
|
|
2417 #endif /* DGUX */
|
|
2418
|
|
2419 #else /* not 0 */
|
|
2420
|
|
2421 sigemptyset (&new_action.sa_mask);
|
|
2422 new_action.sa_handler = action;
|
|
2423 #if defined (SA_INTERRUPT) /* don't restart system calls, under SunOS */
|
|
2424 new_action.sa_flags = SA_INTERRUPT;
|
|
2425 #else
|
|
2426 new_action.sa_flags = 0;
|
|
2427 #endif
|
|
2428 sigaction (signal_number, &new_action, &old_action);
|
|
2429 return (signal_handler_t) (old_action.sa_handler);
|
|
2430
|
|
2431 #endif /* not 0 */
|
|
2432 }
|
|
2433
|
|
2434 #elif defined (HAVE_SIGBLOCK)
|
|
2435
|
|
2436 /* We use sigvec() rather than signal() if we have it, because
|
|
2437 it lets us specify interruptible system calls. */
|
|
2438 signal_handler_t
|
613
|
2439 qxe_reliable_signal (int signal_number, signal_handler_t action)
|
428
|
2440 {
|
|
2441 struct sigvec vec, ovec;
|
|
2442
|
|
2443 vec.sv_handler = action;
|
|
2444 vec.sv_mask = 0;
|
|
2445 #ifdef SV_INTERRUPT /* don't restart system calls */
|
|
2446 vec.sv_flags = SV_INTERRUPT;
|
|
2447 #else
|
|
2448 vec.sv_flags = 0;
|
|
2449 #endif
|
|
2450
|
|
2451 sigvec (signal_number, &vec, &ovec);
|
|
2452
|
|
2453 return (ovec.sv_handler);
|
|
2454 }
|
|
2455
|
|
2456 #endif /* HAVE_SIGBLOCK (HAVE_SIGPROCMASK) */
|
|
2457
|
|
2458
|
|
2459 /************************************************************************/
|
|
2460 /* Emulation of strerror() and errno support */
|
|
2461 /************************************************************************/
|
|
2462
|
|
2463 #ifndef HAVE_STRERROR
|
|
2464
|
|
2465 #if !defined(NeXT) && !defined(__alpha) && !defined(MACH) && !defined(LINUX) && !defined(IRIX) && !defined(__NetBSD__)
|
|
2466 /* Linux added here by Raymond L. Toy <toy@alydar.crd.ge.com> for XEmacs. */
|
|
2467 /* Irix added here by gparker@sni-usa.com for XEmacs. */
|
|
2468 /* NetBSD added here by James R Grinter <jrg@doc.ic.ac.uk> for XEmacs */
|
442
|
2469 extern const char *sys_errlist[];
|
428
|
2470 extern int sys_nerr;
|
|
2471 #endif
|
|
2472
|
|
2473 #ifdef __NetBSD__
|
|
2474 extern char *sys_errlist[];
|
|
2475 extern int sys_nerr;
|
|
2476 #endif
|
|
2477
|
|
2478
|
442
|
2479 const char *
|
428
|
2480 strerror (int errnum)
|
|
2481 {
|
|
2482 if (errnum >= 0 && errnum < sys_nerr)
|
|
2483 return sys_errlist[errnum];
|
442
|
2484 return ((const char *) GETTEXT ("Unknown error"));
|
428
|
2485 }
|
|
2486
|
|
2487 #endif /* ! HAVE_STRERROR */
|
|
2488
|
|
2489
|
|
2490 /************************************************************************/
|
|
2491 /* Encapsulations of system calls */
|
|
2492 /************************************************************************/
|
|
2493
|
1318
|
2494 /* The documentation in VC++ claims that the pathname library functions
|
|
2495 accept strings in the current locale-specific encoding, but that's
|
|
2496 false, because they just call the native Win32 routines directly, which
|
|
2497 always use the system-default encoding (which is what Qmswindows_tstr
|
|
2498 will give us when not XEUNICODE_P). */
|
771
|
2499 #ifdef WIN32_NATIVE
|
|
2500 #define PATHNAME_CONVERT_OUT(path, pathout) C_STRING_TO_TSTR (path, pathout)
|
|
2501 #else
|
|
2502 #define PATHNAME_CONVERT_OUT(path, pathout) \
|
|
2503 C_STRING_TO_EXTERNAL (path, pathout, Qfile_name)
|
|
2504 #endif
|
428
|
2505
|
|
2506 /***************** low-level calls ****************/
|
|
2507
|
|
2508 /*
|
|
2509 * On USG systems the system calls are INTERRUPTIBLE by signals
|
|
2510 * that the user program has elected to catch. Thus the system call
|
|
2511 * must be retried in these cases. To handle this without massive
|
|
2512 * changes in the source code, we remap the standard system call names
|
|
2513 * to names for our own functions in sysdep.c that do the system call
|
|
2514 * with retries. Actually, for portability reasons, it is good
|
|
2515 * programming practice, as this example shows, to limit all actual
|
|
2516 * system calls to a single occurrence in the source. Sure, this
|
|
2517 * adds an extra level of function call overhead but it is almost
|
|
2518 * always negligible. Fred Fish, Unisoft Systems Inc.
|
|
2519 */
|
|
2520
|
|
2521 /* Ben sez: read Dick Gabriel's essay about the Worse Is Better
|
|
2522 approach to programming and its connection to the silly
|
|
2523 interruptible-system-call business. To find it, look on
|
|
2524 Jamie's home page (http://www.jwz.org/worse-is-better.html). */
|
|
2525
|
771
|
2526 #ifdef WIN32_NATIVE
|
|
2527
|
|
2528 static int
|
|
2529 underlying_open_1 (const Extbyte *path, int oflag, int mode)
|
|
2530 {
|
|
2531 if (XEUNICODE_P)
|
|
2532 return _wopen ((const wchar_t *) path, oflag, mode);
|
|
2533 else
|
|
2534 return _open (path, oflag, mode);
|
|
2535 }
|
|
2536
|
|
2537 #endif /* WIN32_NATIVE */
|
|
2538
|
|
2539 /* Just one call with normal open() semantics. */
|
|
2540
|
|
2541 static int
|
|
2542 underlying_open (const Extbyte *path, int oflag, int mode)
|
|
2543 {
|
|
2544 #ifdef WIN32_NATIVE
|
|
2545 {
|
|
2546 /* Try to open file without _O_CREAT, to be able to write to hidden
|
|
2547 and system files. Force all file handles to be
|
|
2548 non-inheritable. */
|
|
2549 int res = underlying_open_1 (path, (oflag & ~_O_CREAT) | _O_NOINHERIT,
|
|
2550 mode);
|
|
2551 if (res >= 0)
|
|
2552 return res;
|
|
2553 return underlying_open_1 (path, oflag | _O_NOINHERIT, mode);
|
|
2554 }
|
|
2555 #else
|
|
2556 return open (path, oflag, mode);
|
|
2557 #endif /* WIN32_NATIVE */
|
|
2558 }
|
|
2559
|
|
2560 /* Like qxe_open() below but operates on externally-encoded filenames. */
|
|
2561
|
872
|
2562 int XCDECL
|
771
|
2563 retry_open (const Extbyte *path, int oflag, ...)
|
428
|
2564 {
|
|
2565 int mode;
|
|
2566 va_list ap;
|
|
2567
|
|
2568 va_start (ap, oflag);
|
|
2569 mode = va_arg (ap, int);
|
|
2570 va_end (ap);
|
|
2571
|
440
|
2572 #ifdef INTERRUPTIBLE_OPEN
|
428
|
2573 {
|
|
2574 int rtnval;
|
771
|
2575 while ((rtnval = underlying_open (path, oflag, mode)) == -1
|
428
|
2576 && (errno == EINTR))
|
|
2577 DO_NOTHING;
|
|
2578 return rtnval;
|
|
2579 }
|
|
2580 #else
|
771
|
2581 return underlying_open (path, oflag, mode);
|
428
|
2582 #endif
|
|
2583 }
|
771
|
2584
|
|
2585 /* The basic external entry point to open(). Handles conversion to
|
|
2586 external encoding, interruptions, etc. */
|
|
2587
|
872
|
2588 int XCDECL
|
867
|
2589 qxe_open (const Ibyte *path, int oflag, ...)
|
771
|
2590 {
|
|
2591 Extbyte *pathout;
|
|
2592 int mode;
|
|
2593 va_list ap;
|
|
2594
|
|
2595 va_start (ap, oflag);
|
|
2596 mode = va_arg (ap, int);
|
|
2597 va_end (ap);
|
|
2598
|
|
2599 PATHNAME_CONVERT_OUT (path, pathout);
|
|
2600 return retry_open (pathout, oflag, mode);
|
|
2601 }
|
|
2602
|
|
2603 /* Like qxe_open, only when open() is interrupted by EINTR, check for
|
428
|
2604 QUIT. This allows the callers of this function to be interrupted
|
|
2605 with C-g when, say, reading from named pipes. However, this should
|
1123
|
2606 be used with caution, as it can run random Lisp code (although it
|
|
2607 cannot GC).
|
428
|
2608
|
|
2609 This function will not function as expected on systems where open()
|
|
2610 is not interrupted by C-g. However, the worst that can happen is
|
|
2611 the fallback to simple open(). */
|
|
2612 int
|
867
|
2613 qxe_interruptible_open (const Ibyte *path, int oflag, int mode)
|
428
|
2614 {
|
|
2615 /* This function can GC */
|
771
|
2616 Extbyte *pathout;
|
|
2617
|
|
2618 PATHNAME_CONVERT_OUT (path, pathout);
|
428
|
2619
|
442
|
2620 #ifdef WIN32_NATIVE
|
440
|
2621 /* Make all handles non-inheritable */
|
|
2622 oflag |= _O_NOINHERIT;
|
|
2623 #endif
|
|
2624
|
428
|
2625 for (;;)
|
|
2626 {
|
771
|
2627 int rtnval = underlying_open (pathout, oflag, mode);
|
428
|
2628 if (!(rtnval == -1 && errno == EINTR))
|
|
2629 return rtnval;
|
|
2630 /* open() was interrupted. Was QUIT responsible? */
|
|
2631 QUIT;
|
|
2632 }
|
|
2633 }
|
|
2634
|
|
2635 int
|
771
|
2636 retry_close (int filedes)
|
428
|
2637 {
|
|
2638 #ifdef INTERRUPTIBLE_CLOSE
|
|
2639 int did_retry = 0;
|
|
2640 REGISTER int rtnval;
|
|
2641
|
|
2642 while ((rtnval = close (filedes)) == -1
|
|
2643 && (errno == EINTR))
|
|
2644 did_retry = 1;
|
|
2645
|
|
2646 /* If close is interrupted SunOS 4.1 may or may not have closed the
|
|
2647 file descriptor. If it did the second close will fail with
|
|
2648 errno = EBADF. That means we have succeeded. */
|
|
2649 if (rtnval == -1 && did_retry && errno == EBADF)
|
|
2650 return 0;
|
|
2651
|
|
2652 return rtnval;
|
|
2653 #else
|
|
2654 return close (filedes);
|
|
2655 #endif
|
|
2656 }
|
771
|
2657
|
|
2658 static ssize_t
|
|
2659 retry_read_1 (int fildes, void *buf, size_t nbyte, int allow_quit)
|
428
|
2660 {
|
|
2661 ssize_t rtnval;
|
|
2662
|
|
2663 /* No harm in looping regardless of the INTERRUPTIBLE_IO setting. */
|
|
2664 while ((rtnval = read (fildes, buf, nbyte)) == -1
|
|
2665 && (errno == EINTR))
|
|
2666 {
|
|
2667 if (allow_quit)
|
853
|
2668 QUIT;
|
428
|
2669 }
|
|
2670 return rtnval;
|
|
2671 }
|
|
2672
|
|
2673 ssize_t
|
771
|
2674 retry_read (int fildes, void *buf, size_t nbyte)
|
428
|
2675 {
|
771
|
2676 return retry_read_1 (fildes, buf, nbyte, 0);
|
428
|
2677 }
|
771
|
2678
|
|
2679 static ssize_t
|
|
2680 retry_write_1 (int fildes, const void *buf, size_t nbyte, int allow_quit)
|
428
|
2681 {
|
|
2682 ssize_t bytes_written = 0;
|
442
|
2683 const char *b = (const char *) buf;
|
428
|
2684
|
|
2685 /* No harm in looping regardless of the INTERRUPTIBLE_IO setting. */
|
|
2686 while (nbyte > 0)
|
|
2687 {
|
|
2688 ssize_t rtnval = write (fildes, b, nbyte);
|
|
2689
|
|
2690 if (allow_quit)
|
853
|
2691 QUIT;
|
428
|
2692
|
|
2693 if (rtnval == -1)
|
|
2694 {
|
|
2695 if (errno == EINTR)
|
|
2696 continue;
|
|
2697 else
|
|
2698 return bytes_written ? bytes_written : -1;
|
|
2699 }
|
|
2700 b += rtnval;
|
|
2701 nbyte -= rtnval;
|
|
2702 bytes_written += rtnval;
|
|
2703 }
|
|
2704 return bytes_written;
|
|
2705 }
|
|
2706
|
|
2707 ssize_t
|
771
|
2708 retry_write (int fildes, const void *buf, size_t nbyte)
|
428
|
2709 {
|
771
|
2710 return retry_write_1 (fildes, buf, nbyte, 0);
|
428
|
2711 }
|
771
|
2712
|
|
2713 /* Versions of read() and write() that allow quitting out of the actual
|
|
2714 I/O. We don't use immediate_quit (i.e. direct longjmp() out of the
|
|
2715 signal handler) because that's way too losing.
|
|
2716
|
|
2717 (#### Actually, longjmp()ing out of the signal handler may not be
|
|
2718 as losing as I thought. See qxe_reliable_signal() in sysdep.c.) */
|
|
2719
|
|
2720 Bytecount
|
|
2721 read_allowing_quit (int fildes, void *buf, Bytecount size)
|
|
2722 {
|
|
2723 QUIT;
|
|
2724 return retry_read_1 (fildes, buf, size, 1);
|
|
2725 }
|
|
2726
|
|
2727 Bytecount
|
|
2728 write_allowing_quit (int fildes, const void *buf, Bytecount size)
|
|
2729 {
|
|
2730 QUIT;
|
|
2731 return retry_write_1 (fildes, buf, size, 1);
|
|
2732 }
|
428
|
2733
|
|
2734
|
|
2735 /**************** stdio calls ****************/
|
|
2736
|
|
2737 /* There is at least some evidence that the stdio calls are interruptible
|
|
2738 just like the normal system calls, at least on some systems. In any
|
|
2739 case, it doesn't hurt to encapsulate them. */
|
|
2740
|
|
2741 /* #### Should also encapsulate fflush().
|
|
2742 #### Should conceivably encapsulate getchar() etc. What a pain! */
|
|
2743
|
|
2744 FILE *
|
771
|
2745 retry_fopen (const Extbyte *path, const Char_ASCII *mode)
|
428
|
2746 {
|
771
|
2747 #ifdef WIN32_NATIVE
|
|
2748 int fd;
|
|
2749 int oflag;
|
|
2750 const Char_ASCII *mode_save = mode;
|
|
2751
|
|
2752 /* Force all file handles to be non-inheritable. This is necessary to
|
|
2753 ensure child processes don't unwittingly inherit handles that might
|
|
2754 prevent future file access. */
|
|
2755
|
|
2756 if (mode[0] == 'r')
|
|
2757 oflag = O_RDONLY;
|
|
2758 else if (mode[0] == 'w' || mode[0] == 'a')
|
|
2759 oflag = O_WRONLY | O_CREAT | O_TRUNC;
|
|
2760 else
|
|
2761 return NULL;
|
|
2762
|
|
2763 /* Only do simplistic option parsing. */
|
|
2764 while (*++mode)
|
|
2765 if (mode[0] == '+')
|
|
2766 {
|
|
2767 oflag &= ~(O_RDONLY | O_WRONLY);
|
|
2768 oflag |= O_RDWR;
|
|
2769 }
|
|
2770 else if (mode[0] == 'b')
|
|
2771 {
|
|
2772 oflag &= ~O_TEXT;
|
|
2773 oflag |= O_BINARY;
|
|
2774 }
|
|
2775 else if (mode[0] == 't')
|
|
2776 {
|
|
2777 oflag &= ~O_BINARY;
|
|
2778 oflag |= O_TEXT;
|
|
2779 }
|
|
2780 else break;
|
|
2781
|
|
2782 fd = underlying_open (path, oflag, 0644);
|
|
2783 if (fd < 0)
|
|
2784 return NULL;
|
|
2785
|
|
2786 return _fdopen (fd, mode_save);
|
428
|
2787 #elif defined (INTERRUPTIBLE_OPEN)
|
|
2788 {
|
|
2789 FILE *rtnval;
|
771
|
2790 while (!(rtnval = fopen (path, mode)) && (errno == EINTR))
|
428
|
2791 DO_NOTHING;
|
|
2792 return rtnval;
|
|
2793 }
|
|
2794 #else
|
771
|
2795 return fopen (path, mode);
|
|
2796 #endif /* defined (INTERRUPTIBLE_OPEN) */
|
428
|
2797 }
|
771
|
2798
|
|
2799 FILE *
|
867
|
2800 qxe_fopen (const Ibyte *path, const Char_ASCII *mode)
|
771
|
2801 {
|
|
2802 Extbyte *pathout;
|
|
2803 PATHNAME_CONVERT_OUT (path, pathout);
|
|
2804 return retry_fopen (pathout, mode);
|
|
2805 }
|
|
2806
|
428
|
2807 int
|
771
|
2808 retry_fclose (FILE *stream)
|
428
|
2809 {
|
|
2810 #ifdef INTERRUPTIBLE_CLOSE
|
|
2811 int rtnval;
|
|
2812
|
|
2813 while ((rtnval = fclose (stream)) == EOF
|
|
2814 && (errno == EINTR))
|
|
2815 ;
|
|
2816 return rtnval;
|
|
2817 #else
|
|
2818 return fclose (stream);
|
|
2819 #endif
|
|
2820 }
|
771
|
2821
|
428
|
2822 size_t
|
771
|
2823 retry_fread (void *ptr, size_t size, size_t nitem, FILE *stream)
|
428
|
2824 {
|
|
2825 #ifdef INTERRUPTIBLE_IO
|
|
2826 size_t rtnval;
|
|
2827 size_t items_read = 0;
|
|
2828 char *b = (char *) ptr;
|
|
2829
|
|
2830 while (nitem > 0)
|
|
2831 {
|
|
2832 rtnval = fread (b, size, nitem, stream);
|
|
2833 if (rtnval == 0)
|
|
2834 {
|
|
2835 if (ferror (stream) && errno == EINTR)
|
|
2836 continue;
|
|
2837 else
|
|
2838 return items_read;
|
|
2839 }
|
|
2840 b += size*rtnval;
|
|
2841 nitem -= rtnval;
|
|
2842 items_read += rtnval;
|
|
2843 }
|
|
2844 return (items_read);
|
|
2845 #else
|
|
2846 return fread (ptr, size, nitem, stream);
|
|
2847 #endif
|
|
2848 }
|
771
|
2849
|
428
|
2850 size_t
|
771
|
2851 retry_fwrite (const void *ptr, size_t size, size_t nitem, FILE *stream)
|
428
|
2852 {
|
|
2853 #ifdef INTERRUPTIBLE_IO
|
|
2854 size_t rtnval;
|
|
2855 size_t items_written = 0;
|
442
|
2856 const char *b = (const char *) ptr;
|
428
|
2857
|
|
2858 while (nitem > 0)
|
|
2859 {
|
|
2860 rtnval = fwrite (b, size, nitem, stream);
|
|
2861 if (rtnval == 0)
|
|
2862 {
|
|
2863 if (ferror (stream) && errno == EINTR)
|
|
2864 continue;
|
|
2865 else
|
|
2866 return items_written;
|
|
2867 }
|
|
2868 b += size*rtnval;
|
|
2869 nitem -= rtnval;
|
|
2870 items_written += rtnval;
|
|
2871 }
|
|
2872 return (items_written);
|
|
2873 #else
|
|
2874 return fwrite (ptr, size, nitem, stream);
|
|
2875 #endif
|
|
2876 }
|
|
2877
|
|
2878 /********************* directory calls *******************/
|
|
2879
|
|
2880 int
|
867
|
2881 qxe_chdir (const Ibyte *path)
|
428
|
2882 {
|
771
|
2883 Extbyte *pathout;
|
|
2884 PATHNAME_CONVERT_OUT (path, pathout);
|
442
|
2885 #ifdef WIN32_NATIVE
|
771
|
2886 if (XEUNICODE_P)
|
|
2887 return _wchdir ((const wchar_t *) pathout);
|
|
2888 else
|
|
2889 return _chdir (pathout);
|
428
|
2890 #else
|
771
|
2891 return chdir (pathout);
|
428
|
2892 #endif
|
|
2893 }
|
771
|
2894
|
|
2895 int
|
867
|
2896 qxe_mkdir (const Ibyte *path, mode_t mode)
|
771
|
2897 {
|
|
2898 Extbyte *pathout;
|
|
2899 PATHNAME_CONVERT_OUT (path, pathout);
|
|
2900 #ifdef WIN32_NATIVE
|
|
2901 if (XEUNICODE_P)
|
|
2902 return _wmkdir ((const wchar_t *) pathout);
|
|
2903 else
|
|
2904 return _mkdir (pathout);
|
|
2905 #else
|
|
2906 return mkdir (pathout, mode);
|
|
2907 #endif
|
|
2908 }
|
|
2909
|
428
|
2910 DIR *
|
867
|
2911 qxe_opendir (const Ibyte *filename)
|
428
|
2912 {
|
771
|
2913 #ifdef WIN32_NATIVE
|
|
2914 return mswindows_opendir (filename);
|
|
2915 #else
|
428
|
2916 DIR *rtnval;
|
771
|
2917 Extbyte *pathout;
|
|
2918 PATHNAME_CONVERT_OUT (filename, pathout);
|
|
2919
|
|
2920 while (!(rtnval = opendir (pathout))
|
428
|
2921 && (errno == EINTR))
|
|
2922 ;
|
|
2923 return rtnval;
|
771
|
2924 #endif /* WIN32_NATIVE */
|
428
|
2925 }
|
771
|
2926
|
428
|
2927 DIRENTRY *
|
771
|
2928 qxe_readdir (DIR *dirp)
|
428
|
2929 {
|
771
|
2930 #ifdef WIN32_NATIVE
|
|
2931 return mswindows_readdir (dirp);
|
|
2932 #else /* not WIN32_NATIVE */
|
428
|
2933 DIRENTRY *rtnval;
|
|
2934
|
|
2935 /* Apparently setting errno is necessary on some systems?
|
|
2936 Maybe readdir() doesn't always set errno ?! */
|
|
2937 while (!(errno = 0, rtnval = readdir (dirp))
|
|
2938 && (errno == EINTR))
|
|
2939 ;
|
|
2940 #ifndef MULE
|
|
2941 return rtnval;
|
|
2942 #else /* MULE */
|
|
2943 if (rtnval == NULL) /* End of directory */
|
|
2944 return NULL;
|
|
2945 {
|
442
|
2946 const Extbyte * const external_name = (const Extbyte *) rtnval->d_name;
|
665
|
2947 Bytecount external_len = strlen (rtnval->d_name);
|
867
|
2948 const Ibyte *internal_name;
|
462
|
2949 Bytecount internal_len;
|
513
|
2950
|
462
|
2951 TO_INTERNAL_FORMAT (DATA, (external_name, external_len),
|
|
2952 ALLOCA, (internal_name, internal_len),
|
|
2953 Qfile_name);
|
|
2954
|
|
2955 /* check for common case of ASCII filename */
|
|
2956 if (internal_len == external_len &&
|
|
2957 !memcmp (external_name, internal_name, internal_len))
|
428
|
2958 return rtnval;
|
|
2959
|
|
2960 { /* Non-ASCII filename */
|
867
|
2961 static Ibyte_dynarr *internal_DIRENTRY;
|
428
|
2962 if (!internal_DIRENTRY)
|
867
|
2963 internal_DIRENTRY = Dynarr_new (Ibyte);
|
428
|
2964 else
|
|
2965 Dynarr_reset (internal_DIRENTRY);
|
|
2966
|
867
|
2967 Dynarr_add_many (internal_DIRENTRY, (Ibyte *) rtnval,
|
428
|
2968 offsetof (DIRENTRY, d_name));
|
|
2969
|
|
2970
|
|
2971 Dynarr_add_many (internal_DIRENTRY, internal_name, internal_len);
|
444
|
2972 Dynarr_add (internal_DIRENTRY, '\0'); /* NUL-terminate */
|
428
|
2973 return (DIRENTRY *) Dynarr_atp (internal_DIRENTRY, 0);
|
|
2974 }
|
|
2975 }
|
|
2976 #endif /* MULE */
|
771
|
2977 #endif /* WIN32_NATIVE */
|
428
|
2978 }
|
771
|
2979
|
428
|
2980 int
|
771
|
2981 qxe_closedir (DIR *dirp)
|
428
|
2982 {
|
771
|
2983 #ifdef WIN32_NATIVE
|
|
2984 return mswindows_closedir (dirp);
|
|
2985 #else /* not WIN32_NATIVE */
|
428
|
2986 int rtnval;
|
|
2987
|
|
2988 while ((rtnval = closedir (dirp)) == -1
|
|
2989 && (errno == EINTR))
|
|
2990 ;
|
|
2991 return rtnval;
|
771
|
2992 #endif /* WIN32_NATIVE */
|
428
|
2993 }
|
771
|
2994
|
428
|
2995 int
|
867
|
2996 qxe_rmdir (const Ibyte *path)
|
771
|
2997 {
|
|
2998 Extbyte *pathout;
|
|
2999 PATHNAME_CONVERT_OUT (path, pathout);
|
|
3000 #ifdef WIN32_NATIVE
|
|
3001 if (XEUNICODE_P)
|
|
3002 return _wrmdir ((const wchar_t *) pathout);
|
|
3003 else
|
|
3004 return _rmdir (pathout);
|
|
3005 #else
|
|
3006 return rmdir (pathout);
|
|
3007 #endif
|
|
3008 }
|
|
3009
|
867
|
3010 Ibyte *
|
771
|
3011 qxe_allocating_getcwd (void)
|
428
|
3012 {
|
771
|
3013 #ifdef HAVE_GETCWD
|
|
3014 Bytecount cwdsize = 1024;
|
|
3015 Extbyte *cwd = xnew_array (Extbyte, cwdsize);
|
|
3016
|
|
3017 /* Many getcwd()'s can take a NULL argument and malloc() the right amount
|
|
3018 of data, but this is non-standard. */
|
|
3019 while (1)
|
|
3020 {
|
|
3021 #ifdef WIN32_NATIVE
|
|
3022 Extbyte *ret;
|
|
3023
|
|
3024 if (XEUNICODE_P)
|
|
3025 ret = (Extbyte *) _wgetcwd ((wchar_t *) cwd,
|
|
3026 cwdsize / sizeof (wchar_t));
|
|
3027 else
|
|
3028 ret = _getcwd (cwd, cwdsize);
|
|
3029
|
|
3030 if (ret)
|
|
3031 {
|
867
|
3032 Ibyte *retin;
|
771
|
3033 TSTR_TO_C_STRING_MALLOC (ret, retin);
|
1726
|
3034 xfree (cwd, Extbyte *);
|
771
|
3035 return retin;
|
|
3036 }
|
|
3037 #else
|
|
3038 Extbyte *ret = getcwd (cwd, cwdsize);
|
|
3039 if (ret)
|
|
3040 {
|
867
|
3041 Ibyte *retin;
|
771
|
3042 EXTERNAL_TO_C_STRING_MALLOC (ret, retin, Qfile_name);
|
1726
|
3043 xfree (cwd, Extbyte *);
|
771
|
3044 return retin;
|
|
3045 }
|
|
3046 #endif /* WIN32_NATIVE */
|
|
3047
|
|
3048 if (errno == ERANGE)
|
|
3049 {
|
|
3050 cwdsize *= 2;
|
|
3051 XREALLOC_ARRAY (cwd, Extbyte, cwdsize);
|
|
3052 }
|
|
3053 else
|
|
3054 {
|
1726
|
3055 xfree (cwd, Extbyte *);
|
771
|
3056 return NULL;
|
|
3057 }
|
|
3058 }
|
|
3059 #else
|
|
3060 Extbyte chingame_limitos_arbitrarios[PATH_MAX];
|
867
|
3061 Ibyte *ret2;
|
771
|
3062
|
|
3063 if (!getwd (chingame_limitos_arbitrarios))
|
|
3064 return 0;
|
|
3065 EXTERNAL_TO_C_STRING_MALLOC (chingame_limitos_arbitrarios, ret2, Qfile_name);
|
|
3066 return ret2;
|
|
3067 #endif /* HAVE_GETCWD */
|
428
|
3068 }
|
|
3069
|
|
3070 /***************** file-information calls ******************/
|
|
3071
|
|
3072 int
|
867
|
3073 qxe_access (const Ibyte *path, int mode)
|
428
|
3074 {
|
771
|
3075 #ifdef WIN32_NATIVE
|
|
3076 return mswindows_access (path, mode);
|
|
3077 #else /* not WIN32_NATIVE */
|
|
3078 Extbyte *pathout;
|
|
3079 PATHNAME_CONVERT_OUT (path, pathout);
|
|
3080 return access (pathout, mode);
|
|
3081 #endif /* WIN32_NATIVE */
|
428
|
3082 }
|
771
|
3083
|
|
3084 #if defined (HAVE_EACCESS)
|
428
|
3085 int
|
867
|
3086 qxe_eaccess (const Ibyte *path, int mode)
|
428
|
3087 {
|
771
|
3088 Extbyte *pathout;
|
|
3089 PATHNAME_CONVERT_OUT (path, pathout);
|
|
3090 return eaccess (pathout, mode);
|
428
|
3091 }
|
771
|
3092 #endif /* defined (HAVE_EACCESS) */
|
|
3093
|
428
|
3094 int
|
867
|
3095 qxe_lstat (const Ibyte *path, struct stat *buf)
|
428
|
3096 {
|
771
|
3097 /* if system does not have symbolic links, it does not have lstat.
|
|
3098 In that case, use ordinary stat instead. */
|
|
3099 #ifndef S_IFLNK
|
|
3100 return qxe_stat (path, buf);
|
|
3101 #else
|
|
3102 Extbyte *pathout;
|
|
3103 PATHNAME_CONVERT_OUT (path, pathout);
|
|
3104 return lstat (pathout, buf);
|
|
3105 #endif
|
428
|
3106 }
|
771
|
3107
|
|
3108 #if defined (HAVE_READLINK)
|
428
|
3109 int
|
867
|
3110 qxe_readlink (const Ibyte *path, Ibyte *buf, size_t bufsiz)
|
428
|
3111 {
|
771
|
3112 int retval;
|
|
3113 Extbyte *pathout;
|
|
3114
|
|
3115 PATHNAME_CONVERT_OUT (path, pathout);
|
|
3116 retval = readlink (pathout, (char *) buf, bufsiz);
|
|
3117 if (retval < 0)
|
|
3118 return retval;
|
|
3119 {
|
867
|
3120 Ibyte *intbuf;
|
771
|
3121 Bytecount tamanho;
|
|
3122
|
|
3123 TO_INTERNAL_FORMAT (DATA, (buf, retval),
|
|
3124 ALLOCA, (intbuf, tamanho), Qfile_name);
|
|
3125 /* the man page says this function does not null-terminate */
|
|
3126 if (tamanho >= (Bytecount) bufsiz)
|
|
3127 tamanho = bufsiz;
|
|
3128 memcpy (buf, intbuf, tamanho);
|
|
3129 return tamanho;
|
|
3130 }
|
428
|
3131 }
|
771
|
3132 #endif /* defined (HAVE_READLINK) */
|
|
3133
|
432
|
3134 int
|
771
|
3135 qxe_fstat (int fd, struct stat *buf)
|
432
|
3136 {
|
442
|
3137 #ifdef WIN32_NATIVE
|
|
3138 return mswindows_fstat (fd, buf);
|
|
3139 #else
|
432
|
3140 return fstat (fd, buf);
|
771
|
3141 #endif /* WIN32_NATIVE */
|
432
|
3142 }
|
|
3143
|
428
|
3144 int
|
867
|
3145 qxe_stat (const Ibyte *path, struct stat *buf)
|
428
|
3146 {
|
442
|
3147 #ifdef WIN32_NATIVE
|
|
3148 return mswindows_stat (path, buf);
|
771
|
3149 #else /* not WIN32_NATIVE */
|
|
3150 Extbyte *pathout;
|
|
3151 PATHNAME_CONVERT_OUT (path, pathout);
|
|
3152 return stat (pathout, buf);
|
|
3153 #endif /* WIN32_NATIVE */
|
428
|
3154 }
|
|
3155
|
771
|
3156
|
428
|
3157 /****************** file-manipulation calls *****************/
|
|
3158
|
|
3159 int
|
867
|
3160 qxe_chmod (const Ibyte *path, mode_t mode)
|
428
|
3161 {
|
771
|
3162 Extbyte *pathout;
|
|
3163 PATHNAME_CONVERT_OUT (path, pathout);
|
|
3164 #ifdef WIN32_NATIVE
|
|
3165 if (XEUNICODE_P)
|
|
3166 return _wchmod ((const wchar_t *) pathout, mode);
|
|
3167 else
|
|
3168 return _chmod (pathout, mode);
|
|
3169 #else
|
|
3170 return chmod (pathout, mode);
|
|
3171 #endif
|
428
|
3172 }
|
771
|
3173
|
|
3174 #if defined (HAVE_LINK)
|
428
|
3175 int
|
867
|
3176 qxe_link (const Ibyte *existing, const Ibyte *new)
|
428
|
3177 {
|
771
|
3178 #ifdef WIN32_NATIVE
|
|
3179 return mswindows_link (existing, new);
|
|
3180 #else /* not WIN32_NATIVE */
|
|
3181 Extbyte *existingout, *newout;
|
|
3182 PATHNAME_CONVERT_OUT (existing, existingout);
|
|
3183 PATHNAME_CONVERT_OUT (new, newout);
|
|
3184 return link (existingout, newout);
|
|
3185 #endif /* WIN32_NATIVE */
|
428
|
3186 }
|
771
|
3187 #endif /* defined (HAVE_LINK) */
|
|
3188
|
428
|
3189 int
|
867
|
3190 qxe_rename (const Ibyte *old, const Ibyte *new)
|
428
|
3191 {
|
442
|
3192 #ifdef WIN32_NATIVE
|
872
|
3193 return mswindows_rename (old, new);
|
771
|
3194 #else /* not WIN32_NATIVE */
|
|
3195 Extbyte *oldout, *newout;
|
|
3196 PATHNAME_CONVERT_OUT (old, oldout);
|
|
3197 PATHNAME_CONVERT_OUT (new, newout);
|
|
3198 return rename (oldout, newout);
|
442
|
3199 #endif /* WIN32_NATIVE */
|
428
|
3200 }
|
771
|
3201
|
|
3202 #if defined (HAVE_SYMLINK)
|
428
|
3203 int
|
867
|
3204 qxe_symlink (const Ibyte *name1, const Ibyte *name2)
|
428
|
3205 {
|
771
|
3206 Extbyte *name1out, *name2out;
|
|
3207 PATHNAME_CONVERT_OUT (name1, name1out);
|
|
3208 PATHNAME_CONVERT_OUT (name2, name2out);
|
|
3209 return symlink (name1out, name2out);
|
428
|
3210 }
|
771
|
3211 #endif /* defined (HAVE_SYMLINK) */
|
|
3212
|
428
|
3213 int
|
867
|
3214 qxe_unlink (const Ibyte *path)
|
428
|
3215 {
|
771
|
3216 #ifdef WIN32_NATIVE
|
|
3217 return mswindows_unlink (path);
|
|
3218 #else /* not WIN32_NATIVE */
|
|
3219 Extbyte *pathout;
|
|
3220 PATHNAME_CONVERT_OUT (path, pathout);
|
|
3221 return unlink (pathout);
|
|
3222 #endif /* WIN32_NATIVE */
|
428
|
3223 }
|
771
|
3224
|
|
3225
|
|
3226 /****************** process calls *****************/
|
|
3227
|
428
|
3228 int
|
867
|
3229 qxe_execve (const Ibyte *filename, Ibyte * const argv[],
|
|
3230 Ibyte * const envp[])
|
428
|
3231 {
|
771
|
3232 int i, argc, envc;
|
|
3233 Extbyte *pathext;
|
|
3234 Extbyte **new_argv;
|
|
3235 Extbyte **new_envp;
|
|
3236
|
|
3237 PATHNAME_CONVERT_OUT (filename, pathext);
|
|
3238
|
428
|
3239 for (argc = 0; argv[argc]; argc++)
|
|
3240 ;
|
771
|
3241 new_argv = alloca_array (Extbyte *, argc + 1);
|
428
|
3242 for (i = 0; i < argc; i++)
|
771
|
3243 C_STRING_TO_EXTERNAL (argv[i], new_argv[i], Qnative);
|
428
|
3244 new_argv[argc] = NULL;
|
771
|
3245
|
|
3246 for (envc = 0; envp[envc]; envc++)
|
|
3247 ;
|
|
3248 new_envp = alloca_array (Extbyte *, envc + 1);
|
|
3249 for (i = 0; i < envc; i++)
|
|
3250 C_STRING_TO_EXTERNAL (envp[i], new_envp[i], Qnative);
|
|
3251 new_envp[envc] = NULL;
|
|
3252
|
1318
|
3253 #if defined (WIN32_NATIVE)
|
|
3254 if (XEUNICODE_P)
|
|
3255 return _wexecve ((const wchar_t *) pathext,
|
|
3256 (const wchar_t * const *) new_argv,
|
|
3257 (const wchar_t * const *) new_envp);
|
|
3258 #endif
|
771
|
3259 return execve (pathext, new_argv, new_envp);
|
|
3260 }
|
|
3261
|
|
3262 pid_t
|
|
3263 qxe_getpid (void)
|
|
3264 {
|
|
3265 #ifdef WIN32_NATIVE
|
|
3266 return abs (getpid ());
|
|
3267 #else
|
|
3268 return getpid ();
|
|
3269 #endif
|
428
|
3270 }
|
771
|
3271
|
|
3272
|
|
3273 /****************** passwd calls *****************/
|
|
3274
|
|
3275 struct passwd cached_pwd;
|
|
3276
|
|
3277 static struct passwd *
|
|
3278 copy_in_passwd (struct passwd *pwd)
|
|
3279 {
|
|
3280 if (!pwd)
|
|
3281 return NULL;
|
|
3282
|
|
3283 if (cached_pwd.pw_name)
|
1726
|
3284 xfree (cached_pwd.pw_name, char *);
|
771
|
3285 if (cached_pwd.pw_passwd)
|
1726
|
3286 xfree (cached_pwd.pw_passwd, char *);
|
771
|
3287 if (cached_pwd.pw_gecos)
|
1726
|
3288 xfree (cached_pwd.pw_gecos, char *);
|
771
|
3289 if (cached_pwd.pw_dir)
|
1726
|
3290 xfree (cached_pwd.pw_dir, char *);
|
771
|
3291 if (cached_pwd.pw_shell)
|
1726
|
3292 xfree (cached_pwd.pw_shell, char *);
|
771
|
3293
|
|
3294 cached_pwd = *pwd;
|
|
3295 if (cached_pwd.pw_name)
|
|
3296 TO_INTERNAL_FORMAT (C_STRING, cached_pwd.pw_name,
|
|
3297 C_STRING_MALLOC, cached_pwd.pw_name, Qnative);
|
|
3298 if (cached_pwd.pw_passwd)
|
|
3299 TO_INTERNAL_FORMAT (C_STRING, cached_pwd.pw_passwd,
|
|
3300 C_STRING_MALLOC, cached_pwd.pw_passwd, Qnative);
|
|
3301 if (cached_pwd.pw_gecos)
|
|
3302 TO_INTERNAL_FORMAT (C_STRING, cached_pwd.pw_gecos,
|
|
3303 C_STRING_MALLOC, cached_pwd.pw_gecos, Qnative);
|
|
3304 if (cached_pwd.pw_dir)
|
|
3305 TO_INTERNAL_FORMAT (C_STRING, cached_pwd.pw_dir,
|
|
3306 C_STRING_MALLOC, cached_pwd.pw_dir, Qfile_name);
|
|
3307 if (cached_pwd.pw_shell)
|
|
3308 TO_INTERNAL_FORMAT (C_STRING, cached_pwd.pw_shell,
|
|
3309 C_STRING_MALLOC, cached_pwd.pw_shell, Qfile_name);
|
|
3310 return &cached_pwd;
|
|
3311 }
|
|
3312
|
|
3313 struct passwd *
|
867
|
3314 qxe_getpwnam (const Ibyte *name)
|
771
|
3315 {
|
|
3316 #ifdef WIN32_NATIVE
|
|
3317 /* Synthetic versions are defined in nt.c and already do conversion. */
|
|
3318 return getpwnam (name);
|
|
3319 #else
|
|
3320 Extbyte *nameext;
|
|
3321 C_STRING_TO_EXTERNAL (name, nameext, Qnative);
|
|
3322
|
|
3323 return copy_in_passwd (getpwnam (nameext));
|
|
3324 #endif /* WIN32_NATIVE */
|
|
3325 }
|
|
3326
|
|
3327 struct passwd *
|
|
3328 qxe_getpwuid (uid_t uid)
|
|
3329 {
|
|
3330 #ifdef WIN32_NATIVE
|
|
3331 /* Synthetic versions are defined in nt.c and already do conversion. */
|
|
3332 return getpwuid (uid);
|
|
3333 #else
|
|
3334 return copy_in_passwd (getpwuid (uid));
|
|
3335 #endif /* WIN32_NATIVE */
|
|
3336 }
|
|
3337
|
|
3338 #ifndef WIN32_NATIVE
|
|
3339
|
|
3340 struct passwd *
|
|
3341 qxe_getpwent (void)
|
|
3342 {
|
|
3343 /* No WIN32_NATIVE version of this. */
|
|
3344 return copy_in_passwd (getpwent ());
|
|
3345 }
|
|
3346
|
|
3347 #endif /* not WIN32_NATIVE */
|
|
3348
|
|
3349 /****************** time calls *****************/
|
|
3350
|
867
|
3351 static Ibyte *ctime_static;
|
|
3352
|
|
3353 Ibyte *
|
771
|
3354 qxe_ctime (const time_t *t)
|
|
3355 {
|
|
3356 Extbyte *str = (Extbyte *) ctime (t);
|
|
3357 if (!str) /* can happen on MS Windows */
|
867
|
3358 return (Ibyte *) "Sun Jan 01 00:00:00 1970";
|
771
|
3359 if (ctime_static)
|
1726
|
3360 xfree (ctime_static, Ibyte *);
|
771
|
3361 EXTERNAL_TO_C_STRING_MALLOC (str, ctime_static, Qnative);
|
|
3362 return ctime_static;
|
|
3363 }
|
428
|
3364
|
1204
|
3365
|
912
|
3366 /************************************************************************/
|
|
3367 /* Emulation of missing functions from wchar.h */
|
|
3368 /************************************************************************/
|
|
3369
|
|
3370 #ifndef HAVE_WCHAR_H
|
|
3371 size_t
|
|
3372 wcslen(const wchar_t *s)
|
|
3373 {
|
|
3374 const wchar_t *p = s;
|
|
3375
|
|
3376 while (*p++)
|
|
3377 ;
|
|
3378
|
|
3379 return p - s;
|
|
3380 }
|
|
3381 #endif
|
1204
|
3382
|
|
3383 /************************************************************************/
|
|
3384 /* Emulation of missing functions from string.h */
|
|
3385 /************************************************************************/
|
|
3386
|
|
3387 #ifndef HAVE_STRLWR
|
|
3388 char *
|
|
3389 strlwr (char *s)
|
|
3390 {
|
1271
|
3391 REGISTER char *c;
|
|
3392
|
|
3393 for (c = s; *c; c++)
|
1204
|
3394 {
|
1271
|
3395 *c = tolower (*c);
|
1204
|
3396 }
|
1271
|
3397 return s;
|
1204
|
3398 }
|
|
3399 #endif
|
|
3400
|
1271
|
3401 #ifndef HAVE_STRUPR
|
1204
|
3402 char *
|
|
3403 strupr (char *s)
|
|
3404 {
|
1271
|
3405 REGISTER char *c;
|
|
3406
|
|
3407 for (c = s; *c; c++)
|
1204
|
3408 {
|
1271
|
3409 *c = toupper (*c);
|
1204
|
3410 }
|
1271
|
3411 return s;
|
1204
|
3412 }
|
|
3413 #endif
|
912
|
3414
|
428
|
3415
|
|
3416 /************************************************************************/
|
|
3417 /* Emulations of missing system calls */
|
|
3418 /************************************************************************/
|
|
3419
|
|
3420 /***** (these are primarily required for USG, it seems) *****/
|
|
3421
|
|
3422 /*
|
|
3423 * Emulate rename using unlink/link. Note that this is
|
|
3424 * only partially correct. Also, doesn't enforce restriction
|
|
3425 * that files be of same type (regular->regular, dir->dir, etc).
|
|
3426 */
|
|
3427
|
|
3428 #ifndef HAVE_RENAME
|
|
3429 int
|
771
|
3430 rename (const Extbyte *from, const Extbyte *to)
|
428
|
3431 {
|
|
3432 if (access (from, 0) == 0)
|
|
3433 {
|
|
3434 unlink (to);
|
|
3435 if (link (from, to) == 0)
|
|
3436 if (unlink (from) == 0)
|
|
3437 return (0);
|
|
3438 }
|
|
3439 return (-1);
|
|
3440 }
|
|
3441 #endif /* HAVE_RENAME */
|
|
3442
|
|
3443 #ifdef HPUX
|
|
3444 #ifndef HAVE_PERROR
|
|
3445
|
|
3446 /* HPUX curses library references perror, but as far as we know
|
|
3447 it won't be called. Anyway this definition will do for now. */
|
|
3448
|
|
3449 perror (void)
|
|
3450 {
|
|
3451 }
|
|
3452
|
|
3453 #endif /* not HAVE_PERROR */
|
|
3454 #endif /* HPUX */
|
|
3455
|
|
3456 #ifndef HAVE_DUP2
|
|
3457
|
|
3458 /*
|
|
3459 * Emulate BSD dup2. First close newd if it already exists.
|
|
3460 * Then, attempt to dup oldd. If not successful, call dup2 recursively
|
|
3461 * until we are, then close the unsuccessful ones.
|
|
3462 */
|
|
3463
|
|
3464 int
|
|
3465 dup2 (int oldd, int newd)
|
|
3466 {
|
|
3467 int fd, ret;
|
|
3468
|
771
|
3469 retry_close (newd);
|
428
|
3470
|
|
3471 #ifdef F_DUPFD
|
|
3472 fd = fcntl (oldd, F_DUPFD, newd);
|
|
3473 if (fd != newd)
|
563
|
3474 signal_ferror_with_frob (Qfile_error, lisp_strerror (errno),
|
|
3475 "can't dup2 (%i, %i)", oldd, newd);
|
428
|
3476 #else
|
|
3477 fd = dup (old);
|
|
3478 if (fd == -1)
|
|
3479 return -1;
|
|
3480 if (fd == new)
|
|
3481 return new;
|
|
3482 ret = dup2 (old, new);
|
771
|
3483 retry_close (fd);
|
428
|
3484 return ret;
|
|
3485 #endif /* F_DUPFD */
|
|
3486 }
|
|
3487
|
|
3488 #endif /* not HAVE_DUP2 */
|
|
3489
|
|
3490 /*
|
|
3491 * Gettimeofday. Simulate as much as possible. Only accurate
|
|
3492 * to nearest second. Emacs doesn't use tzp so ignore it for now.
|
|
3493 */
|
|
3494
|
|
3495 #if !defined (HAVE_GETTIMEOFDAY)
|
|
3496
|
|
3497 int
|
|
3498 gettimeofday (struct timeval *tp, struct timezone *tzp)
|
|
3499 {
|
|
3500 extern long time ();
|
|
3501
|
|
3502 tp->tv_sec = time ((long *)0);
|
|
3503 tp->tv_usec = 0;
|
|
3504 if (tzp != 0)
|
|
3505 tzp->tz_minuteswest = -1;
|
|
3506 return (0);
|
|
3507 }
|
|
3508
|
|
3509 #endif /* !HAVE_GETTIMEOFDAY */
|
|
3510
|
|
3511 /* No need to encapsulate utime and utimes explicitly because all
|
|
3512 access to those functions goes through the following. */
|
|
3513
|
|
3514 int
|
592
|
3515 set_file_times (Lisp_Object path, EMACS_TIME atime, EMACS_TIME mtime)
|
428
|
3516 {
|
592
|
3517 #if defined (WIN32_NATIVE)
|
460
|
3518 struct utimbuf utb;
|
|
3519 utb.actime = EMACS_SECS (atime);
|
|
3520 utb.modtime = EMACS_SECS (mtime);
|
592
|
3521 return mswindows_utime (path, &utb);
|
|
3522 #elif defined (HAVE_UTIME)
|
|
3523 struct utimbuf utb;
|
|
3524 Extbyte *filename;
|
|
3525 utb.actime = EMACS_SECS (atime);
|
|
3526 utb.modtime = EMACS_SECS (mtime);
|
|
3527 LISP_STRING_TO_EXTERNAL (path, filename, Qfile_name);
|
460
|
3528 return utime (filename, &utb);
|
|
3529 #elif defined (HAVE_UTIMES)
|
428
|
3530 struct timeval tv[2];
|
592
|
3531 Extbyte *filename;
|
428
|
3532 tv[0] = atime;
|
|
3533 tv[1] = mtime;
|
592
|
3534 LISP_STRING_TO_EXTERNAL (path, filename, Qfile_name);
|
428
|
3535 return utimes (filename, tv);
|
460
|
3536 #else
|
|
3537 /* No file times setting function available. */
|
|
3538 return -1;
|
|
3539 #endif
|
428
|
3540 }
|
|
3541
|
|
3542 /* */
|
|
3543
|
|
3544 static long ticks_per_second;
|
|
3545 static long orig_user_ticks, orig_system_ticks;
|
|
3546 EMACS_TIME orig_real_time;
|
|
3547
|
|
3548 static int process_times_available;
|
|
3549
|
|
3550 /* Return the relative user and system tick count. We try to
|
|
3551 maintain calculations in terms of integers as long as possible
|
|
3552 for increased accuracy. */
|
|
3553
|
|
3554 static int
|
|
3555 get_process_times_1 (long *user_ticks, long *system_ticks)
|
|
3556 {
|
442
|
3557 #if defined (_SC_CLK_TCK) || defined (CLK_TCK) && !defined(WIN32_NATIVE)
|
428
|
3558 /* We have the POSIX times() function available. */
|
777
|
3559 /* #### Perhaps we should just use a configure test for times()? */
|
428
|
3560 struct tms tttt;
|
|
3561 times (&tttt);
|
|
3562 *user_ticks = (long) tttt.tms_utime;
|
|
3563 *system_ticks = (long) tttt.tms_stime;
|
|
3564 return 1;
|
|
3565 #elif defined (CLOCKS_PER_SEC)
|
|
3566 *user_ticks = (long) clock ();
|
|
3567 *system_ticks = 0;
|
|
3568 return 1;
|
|
3569 #else
|
|
3570 return 0;
|
|
3571 #endif
|
|
3572 }
|
|
3573
|
|
3574 void
|
|
3575 init_process_times_very_early (void)
|
|
3576 {
|
|
3577 #if defined (_SC_CLK_TCK)
|
|
3578 ticks_per_second = sysconf (_SC_CLK_TCK);
|
|
3579 #elif defined (CLK_TCK)
|
|
3580 ticks_per_second = CLK_TCK;
|
|
3581 #elif defined (CLOCKS_PER_SEC)
|
|
3582 ticks_per_second = CLOCKS_PER_SEC;
|
|
3583 #endif
|
|
3584
|
|
3585 process_times_available = get_process_times_1 (&orig_user_ticks,
|
|
3586 &orig_system_ticks);
|
|
3587 EMACS_GET_TIME (orig_real_time);
|
|
3588 }
|
|
3589
|
|
3590 /* Return the user and system times used up by this process so far. */
|
|
3591 void
|
|
3592 get_process_times (double *user_time, double *system_time, double *real_time)
|
|
3593 {
|
|
3594 EMACS_TIME curr_real_time;
|
|
3595 EMACS_TIME elapsed_time;
|
|
3596 long curr_user_ticks, curr_system_ticks;
|
|
3597
|
|
3598 EMACS_GET_TIME (curr_real_time);
|
|
3599 EMACS_SUB_TIME (elapsed_time, curr_real_time, orig_real_time);
|
|
3600 *real_time = (EMACS_SECS (elapsed_time)
|
|
3601 + ((double) EMACS_USECS (elapsed_time)) / 1000000);
|
|
3602 if (get_process_times_1 (&curr_user_ticks, &curr_system_ticks))
|
|
3603 {
|
|
3604 *user_time = (((double) (curr_user_ticks - orig_user_ticks))
|
|
3605 / ticks_per_second);
|
|
3606 *system_time = (((double) (curr_system_ticks - orig_system_ticks))
|
|
3607 / ticks_per_second);
|
|
3608 }
|
|
3609 else
|
|
3610 {
|
|
3611 /* A lame OS */
|
|
3612 *user_time = *real_time;
|
|
3613 *system_time = 0;
|
|
3614 }
|
|
3615 }
|
|
3616
|
|
3617 #ifndef HAVE_RANDOM
|
|
3618 #ifdef random
|
|
3619 #define HAVE_RANDOM
|
|
3620 #endif
|
|
3621 #endif
|
|
3622
|
|
3623 /* Figure out how many bits the system's random number generator uses.
|
|
3624 `random' and `lrand48' are assumed to return 31 usable bits.
|
|
3625 BSD `rand' returns a 31 bit value but the low order bits are unusable;
|
|
3626 so we'll shift it and treat it like the 15-bit USG `rand'. */
|
|
3627
|
|
3628 #ifndef RAND_BITS
|
|
3629 # ifdef HAVE_RANDOM
|
|
3630 # define RAND_BITS 31
|
|
3631 # else /* !HAVE_RANDOM */
|
|
3632 # ifdef HAVE_LRAND48
|
|
3633 # define RAND_BITS 31
|
|
3634 # define random lrand48
|
|
3635 # else /* !HAVE_LRAND48 */
|
|
3636 # define RAND_BITS 15
|
|
3637 # if RAND_MAX == 32767
|
|
3638 # define random rand
|
|
3639 # else /* RAND_MAX != 32767 */
|
|
3640 # if RAND_MAX == 2147483647
|
|
3641 # define random() (rand () >> 16)
|
|
3642 # else /* RAND_MAX != 2147483647 */
|
|
3643 # ifdef USG
|
|
3644 # define random rand
|
|
3645 # else
|
|
3646 # define random() (rand () >> 16)
|
|
3647 # endif /* !BSD */
|
|
3648 # endif /* RAND_MAX != 2147483647 */
|
|
3649 # endif /* RAND_MAX != 32767 */
|
|
3650 # endif /* !HAVE_LRAND48 */
|
|
3651 # endif /* !HAVE_RANDOM */
|
|
3652 #endif /* !RAND_BITS */
|
|
3653
|
|
3654 void
|
|
3655 seed_random (long arg)
|
|
3656 {
|
|
3657 #ifdef HAVE_RANDOM
|
|
3658 srandom ((unsigned int)arg);
|
|
3659 #else
|
|
3660 # ifdef HAVE_LRAND48
|
|
3661 srand48 (arg);
|
|
3662 # else
|
|
3663 srand ((unsigned int)arg);
|
|
3664 # endif
|
|
3665 #endif
|
1983
|
3666 #ifdef HAVE_BIGNUM
|
|
3667 bignum_random_seed ((unsigned long) arg);
|
|
3668 #endif
|
428
|
3669 }
|
|
3670
|
|
3671 /*
|
|
3672 * Build a full Emacs-sized word out of whatever we've got.
|
|
3673 * This suffices even for a 64-bit architecture with a 15-bit rand.
|
|
3674 */
|
|
3675 long
|
|
3676 get_random (void)
|
|
3677 {
|
|
3678 long val = random ();
|
2039
|
3679 #if INT_VALBITS > RAND_BITS
|
428
|
3680 val = (val << RAND_BITS) ^ random ();
|
2039
|
3681 #if INT_VALBITS > 2*RAND_BITS
|
428
|
3682 val = (val << RAND_BITS) ^ random ();
|
2039
|
3683 #if INT_VALBITS > 3*RAND_BITS
|
428
|
3684 val = (val << RAND_BITS) ^ random ();
|
2039
|
3685 #if INT_VALBITS > 4*RAND_BITS
|
428
|
3686 val = (val << RAND_BITS) ^ random ();
|
|
3687 #endif /* need at least 5 */
|
|
3688 #endif /* need at least 4 */
|
|
3689 #endif /* need at least 3 */
|
|
3690 #endif /* need at least 2 */
|
2039
|
3691 return val & (EMACS_INT) ((1UL << INT_VALBITS) - 1);
|
428
|
3692 }
|
|
3693
|
|
3694
|
|
3695 /************************************************************************/
|
|
3696 /* Strings corresponding to defined signals */
|
|
3697 /************************************************************************/
|
|
3698
|
|
3699 #if !defined (SYS_SIGLIST_DECLARED) && !defined (HAVE_SYS_SIGLIST)
|
|
3700
|
442
|
3701 #if defined(WIN32_NATIVE) || defined(CYGWIN)
|
|
3702 const char *sys_siglist[] =
|
428
|
3703 {
|
771
|
3704 /* $$####begin-snarf */
|
428
|
3705 "bum signal!!",
|
|
3706 "hangup",
|
|
3707 "interrupt",
|
|
3708 "quit",
|
|
3709 "illegal instruction",
|
|
3710 "trace trap",
|
|
3711 "iot instruction",
|
|
3712 "emt instruction",
|
|
3713 "floating point exception",
|
|
3714 "kill",
|
|
3715 "bus error",
|
|
3716 "segmentation violation",
|
|
3717 "bad argument to system call",
|
|
3718 "write on a pipe with no one to read it",
|
|
3719 "alarm clock",
|
|
3720 "software termination signal from kill",
|
|
3721 "status signal",
|
|
3722 "sendable stop signal not from tty",
|
|
3723 "stop signal from tty",
|
|
3724 "continue a stopped process",
|
|
3725 "child status has changed",
|
|
3726 "background read attempted from control tty",
|
|
3727 "background write attempted from control tty",
|
|
3728 "input record available at control tty",
|
|
3729 "exceeded CPU time limit",
|
|
3730 "exceeded file size limit"
|
771
|
3731 /* $$####end-snarf */
|
428
|
3732 };
|
|
3733 #endif
|
|
3734
|
|
3735 #ifdef USG
|
|
3736 #ifdef AIX
|
442
|
3737 const char *sys_siglist[NSIG + 1] =
|
428
|
3738 {
|
|
3739 /* AIX has changed the signals a bit */
|
863
|
3740 DEFER_GETTEXT ("bogus signal"), /* 0 */
|
|
3741 DEFER_GETTEXT ("hangup"), /* 1 SIGHUP */
|
|
3742 DEFER_GETTEXT ("interrupt"), /* 2 SIGINT */
|
|
3743 DEFER_GETTEXT ("quit"), /* 3 SIGQUIT */
|
|
3744 DEFER_GETTEXT ("illegal instruction"), /* 4 SIGILL */
|
|
3745 DEFER_GETTEXT ("trace trap"), /* 5 SIGTRAP */
|
|
3746 DEFER_GETTEXT ("IOT instruction"), /* 6 SIGIOT */
|
|
3747 DEFER_GETTEXT ("crash likely"), /* 7 SIGDANGER */
|
|
3748 DEFER_GETTEXT ("floating point exception"), /* 8 SIGFPE */
|
|
3749 DEFER_GETTEXT ("kill"), /* 9 SIGKILL */
|
|
3750 DEFER_GETTEXT ("bus error"), /* 10 SIGBUS */
|
|
3751 DEFER_GETTEXT ("segmentation violation"), /* 11 SIGSEGV */
|
|
3752 DEFER_GETTEXT ("bad argument to system call"), /* 12 SIGSYS */
|
|
3753 DEFER_GETTEXT ("write on a pipe with no one to read it"), /* 13 SIGPIPE */
|
|
3754 DEFER_GETTEXT ("alarm clock"), /* 14 SIGALRM */
|
|
3755 DEFER_GETTEXT ("software termination signal"), /* 15 SIGTERM */
|
|
3756 DEFER_GETTEXT ("user defined signal 1"), /* 16 SIGUSR1 */
|
|
3757 DEFER_GETTEXT ("user defined signal 2"), /* 17 SIGUSR2 */
|
|
3758 DEFER_GETTEXT ("death of a child"), /* 18 SIGCLD */
|
|
3759 DEFER_GETTEXT ("power-fail restart"), /* 19 SIGPWR */
|
|
3760 DEFER_GETTEXT ("bogus signal"), /* 20 */
|
|
3761 DEFER_GETTEXT ("bogus signal"), /* 21 */
|
|
3762 DEFER_GETTEXT ("bogus signal"), /* 22 */
|
|
3763 DEFER_GETTEXT ("bogus signal"), /* 23 */
|
|
3764 DEFER_GETTEXT ("bogus signal"), /* 24 */
|
|
3765 DEFER_GETTEXT ("LAN I/O interrupt"), /* 25 SIGAIO */
|
|
3766 DEFER_GETTEXT ("PTY I/O interrupt"), /* 26 SIGPTY */
|
|
3767 DEFER_GETTEXT ("I/O intervention required"), /* 27 SIGIOINT */
|
428
|
3768 #ifdef AIXHFT
|
771
|
3769 "HFT grant", /* 28 SIGGRANT */
|
|
3770 "HFT retract", /* 29 SIGRETRACT */
|
|
3771 "HFT sound done", /* 30 SIGSOUND */
|
|
3772 "HFT input ready", /* 31 SIGMSG */
|
428
|
3773 #endif
|
771
|
3774 /* $$####end-snarf */
|
428
|
3775 0
|
|
3776 };
|
|
3777 #else /* USG, not AIX */
|
442
|
3778 const char *sys_siglist[NSIG + 1] =
|
428
|
3779 {
|
863
|
3780 DEFER_GETTEXT ("bogus signal"), /* 0 */
|
|
3781 DEFER_GETTEXT ("hangup"), /* 1 SIGHUP */
|
|
3782 DEFER_GETTEXT ("interrupt"), /* 2 SIGINT */
|
|
3783 DEFER_GETTEXT ("quit"), /* 3 SIGQUIT */
|
|
3784 DEFER_GETTEXT ("illegal instruction"), /* 4 SIGILL */
|
|
3785 DEFER_GETTEXT ("trace trap"), /* 5 SIGTRAP */
|
|
3786 DEFER_GETTEXT ("IOT instruction"), /* 6 SIGIOT */
|
|
3787 DEFER_GETTEXT ("EMT instruction"), /* 7 SIGEMT */
|
|
3788 DEFER_GETTEXT ("floating point exception"), /* 8 SIGFPE */
|
|
3789 DEFER_GETTEXT ("kill"), /* 9 SIGKILL */
|
|
3790 DEFER_GETTEXT ("bus error"), /* 10 SIGBUS */
|
|
3791 DEFER_GETTEXT ("segmentation violation"), /* 11 SIGSEGV */
|
|
3792 DEFER_GETTEXT ("bad argument to system call"), /* 12 SIGSYS */
|
|
3793 DEFER_GETTEXT ("write on a pipe with no one to read it"), /* 13 SIGPIPE */
|
|
3794 DEFER_GETTEXT ("alarm clock"), /* 14 SIGALRM */
|
|
3795 DEFER_GETTEXT ("software termination signal"), /* 15 SIGTERM */
|
|
3796 DEFER_GETTEXT ("user defined signal 1"), /* 16 SIGUSR1 */
|
|
3797 DEFER_GETTEXT ("user defined signal 2"), /* 17 SIGUSR2 */
|
|
3798 DEFER_GETTEXT ("death of a child"), /* 18 SIGCLD */
|
|
3799 DEFER_GETTEXT ("power-fail restart"), /* 19 SIGPWR */
|
428
|
3800 #ifdef sun
|
771
|
3801 "window size changed", /* 20 SIGWINCH */
|
|
3802 "urgent socket condition", /* 21 SIGURG */
|
|
3803 "pollable event occurred", /* 22 SIGPOLL */
|
|
3804 "stop (cannot be caught or ignored)", /* 23 SIGSTOP */
|
|
3805 "user stop requested from tty", /* 24 SIGTSTP */
|
|
3806 "stopped process has been continued", /* 25 SIGCONT */
|
|
3807 "background tty read attempted", /* 26 SIGTTIN */
|
|
3808 "background tty write attempted", /* 27 SIGTTOU */
|
|
3809 "virtual timer expired", /* 28 SIGVTALRM */
|
|
3810 "profiling timer expired", /* 29 SIGPROF */
|
|
3811 "exceeded cpu limit", /* 30 SIGXCPU */
|
|
3812 "exceeded file size limit", /* 31 SIGXFSZ */
|
|
3813 "process's lwps are blocked", /* 32 SIGWAITING */
|
|
3814 "special signal used by thread library", /* 33 SIGLWP */
|
428
|
3815 #ifdef SIGFREEZE
|
771
|
3816 "special signal used by CPR", /* 34 SIGFREEZE */
|
428
|
3817 #endif
|
|
3818 #ifdef SIGTHAW
|
771
|
3819 "special signal used by CPR", /* 35 SIGTHAW */
|
428
|
3820 #endif
|
|
3821 #endif /* sun */
|
771
|
3822 /* $$####end-snarf */
|
428
|
3823 0
|
|
3824 };
|
|
3825 #endif /* not AIX */
|
|
3826 #endif /* USG */
|
|
3827 #ifdef DGUX
|
442
|
3828 const char *sys_siglist[NSIG + 1] =
|
428
|
3829 {
|
771
|
3830 /* $$####begin-snarf */
|
|
3831 "null signal", /* 0 SIGNULL */
|
|
3832 "hangup", /* 1 SIGHUP */
|
|
3833 "interrupt", /* 2 SIGINT */
|
|
3834 "quit", /* 3 SIGQUIT */
|
|
3835 "illegal instruction", /* 4 SIGILL */
|
|
3836 "trace trap", /* 5 SIGTRAP */
|
|
3837 "abort termination", /* 6 SIGABRT */
|
|
3838 "SIGEMT", /* 7 SIGEMT */
|
|
3839 "floating point exception", /* 8 SIGFPE */
|
|
3840 "kill", /* 9 SIGKILL */
|
|
3841 "bus error", /* 10 SIGBUS */
|
|
3842 "segmentation violation", /* 11 SIGSEGV */
|
|
3843 "bad argument to system call", /* 12 SIGSYS */
|
|
3844 "write on a pipe with no reader", /* 13 SIGPIPE */
|
|
3845 "alarm clock", /* 14 SIGALRM */
|
|
3846 "software termination signal", /* 15 SIGTERM */
|
|
3847 "user defined signal 1", /* 16 SIGUSR1 */
|
|
3848 "user defined signal 2", /* 17 SIGUSR2 */
|
|
3849 "child stopped or terminated", /* 18 SIGCLD */
|
|
3850 "power-fail restart", /* 19 SIGPWR */
|
|
3851 "window size changed", /* 20 SIGWINCH */
|
|
3852 "undefined", /* 21 */
|
|
3853 "pollable event occurred", /* 22 SIGPOLL */
|
|
3854 "sendable stop signal not from tty", /* 23 SIGSTOP */
|
|
3855 "stop signal from tty", /* 24 SIGSTP */
|
|
3856 "continue a stopped process", /* 25 SIGCONT */
|
|
3857 "attempted background tty read", /* 26 SIGTTIN */
|
|
3858 "attempted background tty write", /* 27 SIGTTOU */
|
|
3859 "undefined", /* 28 */
|
|
3860 "undefined", /* 29 */
|
|
3861 "undefined", /* 30 */
|
|
3862 "undefined", /* 31 */
|
|
3863 "undefined", /* 32 */
|
|
3864 "socket (TCP/IP) urgent data arrival", /* 33 SIGURG */
|
|
3865 "I/O is possible", /* 34 SIGIO */
|
|
3866 "exceeded cpu time limit", /* 35 SIGXCPU */
|
|
3867 "exceeded file size limit", /* 36 SIGXFSZ */
|
|
3868 "virtual time alarm", /* 37 SIGVTALRM */
|
|
3869 "profiling time alarm", /* 38 SIGPROF */
|
|
3870 "undefined", /* 39 */
|
|
3871 "file record locks revoked", /* 40 SIGLOST */
|
|
3872 "undefined", /* 41 */
|
|
3873 "undefined", /* 42 */
|
|
3874 "undefined", /* 43 */
|
|
3875 "undefined", /* 44 */
|
|
3876 "undefined", /* 45 */
|
|
3877 "undefined", /* 46 */
|
|
3878 "undefined", /* 47 */
|
|
3879 "undefined", /* 48 */
|
|
3880 "undefined", /* 49 */
|
|
3881 "undefined", /* 50 */
|
|
3882 "undefined", /* 51 */
|
|
3883 "undefined", /* 52 */
|
|
3884 "undefined", /* 53 */
|
|
3885 "undefined", /* 54 */
|
|
3886 "undefined", /* 55 */
|
|
3887 "undefined", /* 56 */
|
|
3888 "undefined", /* 57 */
|
|
3889 "undefined", /* 58 */
|
|
3890 "undefined", /* 59 */
|
|
3891 "undefined", /* 60 */
|
|
3892 "undefined", /* 61 */
|
|
3893 "undefined", /* 62 */
|
|
3894 "undefined", /* 63 */
|
|
3895 "notification message in mess. queue", /* 64 SIGDGNOTIFY */
|
|
3896 /* $$####end-snarf */
|
428
|
3897 0
|
|
3898 };
|
|
3899 #endif /* DGUX */
|
|
3900
|
|
3901 #endif /* ! SYS_SIGLIST_DECLARED && ! HAVE_SYS_SIGLIST */
|
|
3902
|
|
3903
|
|
3904 /************************************************************************/
|
|
3905 /* Directory routines for systems that don't have them */
|
|
3906 /************************************************************************/
|
|
3907
|
|
3908 #ifdef SYSV_SYSTEM_DIR
|
|
3909
|
|
3910 #include <dirent.h>
|
|
3911
|
|
3912 #if defined(BROKEN_CLOSEDIR) || !defined(HAVE_CLOSEDIR)
|
|
3913 int
|
|
3914 closedir (DIR *dirp) /* stream from opendir */
|
|
3915 {
|
|
3916 int rtnval;
|
|
3917
|
771
|
3918 rtnval = retry_close (dirp->dd_fd);
|
428
|
3919
|
|
3920 /* Some systems (like Solaris) allocate the buffer and the DIR all
|
|
3921 in one block. Why in the world are we freeing this ourselves
|
|
3922 anyway? */
|
|
3923 #if ! (defined (sun) && defined (USG5_4))
|
1726
|
3924 xfree (dirp->dd_buf, char *); /* directory block defined in <dirent.h> */
|
428
|
3925 #endif
|
1726
|
3926 xfree (dirp, DIR *);
|
428
|
3927 return (rtnval);
|
|
3928 }
|
|
3929 #endif /* BROKEN_CLOSEDIR or not HAVE_CLOSEDIR */
|
|
3930 #endif /* SYSV_SYSTEM_DIR */
|
|
3931
|
|
3932 #ifdef NONSYSTEM_DIR_LIBRARY
|
|
3933
|
|
3934 DIR *
|
442
|
3935 opendir (const char *filename) /* name of directory */
|
428
|
3936 {
|
|
3937 DIR *dirp; /* -> malloc'ed storage */
|
|
3938 int fd; /* file descriptor for read */
|
|
3939 struct stat sbuf; /* result of fstat */
|
|
3940
|
771
|
3941 fd = open (filename, O_RDONLY);
|
428
|
3942 if (fd < 0)
|
|
3943 return 0;
|
|
3944
|
|
3945 if (fstat (fd, &sbuf) < 0
|
|
3946 || (sbuf.st_mode & S_IFMT) != S_IFDIR
|
|
3947 || (dirp = (DIR *) malloc (sizeof (DIR))) == 0)
|
|
3948 {
|
771
|
3949 retry_close (fd);
|
428
|
3950 return 0; /* bad luck today */
|
|
3951 }
|
|
3952
|
|
3953 dirp->dd_fd = fd;
|
|
3954 dirp->dd_loc = dirp->dd_size = 0; /* refill needed */
|
|
3955
|
|
3956 return dirp;
|
|
3957 }
|
|
3958
|
|
3959 void
|
|
3960 closedir (DIR *dirp) /* stream from opendir */
|
|
3961 {
|
771
|
3962 retry_close (dirp->dd_fd);
|
1726
|
3963 xfree (dirp, DIR *);
|
428
|
3964 }
|
|
3965
|
|
3966
|
|
3967 #define DIRSIZ 14
|
|
3968 struct olddir
|
|
3969 {
|
|
3970 ino_t od_ino; /* inode */
|
|
3971 char od_name[DIRSIZ]; /* filename */
|
|
3972 };
|
|
3973
|
|
3974 static struct direct dir_static; /* simulated directory contents */
|
|
3975
|
|
3976 /* ARGUSED */
|
|
3977 struct direct *
|
|
3978 readdir (DIR *dirp) /* stream from opendir */
|
|
3979 {
|
|
3980 struct olddir *dp; /* -> directory data */
|
|
3981
|
|
3982 for (; ;)
|
|
3983 {
|
|
3984 if (dirp->dd_loc >= dirp->dd_size)
|
|
3985 dirp->dd_loc = dirp->dd_size = 0;
|
|
3986
|
|
3987 if (dirp->dd_size == 0 /* refill buffer */
|
771
|
3988 && (dirp->dd_size =
|
|
3989 retry_read (dirp->dd_fd, dirp->dd_buf, DIRBLKSIZ)) <= 0)
|
428
|
3990 return 0;
|
|
3991
|
|
3992 dp = (struct olddir *) &dirp->dd_buf[dirp->dd_loc];
|
|
3993 dirp->dd_loc += sizeof (struct olddir);
|
|
3994
|
|
3995 if (dp->od_ino != 0) /* not deleted entry */
|
|
3996 {
|
|
3997 dir_static.d_ino = dp->od_ino;
|
|
3998 strncpy (dir_static.d_name, dp->od_name, DIRSIZ);
|
|
3999 dir_static.d_name[DIRSIZ] = '\0';
|
|
4000 dir_static.d_namlen = strlen (dir_static.d_name);
|
|
4001 dir_static.d_reclen = sizeof (struct direct)
|
|
4002 - MAXNAMLEN + 3
|
|
4003 + dir_static.d_namlen - dir_static.d_namlen % 4;
|
|
4004 return &dir_static; /* -> simulated structure */
|
|
4005 }
|
|
4006 }
|
|
4007 }
|
|
4008
|
|
4009
|
|
4010 #endif /* NONSYSTEM_DIR_LIBRARY */
|
|
4011
|
|
4012
|
|
4013 /* mkdir and rmdir functions, for systems which don't have them. */
|
|
4014
|
|
4015 #ifndef HAVE_MKDIR
|
|
4016 /*
|
|
4017 * Written by Robert Rother, Mariah Corporation, August 1985.
|
|
4018 *
|
|
4019 * If you want it, it's yours. All I ask in return is that if you
|
|
4020 * figure out how to do this in a Bourne Shell script you send me
|
|
4021 * a copy.
|
|
4022 * sdcsvax!rmr or rmr@uscd
|
|
4023 *
|
|
4024 * Severely hacked over by John Gilmore to make a 4.2BSD compatible
|
|
4025 * subroutine. 11Mar86; hoptoad!gnu
|
|
4026 *
|
|
4027 * Modified by rmtodd@uokmax 6-28-87 -- when making an already existing dir,
|
|
4028 * subroutine didn't return EEXIST. It does now.
|
|
4029 */
|
|
4030
|
|
4031 /*
|
|
4032 * Make a directory.
|
|
4033 */
|
|
4034 #ifdef MKDIR_PROTOTYPE
|
|
4035 MKDIR_PROTOTYPE
|
|
4036 #else
|
|
4037 int
|
442
|
4038 mkdir (const char *dpath, int dmode)
|
428
|
4039 #endif
|
|
4040 {
|
|
4041 int cpid, status, fd;
|
|
4042 struct stat statbuf;
|
|
4043
|
442
|
4044 if (stat (dpath, &statbuf) == 0) /* we do want stat() here */
|
428
|
4045 {
|
|
4046 errno = EEXIST; /* Stat worked, so it already exists */
|
|
4047 return -1;
|
|
4048 }
|
|
4049
|
|
4050 /* If stat fails for a reason other than non-existence, return error */
|
|
4051 if (errno != ENOENT)
|
|
4052 return -1;
|
|
4053
|
|
4054 synch_process_alive = 1;
|
|
4055 switch (cpid = fork ())
|
|
4056 {
|
|
4057
|
|
4058 case -1: /* Error in fork() */
|
|
4059 return -1; /* Errno is set already */
|
|
4060
|
|
4061 case 0: /* Child process */
|
|
4062 {
|
|
4063 /*
|
|
4064 * Cheap hack to set mode of new directory. Since this
|
|
4065 * child process is going away anyway, we zap its umask.
|
|
4066 * ####, this won't suffice to set SUID, SGID, etc. on this
|
|
4067 * directory. Does anybody care?
|
|
4068 */
|
|
4069 status = umask (0); /* Get current umask */
|
|
4070 status = umask (status | (0777 & ~dmode)); /* Set for mkdir */
|
771
|
4071 fd = open ("/dev/null", O_RDWR);
|
428
|
4072 if (fd >= 0)
|
|
4073 {
|
|
4074 if (fd != STDIN_FILENO) dup2 (fd, STDIN_FILENO);
|
|
4075 if (fd != STDOUT_FILENO) dup2 (fd, STDOUT_FILENO);
|
|
4076 if (fd != STDERR_FILENO) dup2 (fd, STDERR_FILENO);
|
|
4077 }
|
|
4078 execl ("/bin/mkdir", "mkdir", dpath, (char *) 0);
|
|
4079 _exit (-1); /* Can't exec /bin/mkdir */
|
|
4080 }
|
|
4081
|
|
4082 default: /* Parent process */
|
|
4083 wait_for_termination (cpid);
|
|
4084 }
|
|
4085
|
|
4086 if (synch_process_death != 0 || synch_process_retcode != 0)
|
|
4087 {
|
|
4088 errno = EIO; /* We don't know why, but */
|
|
4089 return -1; /* /bin/mkdir failed */
|
|
4090 }
|
|
4091
|
|
4092 return 0;
|
|
4093 }
|
|
4094 #endif /* not HAVE_MKDIR */
|
|
4095
|
|
4096 #ifndef HAVE_RMDIR
|
|
4097 int
|
442
|
4098 rmdir (const char *dpath)
|
428
|
4099 {
|
|
4100 int cpid, status, fd;
|
|
4101 struct stat statbuf;
|
|
4102
|
442
|
4103 if (stat (dpath, &statbuf) != 0) /* we do want stat() here */
|
428
|
4104 {
|
|
4105 /* Stat just set errno. We don't have to */
|
|
4106 return -1;
|
|
4107 }
|
|
4108
|
|
4109 synch_process_alive = 1;
|
|
4110 switch (cpid = fork ())
|
|
4111 {
|
|
4112
|
|
4113 case -1: /* Error in fork() */
|
|
4114 return (-1); /* Errno is set already */
|
|
4115
|
|
4116 case 0: /* Child process */
|
771
|
4117 fd = open ("/dev/null", O_RDWR);
|
428
|
4118 if (fd >= 0)
|
|
4119 {
|
|
4120 if (fd != STDIN_FILENO) dup2 (fd, STDIN_FILENO);
|
|
4121 if (fd != STDOUT_FILENO) dup2 (fd, STDOUT_FILENO);
|
|
4122 if (fd != STDERR_FILENO) dup2 (fd, STDERR_FILENO);
|
|
4123 }
|
|
4124 execl ("/bin/rmdir", "rmdir", dpath, (char *) 0);
|
|
4125 _exit (-1); /* Can't exec /bin/mkdir */
|
|
4126
|
|
4127 default: /* Parent process */
|
|
4128 wait_for_termination (cpid);
|
|
4129 }
|
|
4130
|
|
4131 if (synch_process_death != 0 ||
|
|
4132 synch_process_retcode != 0)
|
|
4133 {
|
|
4134 errno = EIO; /* We don't know why, but */
|
|
4135 return -1; /* /bin/rmdir failed */
|
|
4136 }
|
|
4137
|
|
4138 return 0;
|
|
4139 }
|
|
4140 #endif /* !HAVE_RMDIR */
|
|
4141
|
|
4142
|
|
4143 /************************************************************************/
|
|
4144 /* Misc. SunOS crap */
|
|
4145 /************************************************************************/
|
|
4146
|
|
4147 #ifdef USE_DL_STUBS
|
|
4148
|
|
4149 /* These are included on Sunos 4.1 when we do not use shared libraries.
|
|
4150 X11 libraries may refer to these functions but (we hope) do not
|
|
4151 actually call them. */
|
|
4152
|
|
4153 void *
|
|
4154 dlopen (void)
|
|
4155 {
|
|
4156 return 0;
|
|
4157 }
|
|
4158
|
|
4159 void *
|
|
4160 dlsym (void)
|
|
4161 {
|
|
4162 return 0;
|
|
4163 }
|
|
4164
|
|
4165 int
|
|
4166 dlclose (void)
|
|
4167 {
|
|
4168 return -1;
|
|
4169 }
|
|
4170
|
|
4171 #endif /* USE_DL_STUBS */
|