1 /* Interfaces to system-dependent kernel and library entries.
2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
26 #include "blockinput.h"
29 #define min(x,y) ((x) > (y) ? (y) : (x))
31 /* In this file, open, read and write refer to the system calls,
32 not our sugared interfaces sys_open, sys_read and sys_write.
33 Contrariwise, for systems where we use the system calls directly,
34 define sys_read, etc. here as aliases for them. */
37 #define sys_write write
38 #endif /* `read' is not a macro */
48 #endif /* not WINDOWSNT */
51 #define sys_close close
58 #else /* `open' is a macro */
60 #endif /* `open' is a macro */
62 /* Does anyone other than VMS need this? */
64 #define sys_fwrite fwrite
74 #include <sys/types.h>
78 /* Get _POSIX_VDISABLE, if it is available. */
83 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
87 #include <sys/param.h>
104 #include <sys/file.h>
112 #define MAXIOSIZE (32 * PAGESIZE) /* Don't I/O more than 32 blocks at a time */
116 #ifdef BSD /* this is done this way to avoid defined (BSD) || defined (USG)
117 because the vms compiler doesn't grok `defined' */
125 #endif /* not 4.1 bsd */
128 #include <sys/ioctl.h>
133 #ifdef BROKEN_TIOCGWINSZ
139 #include <sys/utsname.h>
141 #ifndef MEMORY_IN_STRING_H
144 #if defined (TIOCGWINSZ) || defined (ISC4_0)
146 #include <sys/sioctl.h>
149 #include <sys/stream.h>
150 #include <sys/ptem.h>
152 #endif /* TIOCGWINSZ or ISC4_0 */
155 extern int quit_char
;
159 #include "termhooks.h"
160 #include "termchar.h"
161 #include "termopts.h"
162 #include "dispextern.h"
167 /* In process.h which conflicts with the local copy. */
169 int _CRTAPI1
_spawnlp (int, const char *, const char *, ...);
170 int _CRTAPI1
_getpid (void);
173 #ifdef NONSYSTEM_DIR_LIBRARY
175 #endif /* NONSYSTEM_DIR_LIBRARY */
177 #include "syssignal.h"
184 #ifndef HAVE_STRUCT_UTIMBUF
185 /* We want to use utime rather than utimes, but we couldn't find the
186 structure declaration. We'll use the traditional one. */
194 #ifndef VFORK_RETURN_TYPE
195 #define VFORK_RETURN_TYPE int
198 /* LPASS8 is new in 4.3, and makes cbreak mode provide all 8 bits. */
204 #define LNOFLSH 0100000
207 static int baud_convert
[] =
212 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
213 1800, 2400, 4800, 9600, 19200, 38400
219 /* The file descriptor for Emacs's input terminal.
220 Under Unix, this is normally zero except when using X;
221 under VMS, we place the input channel number here. */
224 /* Specify a different file descriptor for further input operations. */
233 /* Discard pending input on descriptor input_fd. */
238 struct emacs_tty buf
;
243 /* Discarding input is not safe when the input could contain
244 replies from the X server. So don't do it. */
245 if (read_socket_hook
)
250 SYS$
QIOW (0, input_fd
, IO$_READVBLK
|IO$M_PURGE
, input_iosb
, 0, 0,
251 &buf
.main
, 0, 0, terminator_mask
, 0, 0);
257 ioctl (input_fd
, TIOCFLUSH
, &zero
);
259 #else /* not Apollo */
260 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
261 while (dos_keyread () != -1)
263 #else /* not MSDOS */
264 EMACS_GET_TTY (input_fd
, &buf
);
265 EMACS_SET_TTY (input_fd
, &buf
, 0);
266 #endif /* not MSDOS */
267 #endif /* not Apollo */
269 #endif /* not WINDOWSNT */
274 /* Arrange for character C to be read as the next input from
280 if (read_socket_hook
)
283 /* Should perhaps error if in batch mode */
285 ioctl (input_fd
, TIOCSTI
, &c
);
286 #else /* no TIOCSTI */
287 error ("Cannot stuff terminal input characters in this version of Unix");
288 #endif /* no TIOCSTI */
301 #else /* not DOS_NT */
305 SYS$
QIOW (0, input_fd
, IO$_SENSEMODE
, &sg
, 0, 0,
306 &sg
.class, 12, 0, 0, 0, 0 );
307 ospeed
= sg
.xmit_baud
;
313 tcgetattr (input_fd
, &sg
);
314 ospeed
= cfgetospeed (&sg
);
315 #if defined (USE_GETOBAUD) && defined (getobaud)
316 /* m88k-motorola-sysv3 needs this (ghazi@noc.rutgers.edu) 9/1/94. */
318 ospeed
= getobaud (sg
.c_cflag
);
320 #else /* neither VMS nor TERMIOS */
326 tcgetattr (input_fd
, &sg
);
328 ioctl (input_fd
, TCGETA
, &sg
);
330 ospeed
= sg
.c_cflag
& CBAUD
;
331 #else /* neither VMS nor TERMIOS nor TERMIO */
334 sg
.sg_ospeed
= B9600
;
335 if (ioctl (input_fd
, TIOCGETP
, &sg
) < 0)
337 ospeed
= sg
.sg_ospeed
;
338 #endif /* not HAVE_TERMIO */
339 #endif /* not HAVE_TERMIOS */
341 #endif /* not DOS_NT */
344 baud_rate
= (ospeed
< sizeof baud_convert
/ sizeof baud_convert
[0]
345 ? baud_convert
[ospeed
] : 9600);
351 set_exclusive_use (fd
)
355 ioctl (fd
, FIOCLEX
, 0);
357 /* Ok to do nothing if this feature does not exist */
362 wait_without_blocking ()
365 wait3 (0, WNOHANG
| WUNTRACED
, 0);
367 croak ("wait_without_blocking");
369 synch_process_alive
= 0;
372 #endif /* not subprocesses */
374 int wait_debugging
; /* Set nonzero to make following function work under dbx
375 (at least for bsd). */
378 wait_for_termination_signal ()
381 /* Wait for subprocess with process id `pid' to terminate and
382 make sure it will get eliminated (not remain forever as a zombie) */
384 wait_for_termination (pid
)
393 status
= SYS$
FORCEX (&pid
, 0, 0);
396 #if defined (BSD) || (defined (HPUX) && !defined (HPUX_5))
397 /* Note that kill returns -1 even if the process is just a zombie now.
398 But inevitably a SIGCHLD interrupt should be generated
399 and child_sig will do wait3 and make the process go away. */
400 /* There is some indication that there is a bug involved with
401 termination of subprocesses, perhaps involving a kernel bug too,
402 but no idea what it is. Just as a hunch we signal SIGCHLD to see
403 if that causes the problem to go away or get worse. */
404 sigsetmask (sigmask (SIGCHLD
));
405 if (0 > kill (pid
, 0))
407 sigsetmask (SIGEMPTYMASK
);
408 kill (getpid (), SIGCHLD
);
414 sigpause (SIGEMPTYMASK
);
415 #else /* not BSD, and not HPUX version >= 6 */
416 #if defined (UNIPLUS)
417 if (0 > kill (pid
, 0))
420 #else /* neither BSD nor UNIPLUS: random sysV */
421 #ifdef POSIX_SIGNALS /* would this work for LINUX as well? */
422 sigblock (sigmask (SIGCHLD
));
423 if (0 > kill (pid
, 0))
425 sigunblock (sigmask (SIGCHLD
));
428 sigpause (SIGEMPTYMASK
);
429 #else /* not POSIX_SIGNALS */
430 #ifdef HAVE_SYSV_SIGPAUSE
432 if (0 > kill (pid
, 0))
438 #else /* not HAVE_SYSV_SIGPAUSE */
442 #else /* not WINDOWSNT */
443 if (0 > kill (pid
, 0))
445 /* Using sleep instead of pause avoids timing error.
446 If the inferior dies just before the sleep,
447 we lose just one second. */
449 #endif /* not WINDOWSNT */
450 #endif /* not HAVE_SYSV_SIGPAUSE */
451 #endif /* not POSIX_SIGNALS */
452 #endif /* not UNIPLUS */
453 #endif /* not BSD, and not HPUX version >= 6 */
455 #else /* not subprocesses */
457 if (kill (pid
, 0) < 0)
463 if (status
== pid
|| status
== -1)
466 #endif /* not subprocesses */
473 * flush any pending output
474 * (may flush input as well; it does not matter the way we use it)
477 flush_pending_output (channel
)
481 /* If we try this, we get hit with SIGTTIN, because
482 the child's tty belongs to the child's pgrp. */
485 ioctl (channel
, TCFLSH
, 1);
489 /* 3rd arg should be ignored
490 but some 4.2 kernels actually want the address of an int
491 and nonzero means something different. */
492 ioctl (channel
, TIOCFLUSH
, &zero
);
499 /* Set up the terminal at the other end of a pseudo-terminal that
500 we will be controlling an inferior through.
501 It should not echo or do line-editing, since that is done
502 in Emacs. No padding needed for insertion into an Emacs buffer. */
504 child_setup_tty (out
)
510 EMACS_GET_TTY (out
, &s
);
512 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
513 s
.main
.c_oflag
|= OPOST
; /* Enable output postprocessing */
514 s
.main
.c_oflag
&= ~ONLCR
; /* Disable map of NL to CR-NL on output */
516 s
.main
.c_oflag
&= ~(NLDLY
|CRDLY
|TABDLY
|BSDLY
|VTDLY
|FFDLY
);
517 /* No output delays */
519 s
.main
.c_lflag
&= ~ECHO
; /* Disable echo */
520 s
.main
.c_lflag
|= ISIG
; /* Enable signals */
522 s
.main
.c_iflag
&= ~IUCLC
; /* Disable downcasing on input. */
525 s
.main
.c_oflag
&= ~OLCUC
; /* Disable upcasing on output. */
527 s
.main
.c_cflag
= (s
.main
.c_cflag
& ~CSIZE
) | CS8
; /* Don't strip 8th bit */
529 /* Said to be unnecessary: */
530 s
.main
.c_cc
[VMIN
] = 1; /* minimum number of characters to accept */
531 s
.main
.c_cc
[VTIME
] = 0; /* wait forever for at least 1 character */
534 s
.main
.c_lflag
|= ICANON
; /* Enable erase/kill and eof processing */
535 s
.main
.c_cc
[VEOF
] = 04; /* insure that EOF is Control-D */
536 s
.main
.c_cc
[VERASE
] = CDISABLE
; /* disable erase processing */
537 s
.main
.c_cc
[VKILL
] = CDISABLE
; /* disable kill processing */
540 s
.main
.c_cflag
= (s
.main
.c_cflag
& ~CBAUD
) | B9600
; /* baud rate sanity */
544 /* AIX enhanced edit loses NULs, so disable it */
547 s
.main
.c_iflag
&= ~ASCEDIT
;
549 /* Also, PTY overloads NUL and BREAK.
550 don't ignore break, but don't signal either, so it looks like NUL. */
551 s
.main
.c_iflag
&= ~IGNBRK
;
552 s
.main
.c_iflag
&= ~BRKINT
;
553 /* QUIT and INTR work better as signals, so disable character forms */
554 s
.main
.c_cc
[VINTR
] = 0377;
555 #ifdef SIGNALS_VIA_CHARACTERS
556 /* the QUIT and INTR character are used in process_send_signal
557 so set them here to something useful. */
558 if (s
.main
.c_cc
[VQUIT
] == 0377)
559 s
.main
.c_cc
[VQUIT
] = '\\'&037; /* Control-\ */
560 if (s
.main
.c_cc
[VINTR
] == 0377)
561 s
.main
.c_cc
[VINTR
] = 'C'&037; /* Control-C */
562 #else /* no TIOCGPGRP or no TIOCGLTC or no TIOCGETC */
563 /* QUIT and INTR work better as signals, so disable character forms */
564 s
.main
.c_cc
[VQUIT
] = 0377;
565 s
.main
.c_cc
[VINTR
] = 0377;
566 s
.main
.c_lflag
&= ~ISIG
;
567 #endif /* no TIOCGPGRP or no TIOCGLTC or no TIOCGETC */
568 s
.main
.c_cc
[VEOL
] = 0377;
569 s
.main
.c_cflag
= (s
.main
.c_cflag
& ~CBAUD
) | B9600
; /* baud rate sanity */
572 #else /* not HAVE_TERMIO */
574 s
.main
.sg_flags
&= ~(ECHO
| CRMOD
| ANYP
| ALLDELAY
| RAW
| LCASE
576 s
.main
.sg_flags
|= LPASS8
;
577 s
.main
.sg_erase
= 0377;
578 s
.main
.sg_kill
= 0377;
579 s
.lmode
= LLITOUT
| s
.lmode
; /* Don't strip 8th bit */
581 #endif /* not HAVE_TERMIO */
583 EMACS_SET_TTY (out
, &s
, 0);
592 ioctl (out
, FIOASYNC
, &zero
);
595 #endif /* not DOS_NT */
599 #endif /* subprocesses */
601 /* Record a signal code and the handler for it. */
605 SIGTYPE (*handler
) ();
608 /* Suspend the Emacs process; give terminal to its superior. */
613 /* "Foster" parentage allows emacs to return to a subprocess that attached
614 to the current emacs as a cheaper than starting a whole new process. This
615 is set up by KEPTEDITOR.COM. */
616 unsigned long parent_id
, foster_parent_id
;
619 fpid_string
= getenv ("EMACS_PARENT_PID");
620 if (fpid_string
!= NULL
)
622 sscanf (fpid_string
, "%x", &foster_parent_id
);
623 if (foster_parent_id
!= 0)
624 parent_id
= foster_parent_id
;
626 parent_id
= getppid ();
629 parent_id
= getppid ();
631 xfree (fpid_string
); /* On VMS, this was malloc'd */
633 if (parent_id
&& parent_id
!= 0xffffffff)
635 SIGTYPE (*oldsig
)() = (int) signal (SIGINT
, SIG_IGN
);
636 int status
= LIB$
ATTACH (&parent_id
) & 1;
637 signal (SIGINT
, oldsig
);
646 d_prompt
.l
= sizeof ("Emacs: "); /* Our special prompt */
647 d_prompt
.a
= "Emacs: "; /* Just a reminder */
648 LIB$
SPAWN (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, &d_prompt
, 0);
653 #if defined(SIGTSTP) && !defined(MSDOS)
656 int pgrp
= EMACS_GETPGRP (0);
657 EMACS_KILLPG (pgrp
, SIGTSTP
);
660 #else /* No SIGTSTP */
661 #ifdef USG_JOBCTRL /* If you don't know what this is don't mess with it */
662 ptrace (0, 0, 0, 0); /* set for ptrace - caught by csh */
663 kill (getpid (), SIGQUIT
);
665 #else /* No SIGTSTP or USG_JOBCTRL */
667 /* On a system where suspending is not implemented,
668 instead fork a subshell and let it talk directly to the terminal
672 #endif /* no USG_JOBCTRL */
673 #endif /* no SIGTSTP */
677 /* Fork a subshell. */
682 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
684 char oldwd
[MAXPATHLEN
+1]; /* Fixed length is safe on MSDOS. */
687 struct save_signal saved_handlers
[5];
689 unsigned char *str
= 0;
692 saved_handlers
[0].code
= SIGINT
;
693 saved_handlers
[1].code
= SIGQUIT
;
694 saved_handlers
[2].code
= SIGTERM
;
696 saved_handlers
[3].code
= SIGIO
;
697 saved_handlers
[4].code
= 0;
699 saved_handlers
[3].code
= 0;
702 /* Mentioning current_buffer->buffer would mean including buffer.h,
703 which somehow wedges the hp compiler. So instead... */
705 dir
= intern ("default-directory");
706 if (NILP (Fboundp (dir
)))
708 dir
= Fsymbol_value (dir
);
712 dir
= expand_and_dir_to_file (Funhandled_file_name_directory (dir
), Qnil
);
713 str
= (unsigned char *) alloca (XSTRING (dir
)->size
+ 2);
714 len
= XSTRING (dir
)->size
;
715 bcopy (XSTRING (dir
)->data
, str
, len
);
716 if (str
[len
- 1] != '/') str
[len
++] = '/';
722 #else /* not WINDOWSNT */
726 error ("Can't spawn subshell");
728 #endif /* not WINDOWSNT */
732 #ifdef MSDOS /* MW, Aug 1993 */
735 sh
= (char *) egetenv ("SHELL");
739 /* Use our buffer's default directory for the subshell. */
744 close_process_descs (); /* Close Emacs's pipes/ptys */
747 #ifdef SET_EMACS_PRIORITY
749 extern int emacs_priority
;
751 if (emacs_priority
< 0)
752 nice (-emacs_priority
);
756 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
760 report_file_error ("Can't execute subshell", Fcons (build_string (sh
), Qnil
));
761 #else /* not MSDOS */
763 /* Waits for process completion */
764 pid
= _spawnlp (_P_WAIT
, sh
, sh
, NULL
);
766 write (1, "Can't execute subshell", 22);
769 #else /* not WINDOWSNT */
771 write (1, "Can't execute subshell", 22);
773 #endif /* not WINDOWSNT */
774 #endif /* not MSDOS */
777 save_signal_handlers (saved_handlers
);
778 synch_process_alive
= 1;
779 wait_for_termination (pid
);
780 restore_signal_handlers (saved_handlers
);
784 save_signal_handlers (saved_handlers
)
785 struct save_signal
*saved_handlers
;
787 while (saved_handlers
->code
)
789 saved_handlers
->handler
790 = (SIGTYPE (*) ()) signal (saved_handlers
->code
, SIG_IGN
);
795 restore_signal_handlers (saved_handlers
)
796 struct save_signal
*saved_handlers
;
798 while (saved_handlers
->code
)
800 signal (saved_handlers
->code
, saved_handlers
->handler
);
813 old_fcntl_flags
= fcntl (fd
, F_GETFL
, 0) & ~FASYNC
;
814 fcntl (fd
, F_SETFL
, old_fcntl_flags
| FASYNC
);
816 interrupts_deferred
= 0;
824 #ifdef FASYNC /* F_SETFL does not imply existence of FASYNC */
828 if (read_socket_hook
)
832 sigunblock (sigmask (SIGWINCH
));
834 fcntl (input_fd
, F_SETFL
, old_fcntl_flags
| FASYNC
);
836 interrupts_deferred
= 0;
841 if (read_socket_hook
)
845 sigblock (sigmask (SIGWINCH
));
847 fcntl (input_fd
, F_SETFL
, old_fcntl_flags
);
848 interrupts_deferred
= 1;
851 #else /* no FASYNC */
852 #ifdef STRIDE /* Stride doesn't have FASYNC - use FIOASYNC */
858 if (read_socket_hook
)
861 ioctl (input_fd
, FIOASYNC
, &on
);
862 interrupts_deferred
= 0;
869 if (read_socket_hook
)
872 ioctl (input_fd
, FIOASYNC
, &off
);
873 interrupts_deferred
= 1;
876 #else /* not FASYNC, not STRIDE */
887 if (read_socket_hook
)
891 sigaddset(&st
, SIGIO
);
892 ioctl (input_fd
, FIOASYNC
, &on
);
893 interrupts_deferred
= 0;
894 sigprocmask(SIG_UNBLOCK
, &st
, (sigset_t
*)0);
901 if (read_socket_hook
)
904 ioctl (input_fd
, FIOASYNC
, &off
);
905 interrupts_deferred
= 1;
912 if (read_socket_hook
)
915 croak ("request_sigio");
920 if (read_socket_hook
)
923 croak ("unrequest_sigio");
931 /* Saving and restoring the process group of Emacs's terminal. */
935 /* The process group of which Emacs was a member when it initially
938 If Emacs was in its own process group (i.e. inherited_pgroup ==
939 getpid ()), then we know we're running under a shell with job
940 control (Emacs would never be run as part of a pipeline).
943 If Emacs was not in its own process group, then we know we're
944 running under a shell (or a caller) that doesn't know how to
945 separate itself from Emacs (like sh). Emacs must be in its own
946 process group in order to receive SIGIO correctly. In this
947 situation, we put ourselves in our own pgroup, forcibly set the
948 tty's pgroup to our pgroup, and make sure to restore and reinstate
949 the tty's pgroup just like any other terminal setting. If
950 inherited_group was not the tty's pgroup, then we'll get a
951 SIGTTmumble when we try to change the tty's pgroup, and a CONT if
952 it goes foreground in the future, which is what should happen. */
953 int inherited_pgroup
;
955 /* Split off the foreground process group to Emacs alone.
956 When we are in the foreground, but not started in our own process
957 group, redirect the TTY to point to our own process group. We need
958 to be in our own process group to receive SIGIO properly. */
959 narrow_foreground_group ()
963 setpgrp (0, inherited_pgroup
);
964 if (inherited_pgroup
!= me
)
965 EMACS_SET_TTY_PGRP (input_fd
, &me
);
969 /* Set the tty to our original foreground group. */
970 widen_foreground_group ()
972 if (inherited_pgroup
!= getpid ())
973 EMACS_SET_TTY_PGRP (input_fd
, &inherited_pgroup
);
974 setpgrp (0, inherited_pgroup
);
977 #endif /* BSD_PGRPS */
979 /* Getting and setting emacs_tty structures. */
981 /* Set *TC to the parameters associated with the terminal FD.
982 Return zero if all's well, or -1 if we ran into an error we
983 couldn't deal with. */
985 emacs_get_tty (fd
, settings
)
987 struct emacs_tty
*settings
;
989 /* Retrieve the primary parameters - baud rate, character size, etcetera. */
991 /* We have those nifty POSIX tcmumbleattr functions. */
992 if (tcgetattr (fd
, &settings
->main
) < 0)
997 /* The SYSV-style interface? */
998 if (ioctl (fd
, TCGETA
, &settings
->main
) < 0)
1003 /* Vehemently Monstrous System? :-) */
1004 if (! (SYS$
QIOW (0, fd
, IO$_SENSEMODE
, settings
, 0, 0,
1005 &settings
->main
.class, 12, 0, 0, 0, 0)
1011 /* I give up - I hope you have the BSD ioctls. */
1012 if (ioctl (fd
, TIOCGETP
, &settings
->main
) < 0)
1014 #endif /* not DOS_NT */
1019 /* Suivant - Do we have to get struct ltchars data? */
1021 if (ioctl (fd
, TIOCGLTC
, &settings
->ltchars
) < 0)
1025 /* How about a struct tchars and a wordful of lmode bits? */
1027 if (ioctl (fd
, TIOCGETC
, &settings
->tchars
) < 0
1028 || ioctl (fd
, TIOCLGET
, &settings
->lmode
) < 0)
1032 /* We have survived the tempest. */
1037 /* Set the parameters of the tty on FD according to the contents of
1038 *SETTINGS. If FLUSHP is non-zero, we discard input.
1039 Return 0 if all went well, and -1 if anything failed. */
1042 emacs_set_tty (fd
, settings
, flushp
)
1044 struct emacs_tty
*settings
;
1047 /* Set the primary parameters - baud rate, character size, etcetera. */
1050 /* We have those nifty POSIX tcmumbleattr functions.
1051 William J. Smith <wjs@wiis.wang.com> writes:
1052 "POSIX 1003.1 defines tcsetattr() to return success if it was
1053 able to perform any of the requested actions, even if some
1054 of the requested actions could not be performed.
1055 We must read settings back to ensure tty setup properly.
1056 AIX requires this to keep tty from hanging occasionally." */
1057 /* This make sure that we don't loop indefinitely in here. */
1058 for (i
= 0 ; i
< 10 ; i
++)
1059 if (tcsetattr (fd
, flushp
? TCSAFLUSH
: TCSADRAIN
, &settings
->main
) < 0)
1070 /* Get the current settings, and see if they're what we asked for. */
1071 tcgetattr (fd
, &new);
1072 /* We cannot use memcmp on the whole structure here because under
1073 * aix386 the termios structure has some reserved field that may
1076 if ( new.c_iflag
== settings
->main
.c_iflag
1077 && new.c_oflag
== settings
->main
.c_oflag
1078 && new.c_cflag
== settings
->main
.c_cflag
1079 && new.c_lflag
== settings
->main
.c_lflag
1080 && memcmp(new.c_cc
, settings
->main
.c_cc
, NCCS
) == 0)
1088 /* The SYSV-style interface? */
1089 if (ioctl (fd
, flushp
? TCSETAF
: TCSETAW
, &settings
->main
) < 0)
1094 /* Vehemently Monstrous System? :-) */
1095 if (! (SYS$
QIOW (0, fd
, IO$_SETMODE
, &input_iosb
, 0, 0,
1096 &settings
->main
.class, 12, 0, 0, 0, 0)
1102 /* I give up - I hope you have the BSD ioctls. */
1103 if (ioctl (fd
, (flushp
) ? TIOCSETP
: TIOCSETN
, &settings
->main
) < 0)
1105 #endif /* not DOS_NT */
1111 /* Suivant - Do we have to get struct ltchars data? */
1113 if (ioctl (fd
, TIOCSLTC
, &settings
->ltchars
) < 0)
1117 /* How about a struct tchars and a wordful of lmode bits? */
1119 if (ioctl (fd
, TIOCSETC
, &settings
->tchars
) < 0
1120 || ioctl (fd
, TIOCLSET
, &settings
->lmode
) < 0)
1124 /* We have survived the tempest. */
1129 /* The initial tty mode bits */
1130 struct emacs_tty old_tty
;
1132 /* 1 if we have been through init_sys_modes. */
1135 /* 1 if outer tty status has been recorded. */
1139 /* BSD 4.1 needs to keep track of the lmode bits in order to start
1144 #ifndef F_SETOWN_BUG
1146 int old_fcntl_owner
;
1147 #endif /* F_SETOWN */
1148 #endif /* F_SETOWN_BUG */
1150 /* This may also be defined in stdio,
1151 but if so, this does no harm,
1152 and using the same name avoids wasting the other one's space. */
1154 #if defined (USG) || defined (DGUX)
1155 unsigned char _sobuf
[BUFSIZ
+8];
1157 char _sobuf
[BUFSIZ
];
1161 static struct ltchars new_ltchars
= {-1,-1,-1,-1,-1,-1};
1164 static struct tchars new_tchars
= {-1,-1,-1,-1,-1,-1};
1169 struct emacs_tty tty
;
1173 static int oob_chars
[2] = {0, 1 << 7}; /* catch C-g's */
1174 extern int (*interrupt_signal
) ();
1183 input_ef
= get_kbd_event_flag ();
1184 /* LIB$GET_EF (&input_ef); */
1185 SYS$
CLREF (input_ef
);
1186 waiting_for_ast
= 0;
1188 timer_ef
= get_timer_event_flag ();
1189 /* LIB$GET_EF (&timer_ef); */
1190 SYS$
CLREF (timer_ef
);
1194 LIB$
GET_EF (&process_ef
);
1195 SYS$
CLREF (process_ef
);
1197 if (input_ef
/ 32 != process_ef
/ 32)
1198 croak ("Input and process event flags in different clusters.");
1200 if (input_ef
/ 32 != timer_ef
/ 32)
1201 croak ("Input and timer event flags in different clusters.");
1203 input_eflist
= ((unsigned) 1 << (input_ef
% 32)) |
1204 ((unsigned) 1 << (process_ef
% 32));
1206 timer_eflist
= ((unsigned) 1 << (input_ef
% 32)) |
1207 ((unsigned) 1 << (timer_ef
% 32));
1209 sys_access_reinit ();
1211 #endif /* not VMS */
1214 if (! read_socket_hook
&& EQ (Vwindow_system
, Qnil
))
1215 narrow_foreground_group ();
1218 #ifdef HAVE_X_WINDOWS
1219 /* Emacs' window system on MSDOG uses the `internal terminal' and therefore
1220 needs the initialization code below. */
1221 if (!read_socket_hook
&& EQ (Vwindow_system
, Qnil
))
1224 EMACS_GET_TTY (input_fd
, &old_tty
);
1230 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
1232 /* This allows meta to be sent on 8th bit. */
1233 tty
.main
.c_iflag
&= ~INPCK
; /* don't check input for parity */
1235 tty
.main
.c_iflag
|= (IGNBRK
); /* Ignore break condition */
1236 tty
.main
.c_iflag
&= ~ICRNL
; /* Disable map of CR to NL on input */
1238 tty
.main
.c_iflag
&= ~ISTRIP
; /* don't strip 8th bit on input */
1240 tty
.main
.c_lflag
&= ~ECHO
; /* Disable echo */
1241 tty
.main
.c_lflag
&= ~ICANON
; /* Disable erase/kill processing */
1243 tty
.main
.c_lflag
&= ~IEXTEN
; /* Disable other editing characters. */
1245 tty
.main
.c_lflag
|= ISIG
; /* Enable signals */
1248 tty
.main
.c_iflag
|= IXON
; /* Enable start/stop output control */
1250 tty
.main
.c_iflag
&= ~IXANY
;
1254 tty
.main
.c_iflag
&= ~IXON
; /* Disable start/stop output control */
1255 tty
.main
.c_oflag
&= ~ONLCR
; /* Disable map of NL to CR-NL
1257 tty
.main
.c_oflag
&= ~TAB3
; /* Disable tab expansion */
1261 tty
.main
.c_cflag
|= CS8
; /* allow 8th bit on input */
1262 tty
.main
.c_cflag
&= ~PARENB
;/* Don't check parity */
1265 tty
.main
.c_cc
[VINTR
] = quit_char
; /* C-g (usually) gives SIGINT */
1266 /* Set up C-g for both SIGQUIT and SIGINT.
1267 We don't know which we will get, but we handle both alike
1268 so which one it really gives us does not matter. */
1269 tty
.main
.c_cc
[VQUIT
] = quit_char
;
1270 tty
.main
.c_cc
[VMIN
] = 1; /* Input should wait for at least 1 char */
1271 tty
.main
.c_cc
[VTIME
] = 0; /* no matter how long that takes. */
1273 tty
.main
.c_cc
[VSWTCH
] = CDISABLE
; /* Turn off shell layering use
1276 #if defined (mips) || defined (HAVE_TCATTR)
1278 tty
.main
.c_cc
[VSUSP
] = CDISABLE
; /* Turn off mips handling of C-z. */
1281 tty
.main
.c_cc
[V_DSUSP
] = CDISABLE
; /* Turn off mips handling of C-y. */
1282 #endif /* V_DSUSP */
1283 #ifdef VDSUSP /* Some systems have VDSUSP, some have V_DSUSP. */
1284 tty
.main
.c_cc
[VDSUSP
] = CDISABLE
;
1287 tty
.main
.c_cc
[VLNEXT
] = CDISABLE
;
1290 tty
.main
.c_cc
[VREPRINT
] = CDISABLE
;
1291 #endif /* VREPRINT */
1293 tty
.main
.c_cc
[VWERASE
] = CDISABLE
;
1294 #endif /* VWERASE */
1296 tty
.main
.c_cc
[VDISCARD
] = CDISABLE
;
1297 #endif /* VDISCARD */
1299 tty
.main
.c_cc
[VSTART
] = CDISABLE
;
1302 tty
.main
.c_cc
[VSTOP
] = CDISABLE
;
1304 #endif /* mips or HAVE_TCATTR */
1305 #ifdef SET_LINE_DISCIPLINE
1306 /* Need to explicitely request TERMIODISC line discipline or
1307 Ultrix's termios does not work correctly. */
1308 tty
.main
.c_line
= SET_LINE_DISCIPLINE
;
1312 /* AIX enhanced edit loses NULs, so disable it. */
1313 tty
.main
.c_line
= 0;
1314 tty
.main
.c_iflag
&= ~ASCEDIT
;
1316 tty
.main
.c_cc
[VSTRT
] = 255;
1317 tty
.main
.c_cc
[VSTOP
] = 255;
1318 tty
.main
.c_cc
[VSUSP
] = 255;
1319 tty
.main
.c_cc
[VDSUSP
] = 255;
1320 #endif /* IBMR2AIX */
1321 /* Also, PTY overloads NUL and BREAK.
1322 don't ignore break, but don't signal either, so it looks like NUL.
1323 This really serves a purpose only if running in an XTERM window
1324 or via TELNET or the like, but does no harm elsewhere. */
1325 tty
.main
.c_iflag
&= ~IGNBRK
;
1326 tty
.main
.c_iflag
&= ~BRKINT
;
1328 #else /* if not HAVE_TERMIO */
1330 tty
.main
.tt_char
|= TT$M_NOECHO
;
1332 tty
.main
.tt_char
|= TT$M_EIGHTBIT
;
1334 tty
.main
.tt_char
|= TT$M_TTSYNC
;
1336 tty
.main
.tt_char
&= ~TT$M_TTSYNC
;
1337 tty
.main
.tt2_char
|= TT2$M_PASTHRU
| TT2$M_XON
;
1338 #else /* not VMS (BSD, that is) */
1340 tty
.main
.sg_flags
&= ~(ECHO
| CRMOD
| XTABS
);
1342 tty
.main
.sg_flags
|= ANYP
;
1343 tty
.main
.sg_flags
|= interrupt_input
? RAW
: CBREAK
;
1344 #endif /* not DOS_NT */
1345 #endif /* not VMS (BSD, that is) */
1346 #endif /* not HAVE_TERMIO */
1348 /* If going to use CBREAK mode, we must request C-g to interrupt
1349 and turn off start and stop chars, etc. If not going to use
1350 CBREAK mode, do this anyway so as to turn off local flow
1351 control for user coming over network on 4.2; in this case,
1352 only t_stopc and t_startc really matter. */
1355 /* Note: if not using CBREAK mode, it makes no difference how we
1357 tty
.tchars
= new_tchars
;
1358 tty
.tchars
.t_intrc
= quit_char
;
1361 tty
.tchars
.t_startc
= '\021';
1362 tty
.tchars
.t_stopc
= '\023';
1365 tty
.lmode
= LDECCTQ
| LLITOUT
| LPASS8
| LNOFLSH
| old_tty
.lmode
;
1367 /* Under Ultrix 4.2a, leaving this out doesn't seem to hurt
1368 anything, and leaving it in breaks the meta key. Go figure. */
1369 tty
.lmode
&= ~LLITOUT
;
1376 #endif /* HAVE_TCHARS */
1377 #endif /* not HAVE_TERMIO */
1380 tty
.ltchars
= new_ltchars
;
1381 #endif /* HAVE_LTCHARS */
1382 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
1384 internal_terminal_init ();
1388 EMACS_SET_TTY (input_fd
, &tty
, 0);
1390 /* This code added to insure that, if flow-control is not to be used,
1391 we have an unlocked terminal at the start. */
1394 if (!flow_control
) ioctl (input_fd
, TCXONC
, 1);
1398 if (!flow_control
) ioctl (input_fd
, TIOCSTART
, 0);
1402 #if defined (HAVE_TERMIOS) || defined (HPUX9)
1404 if (!flow_control
) tcflow (input_fd
, TCOON
);
1412 /* IBM's HFT device usually thinks a ^J should be LF/CR. We need it
1413 to be only LF. This is the way that is done. */
1416 if (ioctl (1, HFTGETID
, &tty
) != -1)
1417 write (1, "\033[20l", 5);
1423 /* Appears to do nothing when in PASTHRU mode.
1424 SYS$QIOW (0, input_fd, IO$_SETMODE|IO$M_OUTBAND, 0, 0, 0,
1425 interrupt_signal, oob_chars, 0, 0, 0, 0);
1427 queue_kbd_input (0);
1432 #ifndef F_SETOWN_BUG
1433 #ifdef F_GETOWN /* F_SETFL does not imply existence of F_GETOWN */
1435 && ! read_socket_hook
&& EQ (Vwindow_system
, Qnil
))
1437 old_fcntl_owner
= fcntl (input_fd
, F_GETOWN
, 0);
1438 fcntl (input_fd
, F_SETOWN
, getpid ());
1439 init_sigio (input_fd
);
1441 #endif /* F_GETOWN */
1442 #endif /* F_SETOWN_BUG */
1443 #endif /* F_SETFL */
1446 if (interrupt_input
)
1447 init_sigio (input_fd
);
1450 #ifdef VMS /* VMS sometimes has this symbol but lacks setvbuf. */
1454 /* This symbol is defined on recent USG systems.
1455 Someone says without this call USG won't really buffer the file
1456 even with a call to setbuf. */
1457 setvbuf (stdout
, _sobuf
, _IOFBF
, sizeof _sobuf
);
1459 setbuf (stdout
, _sobuf
);
1461 if (! read_socket_hook
&& EQ (Vwindow_system
, Qnil
))
1462 set_terminal_modes ();
1464 if (term_initted
&& no_redraw_on_reenter
)
1466 if (display_completed
)
1467 direct_output_forward_char (0);
1473 if (FRAMEP (Vterminal_frame
))
1474 FRAME_GARBAGED_P (XFRAME (Vterminal_frame
)) = 1;
1481 /* Return nonzero if safe to use tabs in output.
1482 At the time this is called, init_sys_modes has not been done yet. */
1486 struct emacs_tty tty
;
1488 EMACS_GET_TTY (input_fd
, &tty
);
1489 return EMACS_TTY_TABS_OK (&tty
);
1492 /* Get terminal size from system.
1493 Store number of lines into *HEIGHTP and width into *WIDTHP.
1494 We store 0 if there's no valid information. */
1496 get_frame_size (widthp
, heightp
)
1497 int *widthp
, *heightp
;
1503 struct winsize size
;
1505 if (ioctl (input_fd
, TIOCGWINSZ
, &size
) == -1)
1506 *widthp
= *heightp
= 0;
1509 *widthp
= size
.ws_col
;
1510 *heightp
= size
.ws_row
;
1516 /* SunOS - style. */
1517 struct ttysize size
;
1519 if (ioctl (input_fd
, TIOCGSIZE
, &size
) == -1)
1520 *widthp
= *heightp
= 0;
1523 *widthp
= size
.ts_cols
;
1524 *heightp
= size
.ts_lines
;
1530 struct sensemode tty
;
1532 SYS$
QIOW (0, input_fd
, IO$_SENSEMODE
, &tty
, 0, 0,
1533 &tty
.class, 12, 0, 0, 0, 0);
1534 *widthp
= tty
.scr_wid
;
1535 *heightp
= tty
.scr_len
;
1539 *widthp
= ScreenCols ();
1540 *heightp
= ScreenRows ();
1541 #else /* system doesn't know size */
1546 #endif /* not VMS */
1547 #endif /* not SunOS-style */
1548 #endif /* not BSD-style */
1551 /* Set the logical window size associated with descriptor FD
1552 to HEIGHT and WIDTH. This is used mainly with ptys. */
1555 set_window_size (fd
, height
, width
)
1556 int fd
, height
, width
;
1561 struct winsize size
;
1562 size
.ws_row
= height
;
1563 size
.ws_col
= width
;
1565 if (ioctl (fd
, TIOCSWINSZ
, &size
) == -1)
1566 return 0; /* error */
1573 /* SunOS - style. */
1574 struct ttysize size
;
1575 size
.ts_lines
= height
;
1576 size
.ts_cols
= width
;
1578 if (ioctl (fd
, TIOCGSIZE
, &size
) == -1)
1584 #endif /* not SunOS-style */
1585 #endif /* not BSD-style */
1589 /* Prepare the terminal for exiting Emacs; move the cursor to the
1590 bottom of the frame, turn off interrupt-driven I/O, etc. */
1600 #ifdef HAVE_X_WINDOWS
1601 /* Emacs' window system on MSDOG uses the `internal terminal' and therefore
1602 needs the clean-up code below. */
1603 if (read_socket_hook
|| !EQ (Vwindow_system
, Qnil
))
1606 cursor_to (FRAME_HEIGHT (selected_frame
) - 1, 0);
1608 if (!EQ (Vwindow_system
, Qnil
))
1610 /* Change to grey on white. */
1616 clear_end_of_line (FRAME_WIDTH (selected_frame
));
1617 /* clear_end_of_line may move the cursor */
1618 cursor_to (FRAME_HEIGHT (selected_frame
) - 1, 0);
1619 #if defined (IBMR2AIX) && defined (AIXHFT)
1621 /* HFT devices normally use ^J as a LF/CR. We forced it to
1622 do the LF only. Now, we need to reset it. */
1625 if (ioctl (1, HFTGETID
, &tty
) != -1)
1626 write (1, "\033[20h", 5);
1630 reset_terminal_modes ();
1634 /* Avoid possible loss of output when changing terminal modes. */
1635 fsync (fileno (stdout
));
1640 #ifndef F_SETOWN_BUG
1641 #ifdef F_SETOWN /* F_SETFL does not imply existence of F_SETOWN */
1642 if (interrupt_input
)
1645 fcntl (input_fd
, F_SETOWN
, old_fcntl_owner
);
1647 #endif /* F_SETOWN */
1648 #endif /* F_SETOWN_BUG */
1650 fcntl (input_fd
, F_SETFL
, fcntl (input_fd
, F_GETFL
, 0) & ~O_NDELAY
);
1652 #endif /* F_SETFL */
1654 if (interrupt_input
)
1659 while (EMACS_SET_TTY (input_fd
, &old_tty
, 0) < 0 && errno
== EINTR
)
1662 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
1666 #ifdef SET_LINE_DISCIPLINE
1667 /* Ultrix's termios *ignores* any line discipline except TERMIODISC.
1668 A different old line discipline is therefore not restored, yet.
1669 Restore the old line discipline by hand. */
1670 ioctl (0, TIOCSETD
, &old_tty
.main
.c_line
);
1678 widen_foreground_group ();
1684 /* Set up the proper status flags for use of a pty. */
1689 /* I'm told that TOICREMOTE does not mean control chars
1690 "can't be sent" but rather that they don't have
1691 input-editing or signaling effects.
1692 That should be good, because we have other ways
1693 to do those things in Emacs.
1694 However, telnet mode seems not to work on 4.2.
1695 So TIOCREMOTE is turned off now. */
1697 /* Under hp-ux, if TIOCREMOTE is turned on, some calls
1698 will hang. In particular, the "timeout" feature (which
1699 causes a read to return if there is no data available)
1700 does this. Also it is known that telnet mode will hang
1701 in such a way that Emacs must be stopped (perhaps this
1702 is the same problem).
1704 If TIOCREMOTE is turned off, then there is a bug in
1705 hp-ux which sometimes loses data. Apparently the
1706 code which blocks the master process when the internal
1707 buffer fills up does not work. Other than this,
1708 though, everything else seems to work fine.
1710 Since the latter lossage is more benign, we may as well
1711 lose that way. -- cph */
1716 ioctl (fd
, FIONBIO
, &on
);
1721 /* On AIX, the parent gets SIGHUP when a pty attached child dies. So, we */
1722 /* ignore SIGHUP once we've started a child on a pty. Note that this may */
1723 /* cause EMACS not to die when it should, i.e., when its own controlling */
1724 /* tty goes away. I've complained to the AIX developers, and they may */
1725 /* change this behavior, but I'm not going to hold my breath. */
1726 signal (SIGHUP
, SIG_IGN
);
1729 #endif /* HAVE_PTYS */
1733 /* Assigning an input channel is done at the start of Emacs execution.
1734 This is called each time Emacs is resumed, also, but does nothing
1735 because input_chain is no longer zero. */
1743 status
= SYS$
ASSIGN (&input_dsc
, &input_fd
, 0, 0);
1749 /* Deassigning the input channel is done before exiting. */
1753 return SYS$
DASSGN (input_fd
);
1758 /* Request reading one character into the keyboard buffer.
1759 This is done as soon as the buffer becomes empty. */
1764 extern kbd_input_ast ();
1766 waiting_for_ast
= 0;
1768 status
= SYS$
QIO (0, input_fd
, IO$_READVBLK
,
1769 &input_iosb
, kbd_input_ast
, 1,
1770 &input_buffer
, 1, 0, terminator_mask
, 0, 0);
1775 /* Ast routine that is called when keyboard input comes in
1776 in accord with the SYS$QIO above. */
1780 register int c
= -1;
1781 int old_errno
= errno
;
1782 extern EMACS_TIME
*input_available_clear_time
;
1784 if (waiting_for_ast
)
1785 SYS$
SETEF (input_ef
);
1786 waiting_for_ast
= 0;
1789 if (input_count
== 25)
1791 printf ("Ast # %d,", input_count
);
1792 printf (" iosb = %x, %x, %x, %x",
1793 input_iosb
.offset
, input_iosb
.status
, input_iosb
.termlen
,
1796 if (input_iosb
.offset
)
1800 printf (", char = 0%o", c
);
1812 struct input_event e
;
1813 e
.kind
= ascii_keystroke
;
1814 XSETINT (e
.code
, c
);
1815 XSETFRAME (e
.frame_or_window
, selected_frame
);
1816 kbd_buffer_store_event (&e
);
1818 if (input_available_clear_time
)
1819 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
1823 /* Wait until there is something in kbd_buffer. */
1825 wait_for_kbd_input ()
1827 extern int have_process_input
, process_exited
;
1829 /* If already something, avoid doing system calls. */
1830 if (detect_input_pending ())
1834 /* Clear a flag, and tell ast routine above to set it. */
1835 SYS$
CLREF (input_ef
);
1836 waiting_for_ast
= 1;
1837 /* Check for timing error: ast happened while we were doing that. */
1838 if (!detect_input_pending ())
1840 /* No timing error: wait for flag to be set. */
1841 set_waiting_for_input (0);
1842 SYS$
WFLOR (input_ef
, input_eflist
);
1843 clear_waiting_for_input (0);
1844 if (!detect_input_pending ())
1845 /* Check for subprocess input availability */
1847 int dsp
= have_process_input
|| process_exited
;
1849 SYS$
CLREF (process_ef
);
1850 if (have_process_input
)
1851 process_command_input ();
1856 update_mode_lines
++;
1857 prepare_menu_bars ();
1858 redisplay_preserve_echo_area ();
1862 waiting_for_ast
= 0;
1865 /* Get rid of any pending QIO, when we are about to suspend
1866 or when we want to throw away pending input.
1867 We wait for a positive sign that the AST routine has run
1868 and therefore there is no I/O request queued when we return.
1869 SYS$SETAST is used to avoid a timing error. */
1874 printf ("At end_kbd_input.\n");
1878 if (LIB$
AST_IN_PROG ()) /* Don't wait if suspending from kbd_buffer_store_event! */
1880 SYS$
CANCEL (input_fd
);
1885 /* Clear a flag, and tell ast routine above to set it. */
1886 SYS$
CLREF (input_ef
);
1887 waiting_for_ast
= 1;
1889 SYS$
CANCEL (input_fd
);
1891 SYS$
WAITFR (input_ef
);
1892 waiting_for_ast
= 0;
1895 /* Wait for either input available or time interval expiry. */
1897 input_wait_timeout (timeval
)
1898 int timeval
; /* Time to wait, in seconds */
1901 static int zero
= 0;
1902 static int large
= -10000000;
1904 LIB$
EMUL (&timeval
, &large
, &zero
, time
); /* Convert to VMS format */
1906 /* If already something, avoid doing system calls. */
1907 if (detect_input_pending ())
1911 /* Clear a flag, and tell ast routine above to set it. */
1912 SYS$
CLREF (input_ef
);
1913 waiting_for_ast
= 1;
1914 /* Check for timing error: ast happened while we were doing that. */
1915 if (!detect_input_pending ())
1917 /* No timing error: wait for flag to be set. */
1919 if (SYS$
SETIMR (timer_ef
, time
, 0, 1) & 1) /* Set timer */
1920 SYS$
WFLOR (timer_ef
, timer_eflist
); /* Wait for timer expiry or input */
1922 waiting_for_ast
= 0;
1925 /* The standard `sleep' routine works some other way
1926 and it stops working if you have ever quit out of it.
1927 This one continues to work. */
1933 static int zero
= 0;
1934 static int large
= -10000000;
1936 LIB$
EMUL (&timeval
, &large
, &zero
, time
); /* Convert to VMS format */
1939 if (SYS$
SETIMR (timer_ef
, time
, 0, 1) & 1) /* Set timer */
1940 SYS$
WAITFR (timer_ef
); /* Wait for timer expiry only */
1956 croak ("request sigio");
1961 croak ("unrequest sigio");
1966 /* Note that VMS compiler won't accept defined (CANNOT_DUMP). */
1971 #ifndef SYSTEM_MALLOC
1978 /* Some systems that cannot dump also cannot implement these. */
1981 * Return the address of the start of the text segment prior to
1982 * doing an unexec. After unexec the return value is undefined.
1983 * See crt0.c for further explanation and _start.
1987 #ifndef HAVE_TEXT_START
1992 return ((char *) TEXT_START
);
1996 return ((char *) csrt
);
1997 #else /* not GOULD */
1998 extern int _start ();
1999 return ((char *) _start
);
2001 #endif /* TEXT_START */
2003 #endif /* not HAVE_TEXT_START */
2006 * Return the address of the start of the data segment prior to
2007 * doing an unexec. After unexec the return value is undefined.
2008 * See crt0.c for further information and definition of data_start.
2010 * Apparently, on BSD systems this is etext at startup. On
2011 * USG systems (swapping) this is highly mmu dependent and
2012 * is also dependent on whether or not the program is running
2013 * with shared text. Generally there is a (possibly large)
2014 * gap between end of text and start of data with shared text.
2016 * On Uniplus+ systems with shared text, data starts at a
2017 * fixed address. Each port (from a given oem) is generally
2018 * different, and the specific value of the start of data can
2019 * be obtained via the UniPlus+ specific "uvar" system call,
2020 * however the method outlined in crt0.c seems to be more portable.
2022 * Probably what will have to happen when a USG unexec is available,
2023 * at least on UniPlus, is temacs will have to be made unshared so
2024 * that text and data are contiguous. Then once loadup is complete,
2025 * unexec will produce a shared executable where the data can be
2026 * at the normal shared text boundry and the startofdata variable
2027 * will be patched by unexec to the correct value.
2035 return ((char *) DATA_START
);
2037 #ifdef ORDINARY_LINK
2039 * This is a hack. Since we're not linking crt0.c or pre_crt0.c,
2040 * data_start isn't defined. We take the address of environ, which
2041 * is known to live at or near the start of the system crt0.c, and
2042 * we don't sweat the handful of bytes that might lose.
2044 extern char **environ
;
2046 return((char *) &environ
);
2048 extern int data_start
;
2049 return ((char *) &data_start
);
2050 #endif /* ORDINARY_LINK */
2051 #endif /* DATA_START */
2053 #endif /* NEED_STARTS (not CANNOT_DUMP or not SYSTEM_MALLOC) */
2056 /* Some systems that cannot dump also cannot implement these. */
2059 * Return the address of the end of the text segment prior to
2060 * doing an unexec. After unexec the return value is undefined.
2067 return ((char *) TEXT_END
);
2070 return ((char *) &etext
);
2075 * Return the address of the end of the data segment prior to
2076 * doing an unexec. After unexec the return value is undefined.
2083 return ((char *) DATA_END
);
2086 return ((char *) &edata
);
2090 #endif /* not CANNOT_DUMP */
2092 /* init_system_name sets up the string for the Lisp function
2093 system-name to return. */
2099 extern Lisp_Object Vsystem_name
;
2104 #include <sys/socket.h>
2106 #endif /* HAVE_SOCKETS */
2107 #endif /* not VMS */
2108 #endif /* not BSD4_1 */
2114 Vsystem_name
= build_string (sysname
);
2118 if ((sp
= egetenv ("SYS$NODE")) == 0)
2119 Vsystem_name
= build_string ("vax-vms");
2120 else if ((end
= index (sp
, ':')) == 0)
2121 Vsystem_name
= build_string (sp
);
2123 Vsystem_name
= make_string (sp
, end
- sp
);
2125 #ifndef HAVE_GETHOSTNAME
2128 Vsystem_name
= build_string (uts
.nodename
);
2129 #else /* HAVE_GETHOSTNAME */
2130 unsigned int hostname_size
= 256;
2131 char *hostname
= (char *) alloca (hostname_size
);
2133 /* Try to get the host name; if the buffer is too short, try
2134 again. Apparently, the only indication gethostname gives of
2135 whether the buffer was large enough is the presence or absence
2136 of a '\0' in the string. Eech. */
2139 gethostname (hostname
, hostname_size
- 1);
2140 hostname
[hostname_size
- 1] = '\0';
2142 /* Was the buffer large enough for the '\0'? */
2143 if (strlen (hostname
) < hostname_size
- 1)
2146 hostname_size
<<= 1;
2147 hostname
= (char *) alloca (hostname_size
);
2150 /* Turn the hostname into the official, fully-qualified hostname.
2151 Don't do this if we're going to dump; this can confuse system
2152 libraries on some machines and make the dumped emacs core dump. */
2155 #endif /* not CANNOT_DUMP */
2159 for (count
= 0; count
< 10; count
++)
2164 hp
= gethostbyname (hostname
);
2166 if (! (hp
== 0 && h_errno
== TRY_AGAIN
))
2169 Fsleep_for (make_number (1), Qnil
);
2173 char *fqdn
= (char *) hp
->h_name
;
2176 if (!index (fqdn
, '.'))
2178 /* We still don't have a fully qualified domain name.
2179 Try to find one in the list of alternate names */
2180 char **alias
= hp
->h_aliases
;
2181 while (*alias
&& !index (*alias
, '.'))
2188 /* Convert the host name to lower case. */
2189 /* Using ctype.h here would introduce a possible locale
2190 dependence that is probably wrong for hostnames. */
2194 if (*p
>= 'A' && *p
<= 'Z')
2201 #endif /* HAVE_SOCKETS */
2202 Vsystem_name
= build_string (hostname
);
2203 #endif /* HAVE_GETHOSTNAME */
2208 for (p
= XSTRING (Vsystem_name
)->data
; *p
; p
++)
2209 if (*p
== ' ' || *p
== '\t')
2215 #if !defined (HAVE_SELECT) || defined (BROKEN_SELECT_NON_X)
2217 #include "sysselect.h"
2220 #if defined (HAVE_X_WINDOWS) && !defined (HAVE_SELECT)
2221 /* Cause explanatory error message at compile time,
2222 since the select emulation is not good enough for X. */
2223 int *x
= &x_windows_lose_if_no_select_system_call
;
2226 /* Emulate as much as select as is possible under 4.1 and needed by Gnu Emacs
2227 * Only checks read descriptors.
2229 /* How long to wait between checking fds in select */
2230 #define SELECT_PAUSE 1
2233 /* For longjmp'ing back to read_input_waiting. */
2235 jmp_buf read_alarm_throw
;
2237 /* Nonzero if the alarm signal should throw back to read_input_waiting.
2238 The read_socket_hook function sets this to 1 while it is waiting. */
2240 int read_alarm_should_throw
;
2248 #else /* not BSD4_1 */
2249 signal (SIGALRM
, SIG_IGN
);
2250 #endif /* not BSD4_1 */
2251 if (read_alarm_should_throw
)
2252 longjmp (read_alarm_throw
, 1);
2256 /* Only rfds are checked. */
2258 sys_select (nfds
, rfds
, wfds
, efds
, timeout
)
2260 SELECT_TYPE
*rfds
, *wfds
, *efds
;
2261 EMACS_TIME
*timeout
;
2263 int ravail
= 0, old_alarm
;
2267 extern int proc_buffered_char
[];
2268 #ifndef subprocesses
2269 int process_tick
= 0, update_tick
= 0;
2271 extern int process_tick
, update_tick
;
2273 SIGTYPE (*old_trap
) ();
2276 #if defined (HAVE_SELECT) && defined (HAVE_X_WINDOWS)
2277 /* If we're using X, then the native select will work; we only need the
2278 emulation for non-X usage. */
2279 if (!NILP (Vwindow_system
))
2280 return select (nfds
, rfds
, wfds
, efds
, timeout
);
2282 timeoutval
= timeout
? EMACS_SECS (*timeout
) : 100000;
2283 local_timeout
= &timeoutval
;
2295 /* If we are looking only for the terminal, with no timeout,
2296 just read it and wait -- that's more efficient. */
2297 if (*local_timeout
== 100000 && process_tick
== update_tick
2298 && FD_ISSET (0, &orfds
))
2301 for (fd
= 1; fd
< nfds
; ++fd
)
2302 if (FD_ISSET (fd
, &orfds
))
2304 if (! detect_input_pending ())
2305 read_input_waiting ();
2311 /* Once a second, till the timer expires, check all the flagged read
2312 * descriptors to see if any input is available. If there is some then
2313 * set the corresponding bit in the return copy of rfds.
2317 register int to_check
, fd
;
2321 for (to_check
= nfds
, fd
= 0; --to_check
>= 0; fd
++)
2323 if (FD_ISSET (fd
, &orfds
))
2325 int avail
= 0, status
= 0;
2328 avail
= detect_input_pending (); /* Special keyboard handler */
2332 status
= ioctl (fd
, FIONREAD
, &avail
);
2333 #else /* no FIONREAD */
2335 abort (); /* I don't think we need it. */
2336 #else /* not MSDOS */
2337 /* Hoping it will return -1 if nothing available
2338 or 0 if all 0 chars requested are read. */
2339 if (proc_buffered_char
[fd
] >= 0)
2343 avail
= read (fd
, &buf
, 1);
2345 proc_buffered_char
[fd
] = buf
;
2347 #endif /* not MSDOS */
2348 #endif /* no FIONREAD */
2350 if (status
>= 0 && avail
> 0)
2358 if (*local_timeout
== 0 || ravail
!= 0 || process_tick
!= update_tick
)
2360 old_alarm
= alarm (0);
2361 old_trap
= signal (SIGALRM
, select_alarm
);
2363 alarm (SELECT_PAUSE
);
2364 /* Wait for a SIGALRM (or maybe a SIGTINT) */
2365 while (select_alarmed
== 0 && *local_timeout
!= 0
2366 && process_tick
== update_tick
)
2369 sleep_or_kbd_hit (SELECT_PAUSE
, FD_ISSET (0, &orfds
) != 0);
2371 #else /* not MSDOS */
2372 /* If we are interested in terminal input,
2373 wait by reading the terminal.
2374 That makes instant wakeup for terminal input at least. */
2375 if (FD_ISSET (0, &orfds
))
2377 read_input_waiting ();
2378 if (detect_input_pending ())
2383 #endif /* not MSDOS */
2385 (*local_timeout
) -= SELECT_PAUSE
;
2386 /* Reset the old alarm if there was one */
2388 signal (SIGALRM
, old_trap
);
2391 /* Reset or forge an interrupt for the original handler. */
2392 old_alarm
-= SELECT_PAUSE
;
2394 kill (getpid (), SIGALRM
); /* Fake an alarm with the orig' handler */
2398 if (*local_timeout
== 0) /* Stop on timer being cleared */
2403 #endif /* not WINDOWSNT */
2405 /* Read keyboard input into the standard buffer,
2406 waiting for at least one character. */
2408 /* Make all keyboard buffers much bigger when using X windows. */
2409 #ifdef HAVE_X_WINDOWS
2410 #define BUFFER_SIZE_FACTOR 16
2412 #define BUFFER_SIZE_FACTOR 1
2415 read_input_waiting ()
2417 struct input_event e
;
2419 extern int quit_char
;
2421 if (read_socket_hook
)
2423 struct input_event buf
[256];
2425 read_alarm_should_throw
= 0;
2426 if (! setjmp (read_alarm_throw
))
2427 nread
= (*read_socket_hook
) (0, buf
, 256, 1, 0);
2431 /* Scan the chars for C-g and store them in kbd_buffer. */
2432 for (i
= 0; i
< nread
; i
++)
2434 kbd_buffer_store_event (&buf
[i
]);
2435 /* Don't look at input that follows a C-g too closely.
2436 This reduces lossage due to autorepeat on C-g. */
2437 if (buf
[i
].kind
== ascii_keystroke
2438 && buf
[i
].code
== quit_char
)
2445 nread
= read (fileno (stdin
), buf
, 1);
2447 /* Scan the chars for C-g and store them in kbd_buffer. */
2448 e
.kind
= ascii_keystroke
;
2449 XSETFRAME (e
.frame_or_window
, selected_frame
);
2451 for (i
= 0; i
< nread
; i
++)
2453 /* Convert chars > 0177 to meta events if desired.
2454 We do this under the same conditions that read_avail_input does. */
2455 if (read_socket_hook
== 0)
2457 /* If the user says she has a meta key, then believe her. */
2458 if (meta_key
== 1 && (buf
[i
] & 0x80))
2459 e
.modifiers
= meta_modifier
;
2464 XSETINT (e
.code
, buf
[i
]);
2465 kbd_buffer_store_event (&e
);
2466 /* Don't look at input that follows a C-g too closely.
2467 This reduces lossage due to autorepeat on C-g. */
2468 if (buf
[i
] == quit_char
)
2474 #endif /* not HAVE_SELECT */
2475 #endif /* not VMS */
2479 * Partially emulate 4.2 open call.
2480 * open is defined as this in 4.1.
2482 * - added by Michael Bloom @ Citicorp/TTI
2487 sys_open (path
, oflag
, mode
)
2491 if (oflag
& O_CREAT
)
2492 return creat (path
, mode
);
2494 return open (path
, oflag
);
2502 lmode
= LINTRUP
| lmode
;
2503 ioctl (fd
, TIOCLSET
, &lmode
);
2510 lmode
= ~LINTRUP
& lmode
;
2511 ioctl (0, TIOCLSET
, &lmode
);
2518 interrupts_deferred
= 0;
2525 interrupts_deferred
= 1;
2528 /* still inside #ifdef BSD4_1 */
2531 int sigheld
; /* Mask of held signals */
2536 sigheld
|= sigbit (signum
);
2543 sigheld
|= sigbit (signum
);
2549 sigheld
&= ~sigbit (signum
);
2553 sigfree () /* Free all held signals */
2556 for (i
= 0; i
< NSIG
; i
++)
2557 if (sigheld
& sigbit (i
))
2564 return 1 << (i
- 1);
2566 #endif /* subprocesses */
2569 /* POSIX signals support - DJB */
2570 /* Anyone with POSIX signals should have ANSI C declarations */
2572 #ifdef POSIX_SIGNALS
2574 sigset_t old_mask
, empty_mask
, full_mask
, temp_mask
;
2575 static struct sigaction new_action
, old_action
;
2579 sigemptyset (&empty_mask
);
2580 sigfillset (&full_mask
);
2584 sys_signal (int signal_number
, signal_handler_t action
)
2587 /* This gets us restartable system calls for efficiency.
2588 The "else" code will works as well. */
2589 return (berk_signal (signal_number
, action
));
2591 sigemptyset (&new_action
.sa_mask
);
2592 new_action
.sa_handler
= action
;
2594 /* Emacs mostly works better with restartable system services. If this
2595 * flag exists, we probably want to turn it on here.
2597 new_action
.sa_flags
= SA_RESTART
;
2599 new_action
.sa_flags
= 0;
2601 sigaction (signal_number
, &new_action
, &old_action
);
2602 return (old_action
.sa_handler
);
2607 /* If we're compiling with GCC, we don't need this function, since it
2608 can be written as a macro. */
2610 sys_sigmask (int sig
)
2613 sigemptyset (&mask
);
2614 sigaddset (&mask
, sig
);
2620 sys_sigpause (sigset_t new_mask
)
2622 /* pause emulating berk sigpause... */
2623 sigsuspend (&new_mask
);
2627 /* I'd like to have these guys return pointers to the mask storage in here,
2628 but there'd be trouble if the code was saving multiple masks. I'll be
2629 safe and pass the structure. It normally won't be more than 2 bytes
2633 sys_sigblock (sigset_t new_mask
)
2636 sigprocmask (SIG_BLOCK
, &new_mask
, &old_mask
);
2641 sys_sigunblock (sigset_t new_mask
)
2644 sigprocmask (SIG_UNBLOCK
, &new_mask
, &old_mask
);
2649 sys_sigsetmask (sigset_t new_mask
)
2652 sigprocmask (SIG_SETMASK
, &new_mask
, &old_mask
);
2656 #endif /* POSIX_SIGNALS */
2664 /* Figure out how many bits the system's random number generator uses.
2665 `random' and `lrand48' are assumed to return 31 usable bits.
2666 BSD `rand' returns a 31 bit value but the low order bits are unusable;
2667 so we'll shift it and treat it like the 15-bit USG `rand'. */
2671 # define RAND_BITS 31
2672 # else /* !HAVE_RANDOM */
2673 # ifdef HAVE_LRAND48
2674 # define RAND_BITS 31
2675 # define random lrand48
2676 # else /* !HAVE_LRAND48 */
2677 # define RAND_BITS 15
2678 # if RAND_MAX == 32767
2679 # define random rand
2680 # else /* RAND_MAX != 32767 */
2681 # if RAND_MAX == 2147483647
2682 # define random() (rand () >> 16)
2683 # else /* RAND_MAX != 2147483647 */
2685 # define random rand
2687 # define random() (rand () >> 16)
2689 # endif /* RAND_MAX != 2147483647 */
2690 # endif /* RAND_MAX != 32767 */
2691 # endif /* !HAVE_LRAND48 */
2692 # endif /* !HAVE_RANDOM */
2693 #endif /* !RAND_BITS */
2700 srandom ((unsigned int)arg
);
2702 # ifdef HAVE_LRAND48
2705 srand ((unsigned int)arg
);
2711 * Build a full Emacs-sized word out of whatever we've got.
2712 * This suffices even for a 64-bit architecture with a 15-bit rand.
2717 long val
= random ();
2718 #if VALBITS > RAND_BITS
2719 val
= (val
<< RAND_BITS
) ^ random ();
2720 #if VALBITS > 2*RAND_BITS
2721 val
= (val
<< RAND_BITS
) ^ random ();
2722 #if VALBITS > 3*RAND_BITS
2723 val
= (val
<< RAND_BITS
) ^ random ();
2724 #if VALBITS > 4*RAND_BITS
2725 val
= (val
<< RAND_BITS
) ^ random ();
2726 #endif /* need at least 5 */
2727 #endif /* need at least 4 */
2728 #endif /* need at least 3 */
2729 #endif /* need at least 2 */
2730 return val
& ((1L << VALBITS
) - 1);
2733 #ifdef WRONG_NAME_INSQUE
2746 /* If any place else asks for the TERM variable,
2747 allow it to be overridden with the EMACS_TERM variable
2748 before attempting to translate the logical name TERM. As a last
2749 resort, ask for VAX C's special idea of the TERM variable. */
2756 static char buf
[256];
2757 static struct dsc$descriptor_s equiv
2758 = {sizeof (buf
), DSC$K_DTYPE_T
, DSC$K_CLASS_S
, buf
};
2759 static struct dsc$descriptor_s d_name
2760 = {0, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, 0};
2763 if (!strcmp (name
, "TERM"))
2765 val
= (char *) getenv ("EMACS_TERM");
2770 d_name
.dsc$w_length
= strlen (name
);
2771 d_name
.dsc$a_pointer
= name
;
2772 if (LIB$
SYS_TRNLOG (&d_name
, &eqlen
, &equiv
) == 1)
2774 char *str
= (char *) xmalloc (eqlen
+ 1);
2775 bcopy (buf
, str
, eqlen
);
2777 /* This is a storage leak, but a pain to fix. With luck,
2778 no one will ever notice. */
2781 return (char *) getenv (name
);
2786 /* Since VMS doesn't believe in core dumps, the only way to debug this beast is
2787 to force a call on the debugger from within the image. */
2792 LIB$
SIGNAL (SS$_DEBUG
);
2798 #ifdef LINK_CRTL_SHARE
2799 #ifdef SHAREABLE_LIB_BUG
2800 /* Variables declared noshare and initialized in sharable libraries
2801 cannot be shared. The VMS linker incorrectly forces you to use a private
2802 version which is uninitialized... If not for this "feature", we
2803 could use the C library definition of sys_nerr and sys_errlist. */
2805 char *sys_errlist
[] =
2809 "no such file or directory",
2811 "interrupted system call",
2813 "no such device or address",
2814 "argument list too long",
2815 "exec format error",
2818 "no more processes",
2819 "not enough memory",
2820 "permission denied",
2822 "block device required",
2823 "mount devices busy",
2825 "cross-device link",
2830 "file table overflow",
2831 "too many open files",
2835 "no space left on device",
2837 "read-only file system",
2843 "vax/vms specific error code nontranslatable error"
2845 #endif /* SHAREABLE_LIB_BUG */
2846 #endif /* LINK_CRTL_SHARE */
2849 #ifndef HAVE_STRERROR
2855 extern char *sys_errlist
[];
2856 extern int sys_nerr
;
2858 if (errnum
>= 0 && errnum
< sys_nerr
)
2859 return sys_errlist
[errnum
];
2860 return (char *) "Unknown error";
2862 #endif /* not WINDOWSNT */
2863 #endif /* ! HAVE_STRERROR */
2865 #ifdef INTERRUPTIBLE_OPEN
2869 sys_open (path
, oflag
, mode
)
2873 register int rtnval
;
2875 while ((rtnval
= open (path
, oflag
, mode
)) == -1
2876 && (errno
== EINTR
));
2880 #endif /* INTERRUPTIBLE_OPEN */
2882 #ifdef INTERRUPTIBLE_CLOSE
2888 register int rtnval
;
2890 while ((rtnval
= close (fd
)) == -1
2891 && (errno
== EINTR
))
2894 /* If close is interrupted SunOS 4.1 may or may not have closed the
2895 file descriptor. If it did the second close will fail with
2896 errno = EBADF. That means we have succeeded. */
2897 if (rtnval
== -1 && did_retry
&& errno
== EBADF
)
2903 #endif /* INTERRUPTIBLE_CLOSE */
2905 #ifdef INTERRUPTIBLE_IO
2908 sys_read (fildes
, buf
, nbyte
)
2913 register int rtnval
;
2915 while ((rtnval
= read (fildes
, buf
, nbyte
)) == -1
2916 && (errno
== EINTR
));
2921 sys_write (fildes
, buf
, nbyte
)
2926 register int rtnval
, bytes_written
;
2932 rtnval
= write (fildes
, buf
, nbyte
);
2939 return (bytes_written
? bytes_written
: -1);
2944 bytes_written
+= rtnval
;
2946 return (bytes_written
);
2949 #endif /* INTERRUPTIBLE_IO */
2954 * Substitute fork for vfork on USG flavors.
2962 #endif /* not WINDOWSNT */
2963 #endif /* not HAVE_VFORK */
2967 * All of the following are for USG.
2969 * On USG systems the system calls are INTERRUPTIBLE by signals
2970 * that the user program has elected to catch. Thus the system call
2971 * must be retried in these cases. To handle this without massive
2972 * changes in the source code, we remap the standard system call names
2973 * to names for our own functions in sysdep.c that do the system call
2974 * with retries. Actually, for portability reasons, it is good
2975 * programming practice, as this example shows, to limit all actual
2976 * system calls to a single occurrence in the source. Sure, this
2977 * adds an extra level of function call overhead but it is almost
2978 * always negligible. Fred Fish, Unisoft Systems Inc.
2981 #ifndef HAVE_SYS_SIGLIST
2982 char *sys_siglist
[NSIG
+ 1] =
2985 /* AIX has changed the signals a bit */
2986 "bogus signal", /* 0 */
2987 "hangup", /* 1 SIGHUP */
2988 "interrupt", /* 2 SIGINT */
2989 "quit", /* 3 SIGQUIT */
2990 "illegal instruction", /* 4 SIGILL */
2991 "trace trap", /* 5 SIGTRAP */
2992 "IOT instruction", /* 6 SIGIOT */
2993 "crash likely", /* 7 SIGDANGER */
2994 "floating point exception", /* 8 SIGFPE */
2995 "kill", /* 9 SIGKILL */
2996 "bus error", /* 10 SIGBUS */
2997 "segmentation violation", /* 11 SIGSEGV */
2998 "bad argument to system call", /* 12 SIGSYS */
2999 "write on a pipe with no one to read it", /* 13 SIGPIPE */
3000 "alarm clock", /* 14 SIGALRM */
3001 "software termination signum", /* 15 SIGTERM */
3002 "user defined signal 1", /* 16 SIGUSR1 */
3003 "user defined signal 2", /* 17 SIGUSR2 */
3004 "death of a child", /* 18 SIGCLD */
3005 "power-fail restart", /* 19 SIGPWR */
3006 "bogus signal", /* 20 */
3007 "bogus signal", /* 21 */
3008 "bogus signal", /* 22 */
3009 "bogus signal", /* 23 */
3010 "bogus signal", /* 24 */
3011 "LAN I/O interrupt", /* 25 SIGAIO */
3012 "PTY I/O interrupt", /* 26 SIGPTY */
3013 "I/O intervention required", /* 27 SIGIOINT */
3015 "HFT grant", /* 28 SIGGRANT */
3016 "HFT retract", /* 29 SIGRETRACT */
3017 "HFT sound done", /* 30 SIGSOUND */
3018 "HFT input ready", /* 31 SIGMSG */
3021 "bogus signal", /* 0 */
3022 "hangup", /* 1 SIGHUP */
3023 "interrupt", /* 2 SIGINT */
3024 "quit", /* 3 SIGQUIT */
3025 "illegal instruction", /* 4 SIGILL */
3026 "trace trap", /* 5 SIGTRAP */
3027 "IOT instruction", /* 6 SIGIOT */
3028 "EMT instruction", /* 7 SIGEMT */
3029 "floating point exception", /* 8 SIGFPE */
3030 "kill", /* 9 SIGKILL */
3031 "bus error", /* 10 SIGBUS */
3032 "segmentation violation", /* 11 SIGSEGV */
3033 "bad argument to system call", /* 12 SIGSYS */
3034 "write on a pipe with no one to read it", /* 13 SIGPIPE */
3035 "alarm clock", /* 14 SIGALRM */
3036 "software termination signum", /* 15 SIGTERM */
3037 "user defined signal 1", /* 16 SIGUSR1 */
3038 "user defined signal 2", /* 17 SIGUSR2 */
3039 "death of a child", /* 18 SIGCLD */
3040 "power-fail restart", /* 19 SIGPWR */
3042 "window size change", /* 20 SIGWINCH */
3043 "urgent socket condition", /* 21 SIGURG */
3044 "pollable event occured", /* 22 SIGPOLL */
3045 "stop (cannot be caught or ignored)", /* 23 SIGSTOP */
3046 "user stop requested from tty", /* 24 SIGTSTP */
3047 "stopped process has been continued", /* 25 SIGCONT */
3048 "background tty read attempted", /* 26 SIGTTIN */
3049 "background tty write attempted", /* 27 SIGTTOU */
3050 "virtual timer expired", /* 28 SIGVTALRM */
3051 "profiling timer expired", /* 29 SIGPROF */
3052 "exceeded cpu limit", /* 30 SIGXCPU */
3053 "exceeded file size limit", /* 31 SIGXFSZ */
3054 "process's lwps are blocked", /* 32 SIGWAITING */
3055 "special signal used by thread library", /* 33 SIGLWP */
3057 "Special Signal Used By CPR", /* 34 SIGFREEZE */
3060 "Special Signal Used By CPR", /* 35 SIGTHAW */
3063 #endif /* not AIX */
3066 #endif /* HAVE_SYS_SIGLIST */
3069 * Warning, this function may not duplicate 4.2 action properly
3070 * under error conditions.
3074 /* In 4.1, param.h fails to define this. */
3075 #define MAXPATHLEN 1024
3084 char *npath
, *spath
;
3085 extern char *getcwd ();
3087 BLOCK_INPUT
; /* getcwd uses malloc */
3088 spath
= npath
= getcwd ((char *) 0, MAXPATHLEN
);
3091 /* On Altos 3068, getcwd can return @hostname/dir, so discard
3092 up to first slash. Should be harmless on other systems. */
3093 while (*npath
&& *npath
!= '/')
3095 strcpy (pathname
, npath
);
3096 free (spath
); /* getcwd uses malloc */
3101 #endif /* HAVE_GETWD */
3104 * Emulate rename using unlink/link. Note that this is
3105 * only partially correct. Also, doesn't enforce restriction
3106 * that files be of same type (regular->regular, dir->dir, etc).
3115 if (access (from
, 0) == 0)
3118 if (link (from
, to
) == 0)
3119 if (unlink (from
) == 0)
3131 /* HPUX curses library references perror, but as far as we know
3132 it won't be called. Anyway this definition will do for now. */
3138 #endif /* not HAVE_PERROR */
3144 * Emulate BSD dup2. First close newd if it already exists.
3145 * Then, attempt to dup oldd. If not successful, call dup2 recursively
3146 * until we are, then close the unsuccessful ones.
3153 register int fd
, ret
;
3158 fd
= fcntl (oldd
, F_DUPFD
, newd
);
3160 error ("can't dup2 (%i,%i) : %s", oldd
, newd
, strerror (errno
));
3167 ret
= dup2 (old
,new);
3173 #endif /* not HAVE_DUP2 */
3176 * Gettimeofday. Simulate as much as possible. Only accurate
3177 * to nearest second. Emacs doesn't use tzp so ignore it for now.
3178 * Only needed when subprocesses are defined.
3183 #ifndef HAVE_GETTIMEOFDAY
3187 gettimeofday (tp
, tzp
)
3189 struct timezone
*tzp
;
3191 extern long time ();
3193 tp
->tv_sec
= time ((long *)0);
3196 tzp
->tz_minuteswest
= -1;
3202 #endif /* subprocess && !HAVE_GETTIMEOFDAY && HAVE_TIMEVAL && !VMS */
3205 * This function will go away as soon as all the stubs fixed. (fnf)
3211 printf ("%s not yet implemented\r\n", badfunc
);
3220 char *sys_siglist
[NSIG
+ 1] =
3222 "null signal", /* 0 SIGNULL */
3223 "hangup", /* 1 SIGHUP */
3224 "interrupt", /* 2 SIGINT */
3225 "quit", /* 3 SIGQUIT */
3226 "illegal instruction", /* 4 SIGILL */
3227 "trace trap", /* 5 SIGTRAP */
3228 "abort termination", /* 6 SIGABRT */
3229 "SIGEMT", /* 7 SIGEMT */
3230 "floating point exception", /* 8 SIGFPE */
3231 "kill", /* 9 SIGKILL */
3232 "bus error", /* 10 SIGBUS */
3233 "segmentation violation", /* 11 SIGSEGV */
3234 "bad argument to system call", /* 12 SIGSYS */
3235 "write on a pipe with no reader", /* 13 SIGPIPE */
3236 "alarm clock", /* 14 SIGALRM */
3237 "software termination signal", /* 15 SIGTERM */
3238 "user defined signal 1", /* 16 SIGUSR1 */
3239 "user defined signal 2", /* 17 SIGUSR2 */
3240 "child stopped or terminated", /* 18 SIGCLD */
3241 "power-fail restart", /* 19 SIGPWR */
3242 "window size changed", /* 20 SIGWINCH */
3243 "undefined", /* 21 */
3244 "pollable event occurred", /* 22 SIGPOLL */
3245 "sendable stop signal not from tty", /* 23 SIGSTOP */
3246 "stop signal from tty", /* 24 SIGSTP */
3247 "continue a stopped process", /* 25 SIGCONT */
3248 "attempted background tty read", /* 26 SIGTTIN */
3249 "attempted background tty write", /* 27 SIGTTOU */
3250 "undefined", /* 28 */
3251 "undefined", /* 29 */
3252 "undefined", /* 30 */
3253 "undefined", /* 31 */
3254 "undefined", /* 32 */
3255 "socket (TCP/IP) urgent data arrival", /* 33 SIGURG */
3256 "I/O is possible", /* 34 SIGIO */
3257 "exceeded cpu time limit", /* 35 SIGXCPU */
3258 "exceeded file size limit", /* 36 SIGXFSZ */
3259 "virtual time alarm", /* 37 SIGVTALRM */
3260 "profiling time alarm", /* 38 SIGPROF */
3261 "undefined", /* 39 */
3262 "file record locks revoked", /* 40 SIGLOST */
3263 "undefined", /* 41 */
3264 "undefined", /* 42 */
3265 "undefined", /* 43 */
3266 "undefined", /* 44 */
3267 "undefined", /* 45 */
3268 "undefined", /* 46 */
3269 "undefined", /* 47 */
3270 "undefined", /* 48 */
3271 "undefined", /* 49 */
3272 "undefined", /* 50 */
3273 "undefined", /* 51 */
3274 "undefined", /* 52 */
3275 "undefined", /* 53 */
3276 "undefined", /* 54 */
3277 "undefined", /* 55 */
3278 "undefined", /* 56 */
3279 "undefined", /* 57 */
3280 "undefined", /* 58 */
3281 "undefined", /* 59 */
3282 "undefined", /* 60 */
3283 "undefined", /* 61 */
3284 "undefined", /* 62 */
3285 "undefined", /* 63 */
3286 "notification message in mess. queue", /* 64 SIGDGNOTIFY */
3292 /* Directory routines for systems that don't have them. */
3294 #ifdef SYSV_SYSTEM_DIR
3298 #if defined(BROKEN_CLOSEDIR) || !defined(HAVE_CLOSEDIR)
3302 register DIR *dirp
; /* stream from opendir */
3306 rtnval
= sys_close (dirp
->dd_fd
);
3308 /* Some systems (like Solaris) allocate the buffer and the DIR all
3309 in one block. Why in the world are we freeing this ourselves
3311 #if ! (defined (sun) && defined (USG5_4))
3312 xfree ((char *) dirp
->dd_buf
); /* directory block defined in <dirent.h> */
3314 xfree ((char *) dirp
);
3318 #endif /* BROKEN_CLOSEDIR or not HAVE_CLOSEDIR */
3319 #endif /* SYSV_SYSTEM_DIR */
3321 #ifdef NONSYSTEM_DIR_LIBRARY
3325 char *filename
; /* name of directory */
3327 register DIR *dirp
; /* -> malloc'ed storage */
3328 register int fd
; /* file descriptor for read */
3329 struct stat sbuf
; /* result of fstat */
3331 fd
= sys_open (filename
, 0);
3336 if (fstat (fd
, &sbuf
) < 0
3337 || (sbuf
.st_mode
& S_IFMT
) != S_IFDIR
3338 || (dirp
= (DIR *) malloc (sizeof (DIR))) == 0)
3342 return 0; /* bad luck today */
3347 dirp
->dd_loc
= dirp
->dd_size
= 0; /* refill needed */
3354 register DIR *dirp
; /* stream from opendir */
3356 sys_close (dirp
->dd_fd
);
3357 xfree ((char *) dirp
);
3365 ino_t od_ino
; /* inode */
3366 char od_name
[DIRSIZ
]; /* filename */
3368 #endif /* not VMS */
3370 struct direct dir_static
; /* simulated directory contents */
3375 register DIR *dirp
; /* stream from opendir */
3378 register struct olddir
*dp
; /* -> directory data */
3380 register struct dir$_name
*dp
; /* -> directory data */
3381 register struct dir$_version
*dv
; /* -> version data */
3386 if (dirp
->dd_loc
>= dirp
->dd_size
)
3387 dirp
->dd_loc
= dirp
->dd_size
= 0;
3389 if (dirp
->dd_size
== 0 /* refill buffer */
3390 && (dirp
->dd_size
= sys_read (dirp
->dd_fd
, dirp
->dd_buf
, DIRBLKSIZ
)) <= 0)
3394 dp
= (struct olddir
*) &dirp
->dd_buf
[dirp
->dd_loc
];
3395 dirp
->dd_loc
+= sizeof (struct olddir
);
3397 if (dp
->od_ino
!= 0) /* not deleted entry */
3399 dir_static
.d_ino
= dp
->od_ino
;
3400 strncpy (dir_static
.d_name
, dp
->od_name
, DIRSIZ
);
3401 dir_static
.d_name
[DIRSIZ
] = '\0';
3402 dir_static
.d_namlen
= strlen (dir_static
.d_name
);
3403 dir_static
.d_reclen
= sizeof (struct direct
)
3405 + dir_static
.d_namlen
- dir_static
.d_namlen
% 4;
3406 return &dir_static
; /* -> simulated structure */
3409 dp
= (struct dir$_name
*) dirp
->dd_buf
;
3410 if (dirp
->dd_loc
== 0)
3411 dirp
->dd_loc
= (dp
->dir$b_namecount
&1) ? dp
->dir$b_namecount
+ 1
3412 : dp
->dir$b_namecount
;
3413 dv
= (struct dir$_version
*)&dp
->dir$t_name
[dirp
->dd_loc
];
3414 dir_static
.d_ino
= dv
->dir$w_fid_num
;
3415 dir_static
.d_namlen
= dp
->dir$b_namecount
;
3416 dir_static
.d_reclen
= sizeof (struct direct
)
3418 + dir_static
.d_namlen
- dir_static
.d_namlen
% 4;
3419 strncpy (dir_static
.d_name
, dp
->dir$t_name
, dp
->dir$b_namecount
);
3420 dir_static
.d_name
[dir_static
.d_namlen
] = '\0';
3421 dirp
->dd_loc
= dirp
->dd_size
; /* only one record at a time */
3428 /* readdirver is just like readdir except it returns all versions of a file
3429 as separate entries. */
3434 register DIR *dirp
; /* stream from opendir */
3436 register struct dir$_name
*dp
; /* -> directory data */
3437 register struct dir$_version
*dv
; /* -> version data */
3439 if (dirp
->dd_loc
>= dirp
->dd_size
- sizeof (struct dir$_name
))
3440 dirp
->dd_loc
= dirp
->dd_size
= 0;
3442 if (dirp
->dd_size
== 0 /* refill buffer */
3443 && (dirp
->dd_size
= sys_read (dirp
->dd_fd
, dirp
->dd_buf
, DIRBLKSIZ
)) <= 0)
3446 dp
= (struct dir$_name
*) dirp
->dd_buf
;
3447 if (dirp
->dd_loc
== 0)
3448 dirp
->dd_loc
= (dp
->dir$b_namecount
& 1) ? dp
->dir$b_namecount
+ 1
3449 : dp
->dir$b_namecount
;
3450 dv
= (struct dir$_version
*) &dp
->dir$t_name
[dirp
->dd_loc
];
3451 strncpy (dir_static
.d_name
, dp
->dir$t_name
, dp
->dir$b_namecount
);
3452 sprintf (&dir_static
.d_name
[dp
->dir$b_namecount
], ";%d", dv
->dir$w_version
);
3453 dir_static
.d_namlen
= strlen (dir_static
.d_name
);
3454 dir_static
.d_ino
= dv
->dir$w_fid_num
;
3455 dir_static
.d_reclen
= sizeof (struct direct
) - MAXNAMLEN
+ 3
3456 + dir_static
.d_namlen
- dir_static
.d_namlen
% 4;
3457 dirp
->dd_loc
= ((char *) (++dv
) - dp
->dir$t_name
);
3463 #endif /* NONSYSTEM_DIR_LIBRARY */
3467 set_file_times (filename
, atime
, mtime
)
3469 EMACS_TIME atime
, mtime
;
3472 struct timeval tv
[2];
3475 return utimes (filename
, tv
);
3476 #else /* not HAVE_UTIMES */
3478 utb
.actime
= EMACS_SECS (atime
);
3479 utb
.modtime
= EMACS_SECS (mtime
);
3480 return utime (filename
, &utb
);
3481 #endif /* not HAVE_UTIMES */
3484 /* mkdir and rmdir functions, for systems which don't have them. */
3488 * Written by Robert Rother, Mariah Corporation, August 1985.
3490 * If you want it, it's yours. All I ask in return is that if you
3491 * figure out how to do this in a Bourne Shell script you send me
3493 * sdcsvax!rmr or rmr@uscd
3495 * Severely hacked over by John Gilmore to make a 4.2BSD compatible
3496 * subroutine. 11Mar86; hoptoad!gnu
3498 * Modified by rmtodd@uokmax 6-28-87 -- when making an already existing dir,
3499 * subroutine didn't return EEXIST. It does now.
3505 #ifdef MKDIR_PROTOTYPE
3509 mkdir (dpath
, dmode
)
3514 int cpid
, status
, fd
;
3515 struct stat statbuf
;
3517 if (stat (dpath
, &statbuf
) == 0)
3519 errno
= EEXIST
; /* Stat worked, so it already exists */
3523 /* If stat fails for a reason other than non-existence, return error */
3524 if (errno
!= ENOENT
)
3527 synch_process_alive
= 1;
3528 switch (cpid
= fork ())
3531 case -1: /* Error in fork */
3532 return (-1); /* Errno is set already */
3534 case 0: /* Child process */
3536 * Cheap hack to set mode of new directory. Since this
3537 * child process is going away anyway, we zap its umask.
3538 * FIXME, this won't suffice to set SUID, SGID, etc. on this
3539 * directory. Does anybody care?
3541 status
= umask (0); /* Get current umask */
3542 status
= umask (status
| (0777 & ~dmode
)); /* Set for mkdir */
3543 fd
= sys_open("/dev/null", 2);
3550 execl ("/bin/mkdir", "mkdir", dpath
, (char *) 0);
3551 _exit (-1); /* Can't exec /bin/mkdir */
3553 default: /* Parent process */
3554 wait_for_termination (cpid
);
3557 if (synch_process_death
!= 0 || synch_process_retcode
!= 0)
3559 errno
= EIO
; /* We don't know why, but */
3560 return -1; /* /bin/mkdir failed */
3565 #endif /* not HAVE_MKDIR */
3572 int cpid
, status
, fd
;
3573 struct stat statbuf
;
3575 if (stat (dpath
, &statbuf
) != 0)
3577 /* Stat just set errno. We don't have to */
3581 synch_process_alive
= 1;
3582 switch (cpid
= fork ())
3585 case -1: /* Error in fork */
3586 return (-1); /* Errno is set already */
3588 case 0: /* Child process */
3589 fd
= sys_open("/dev/null", 2);
3596 execl ("/bin/rmdir", "rmdir", dpath
, (char *) 0);
3597 _exit (-1); /* Can't exec /bin/rmdir */
3599 default: /* Parent process */
3600 wait_for_termination (cpid
);
3603 if (synch_process_death
!= 0 || synch_process_retcode
!= 0)
3605 errno
= EIO
; /* We don't know why, but */
3606 return -1; /* /bin/rmdir failed */
3611 #endif /* !HAVE_RMDIR */
3615 /* Functions for VMS */
3617 #include "vms-pwd.h"
3622 /* Return as a string the VMS error string pertaining to STATUS.
3623 Reuses the same static buffer each time it is called. */
3627 int status
; /* VMS status code */
3631 static char buf
[257];
3633 bufadr
[0] = sizeof buf
- 1;
3634 bufadr
[1] = (int) buf
;
3635 if (! (SYS$
GETMSG (status
, &len
, bufadr
, 0x1, 0) & 1))
3636 return "untranslatable VMS error status";
3644 /* The following is necessary because 'access' emulation by VMS C (2.0) does
3645 * not work correctly. (It also doesn't work well in version 2.3.)
3650 #define DESCRIPTOR(name,string) struct dsc$descriptor_s name = \
3651 { strlen (string), DSC$K_DTYPE_T, DSC$K_CLASS_S, string }
3655 unsigned short s_buflen
;
3656 unsigned short s_code
;
3658 unsigned short *s_retlenadr
;
3662 #define buflen s.s_buflen
3663 #define code s.s_code
3664 #define bufadr s.s_bufadr
3665 #define retlenadr s.s_retlenadr
3667 #define R_OK 4 /* test for read permission */
3668 #define W_OK 2 /* test for write permission */
3669 #define X_OK 1 /* test for execute (search) permission */
3670 #define F_OK 0 /* test for presence of file */
3673 sys_access (path
, mode
)
3677 static char *user
= NULL
;
3680 /* translate possible directory spec into .DIR file name, so brain-dead
3681 * access can treat the directory like a file. */
3682 if (directory_file_name (path
, dir_fn
))
3686 return access (path
, mode
);
3687 if (user
== NULL
&& (user
= (char *) getenv ("USER")) == NULL
)
3693 unsigned short int dummy
;
3695 static int constant
= ACL$C_FILE
;
3696 DESCRIPTOR (path_desc
, path
);
3697 DESCRIPTOR (user_desc
, user
);
3701 if ((mode
& X_OK
) && ((stat
= access (path
, mode
)) < 0 || mode
== X_OK
))
3704 acces
|= CHP$M_READ
;
3706 acces
|= CHP$M_WRITE
;
3707 itemlst
[0].buflen
= sizeof (int);
3708 itemlst
[0].code
= CHP$_FLAGS
;
3709 itemlst
[0].bufadr
= (char *) &flags
;
3710 itemlst
[0].retlenadr
= &dummy
;
3711 itemlst
[1].buflen
= sizeof (int);
3712 itemlst
[1].code
= CHP$_ACCESS
;
3713 itemlst
[1].bufadr
= (char *) &acces
;
3714 itemlst
[1].retlenadr
= &dummy
;
3715 itemlst
[2].end
= CHP$_END
;
3716 stat
= SYS$
CHECK_ACCESS (&constant
, &path_desc
, &user_desc
, itemlst
);
3717 return stat
== SS$_NORMAL
? 0 : -1;
3721 #else /* not VMS4_4 */
3724 #define ACE$M_WRITE 2
3725 #define ACE$C_KEYID 1
3727 static unsigned short memid
, grpid
;
3728 static unsigned int uic
;
3730 /* Called from init_sys_modes, so it happens not very often
3731 but at least each time Emacs is loaded. */
3732 sys_access_reinit ()
3738 sys_access (filename
, type
)
3744 int status
, size
, i
, typecode
, acl_controlled
;
3745 unsigned int *aclptr
, *aclend
, aclbuf
[60];
3746 union prvdef prvmask
;
3748 /* Get UIC and GRP values for protection checking. */
3751 status
= LIB$
GETJPI (&JPI$_UIC
, 0, 0, &uic
, 0, 0);
3754 memid
= uic
& 0xFFFF;
3758 if (type
!= 2) /* not checking write access */
3759 return access (filename
, type
);
3761 /* Check write protection. */
3763 #define CHECKPRIV(bit) (prvmask.bit)
3764 #define WRITEABLE(field) (! ((xab.xab$w_pro >> field) & XAB$M_NOWRITE))
3766 /* Find privilege bits */
3767 status
= SYS$
SETPRV (0, 0, 0, prvmask
);
3769 error ("Unable to find privileges: %s", vmserrstr (status
));
3770 if (CHECKPRIV (PRV$V_BYPASS
))
3771 return 0; /* BYPASS enabled */
3773 fab
.fab$b_fac
= FAB$M_GET
;
3774 fab
.fab$l_fna
= filename
;
3775 fab
.fab$b_fns
= strlen (filename
);
3776 fab
.fab$l_xab
= &xab
;
3777 xab
= cc$rms_xabpro
;
3778 xab
.xab$l_aclbuf
= aclbuf
;
3779 xab
.xab$w_aclsiz
= sizeof (aclbuf
);
3780 status
= SYS$
OPEN (&fab
, 0, 0);
3783 SYS$
CLOSE (&fab
, 0, 0);
3784 /* Check system access */
3785 if (CHECKPRIV (PRV$V_SYSPRV
) && WRITEABLE (XAB$V_SYS
))
3787 /* Check ACL entries, if any */
3789 if (xab
.xab$w_acllen
> 0)
3792 aclend
= &aclbuf
[xab
.xab$w_acllen
/ 4];
3793 while (*aclptr
&& aclptr
< aclend
)
3795 size
= (*aclptr
& 0xff) / 4;
3796 typecode
= (*aclptr
>> 8) & 0xff;
3797 if (typecode
== ACE$C_KEYID
)
3798 for (i
= size
- 1; i
> 1; i
--)
3799 if (aclptr
[i
] == uic
)
3802 if (aclptr
[1] & ACE$M_WRITE
)
3803 return 0; /* Write access through ACL */
3805 aclptr
= &aclptr
[size
];
3807 if (acl_controlled
) /* ACL specified, prohibits write access */
3810 /* No ACL entries specified, check normal protection */
3811 if (WRITEABLE (XAB$V_WLD
)) /* World writeable */
3813 if (WRITEABLE (XAB$V_GRP
) &&
3814 (unsigned short) (xab
.xab$l_uic
>> 16) == grpid
)
3815 return 0; /* Group writeable */
3816 if (WRITEABLE (XAB$V_OWN
) &&
3817 (xab
.xab$l_uic
& 0xFFFF) == memid
)
3818 return 0; /* Owner writeable */
3820 return -1; /* Not writeable */
3822 #endif /* not VMS4_4 */
3825 static char vtbuf
[NAM$C_MAXRSS
+1];
3827 /* translate a vms file spec to a unix path */
3829 sys_translate_vms (vfile
)
3840 /* leading device or logical name is a root directory */
3841 if (p
= strchr (vfile
, ':'))
3850 if (*p
== '[' || *p
== '<')
3852 while (*++vfile
!= *p
+ 2)
3856 if (vfile
[-1] == *p
)
3879 static char utbuf
[NAM$C_MAXRSS
+1];
3881 /* translate a unix path to a VMS file spec */
3883 sys_translate_unix (ufile
)
3906 if (index (&ufile
[1], '/'))
3913 if (index (&ufile
[1], '/'))
3920 if (strncmp (ufile
, "./", 2) == 0)
3927 ufile
++; /* skip the dot */
3928 if (index (&ufile
[1], '/'))
3933 else if (strncmp (ufile
, "../", 3) == 0)
3941 ufile
+= 2; /* skip the dots */
3942 if (index (&ufile
[1], '/'))
3967 extern char *getcwd ();
3969 #define MAXPATHLEN 1024
3971 ptr
= xmalloc (MAXPATHLEN
);
3972 val
= getcwd (ptr
, MAXPATHLEN
);
3978 strcpy (pathname
, ptr
);
3986 long item_code
= JPI$_OWNER
;
3987 unsigned long parent_id
;
3990 if (((status
= LIB$
GETJPI (&item_code
, 0, 0, &parent_id
)) & 1) == 0)
3993 vaxc$errno
= status
;
4003 return (getgid () << 16) | getuid ();
4007 sys_read (fildes
, buf
, nbyte
)
4012 return read (fildes
, buf
, (nbyte
< MAXIOSIZE
? nbyte
: MAXIOSIZE
));
4017 sys_write (fildes
, buf
, nbyte
)
4022 register int nwrote
, rtnval
= 0;
4024 while (nbyte
> MAXIOSIZE
&& (nwrote
= write (fildes
, buf
, MAXIOSIZE
)) > 0) {
4030 return rtnval
? rtnval
: -1;
4031 if ((nwrote
= write (fildes
, buf
, nbyte
)) < 0)
4032 return rtnval
? rtnval
: -1;
4033 return (rtnval
+ nwrote
);
4038 * VAX/VMS VAX C RTL really loses. It insists that records
4039 * end with a newline (carriage return) character, and if they
4040 * don't it adds one (nice of it isn't it!)
4042 * Thus we do this stupidity below.
4046 sys_write (fildes
, buf
, nbytes
)
4049 unsigned int nbytes
;
4056 fstat (fildes
, &st
);
4062 /* Handle fixed-length files with carriage control. */
4063 if (st
.st_fab_rfm
== FAB$C_FIX
4064 && ((st
.st_fab_rat
& (FAB$M_FTN
| FAB$M_CR
)) != 0))
4066 len
= st
.st_fab_mrs
;
4067 retval
= write (fildes
, p
, min (len
, nbytes
));
4070 retval
++; /* This skips the implied carriage control */
4074 e
= p
+ min (MAXIOSIZE
, nbytes
) - 1;
4075 while (*e
!= '\n' && e
> p
) e
--;
4076 if (p
== e
) /* Ok.. so here we add a newline... sigh. */
4077 e
= p
+ min (MAXIOSIZE
, nbytes
) - 1;
4079 retval
= write (fildes
, p
, len
);
4090 /* Create file NEW copying its attributes from file OLD. If
4091 OLD is 0 or does not exist, create based on the value of
4094 /* Protection value the file should ultimately have.
4095 Set by create_copy_attrs, and use by rename_sansversions. */
4096 static unsigned short int fab_final_pro
;
4099 creat_copy_attrs (old
, new)
4102 struct FAB fab
= cc$rms_fab
;
4103 struct XABPRO xabpro
;
4104 char aclbuf
[256]; /* Choice of size is arbitrary. See below. */
4105 extern int vms_stmlf_recfm
;
4109 fab
.fab$b_fac
= FAB$M_GET
;
4110 fab
.fab$l_fna
= old
;
4111 fab
.fab$b_fns
= strlen (old
);
4112 fab
.fab$l_xab
= (char *) &xabpro
;
4113 xabpro
= cc$rms_xabpro
;
4114 xabpro
.xab$l_aclbuf
= aclbuf
;
4115 xabpro
.xab$w_aclsiz
= sizeof aclbuf
;
4116 /* Call $OPEN to fill in the fab & xabpro fields. */
4117 if (SYS$
OPEN (&fab
, 0, 0) & 1)
4119 SYS$
CLOSE (&fab
, 0, 0);
4120 fab
.fab$l_alq
= 0; /* zero the allocation quantity */
4121 if (xabpro
.xab$w_acllen
> 0)
4123 if (xabpro
.xab$w_acllen
> sizeof aclbuf
)
4124 /* If the acl buffer was too short, redo open with longer one.
4125 Wouldn't need to do this if there were some system imposed
4126 limit on the size of an ACL, but I can't find any such. */
4128 xabpro
.xab$l_aclbuf
= (char *) alloca (xabpro
.xab$w_acllen
);
4129 xabpro
.xab$w_aclsiz
= xabpro
.xab$w_acllen
;
4130 if (SYS$
OPEN (&fab
, 0, 0) & 1)
4131 SYS$
CLOSE (&fab
, 0, 0);
4137 xabpro
.xab$l_aclbuf
= 0;
4142 fab
.fab$l_fna
= new;
4143 fab
.fab$b_fns
= strlen (new);
4147 fab
.fab$b_rfm
= vms_stmlf_recfm
? FAB$C_STMLF
: FAB$C_VAR
;
4148 fab
.fab$b_rat
= FAB$M_CR
;
4151 /* Set the file protections such that we will be able to manipulate
4152 this file. Once we are done writing and renaming it, we will set
4153 the protections back. */
4155 fab_final_pro
= xabpro
.xab$w_pro
;
4157 SYS$
SETDFPROT (0, &fab_final_pro
);
4158 xabpro
.xab$w_pro
&= 0xff0f; /* set O:rewd for now. This is set back later. */
4160 /* Create the new file with either default attrs or attrs copied
4162 if (!(SYS$
CREATE (&fab
, 0, 0) & 1))
4164 SYS$
CLOSE (&fab
, 0, 0);
4165 /* As this is a "replacement" for creat, return a file descriptor
4166 opened for writing. */
4167 return open (new, O_WRONLY
);
4172 #include <varargs.h>
4175 #define va_count(X) ((X) = *(((int *) &(va_alist)) - 1))
4179 sys_creat (va_alist
)
4182 va_list list_incrementer
;
4185 int rfd
; /* related file descriptor */
4186 int fd
; /* Our new file descriptor */
4193 extern int vms_stmlf_recfm
;
4196 va_start (list_incrementer
);
4197 name
= va_arg (list_incrementer
, char *);
4198 mode
= va_arg (list_incrementer
, int);
4200 rfd
= va_arg (list_incrementer
, int);
4201 va_end (list_incrementer
);
4204 /* Use information from the related file descriptor to set record
4205 format of the newly created file. */
4206 fstat (rfd
, &st_buf
);
4207 switch (st_buf
.st_fab_rfm
)
4210 strcpy (rfm
, "rfm = fix");
4211 sprintf (mrs
, "mrs = %d", st_buf
.st_fab_mrs
);
4212 strcpy (rat
, "rat = ");
4213 if (st_buf
.st_fab_rat
& FAB$M_CR
)
4215 else if (st_buf
.st_fab_rat
& FAB$M_FTN
)
4216 strcat (rat
, "ftn");
4217 else if (st_buf
.st_fab_rat
& FAB$M_PRN
)
4218 strcat (rat
, "prn");
4219 if (st_buf
.st_fab_rat
& FAB$M_BLK
)
4220 if (st_buf
.st_fab_rat
& (FAB$M_CR
|FAB$M_FTN
|FAB$M_PRN
))
4221 strcat (rat
, ", blk");
4223 strcat (rat
, "blk");
4224 return creat (name
, 0, rfm
, rat
, mrs
);
4227 strcpy (rfm
, "rfm = vfc");
4228 sprintf (fsz
, "fsz = %d", st_buf
.st_fab_fsz
);
4229 strcpy (rat
, "rat = ");
4230 if (st_buf
.st_fab_rat
& FAB$M_CR
)
4232 else if (st_buf
.st_fab_rat
& FAB$M_FTN
)
4233 strcat (rat
, "ftn");
4234 else if (st_buf
.st_fab_rat
& FAB$M_PRN
)
4235 strcat (rat
, "prn");
4236 if (st_buf
.st_fab_rat
& FAB$M_BLK
)
4237 if (st_buf
.st_fab_rat
& (FAB$M_CR
|FAB$M_FTN
|FAB$M_PRN
))
4238 strcat (rat
, ", blk");
4240 strcat (rat
, "blk");
4241 return creat (name
, 0, rfm
, rat
, fsz
);
4244 strcpy (rfm
, "rfm = stm");
4248 strcpy (rfm
, "rfm = stmcr");
4252 strcpy (rfm
, "rfm = stmlf");
4256 strcpy (rfm
, "rfm = udf");
4260 strcpy (rfm
, "rfm = var");
4263 strcpy (rat
, "rat = ");
4264 if (st_buf
.st_fab_rat
& FAB$M_CR
)
4266 else if (st_buf
.st_fab_rat
& FAB$M_FTN
)
4267 strcat (rat
, "ftn");
4268 else if (st_buf
.st_fab_rat
& FAB$M_PRN
)
4269 strcat (rat
, "prn");
4270 if (st_buf
.st_fab_rat
& FAB$M_BLK
)
4271 if (st_buf
.st_fab_rat
& (FAB$M_CR
|FAB$M_FTN
|FAB$M_PRN
))
4272 strcat (rat
, ", blk");
4274 strcat (rat
, "blk");
4278 strcpy (rfm
, vms_stmlf_recfm
? "rfm = stmlf" : "rfm=var");
4279 strcpy (rat
, "rat=cr");
4281 /* Until the VAX C RTL fixes the many bugs with modes, always use
4282 mode 0 to get the user's default protection. */
4283 fd
= creat (name
, 0, rfm
, rat
);
4284 if (fd
< 0 && errno
== EEXIST
)
4286 if (unlink (name
) < 0)
4287 report_file_error ("delete", build_string (name
));
4288 fd
= creat (name
, 0, rfm
, rat
);
4294 /* fwrite to stdout is S L O W. Speed it up by using fputc...*/
4295 sys_fwrite (ptr
, size
, num
, fp
)
4296 register char * ptr
;
4299 register int tot
= num
* size
;
4306 * The VMS C library routine creat actually creates a new version of an
4307 * existing file rather than truncating the old version. There are times
4308 * when this is not the desired behavior, for instance, when writing an
4309 * auto save file (you only want one version), or when you don't have
4310 * write permission in the directory containing the file (but the file
4311 * itself is writable). Hence this routine, which is equivalent to
4312 * "close (creat (fn, 0));" on Unix if fn already exists.
4318 struct FAB xfab
= cc$rms_fab
;
4319 struct RAB xrab
= cc$rms_rab
;
4322 xfab
.fab$l_fop
= FAB$M_TEF
; /* free allocated but unused blocks on close */
4323 xfab
.fab$b_fac
= FAB$M_TRN
| FAB$M_GET
; /* allow truncate and get access */
4324 xfab
.fab$b_shr
= FAB$M_NIL
; /* allow no sharing - file must be locked */
4325 xfab
.fab$l_fna
= fn
;
4326 xfab
.fab$b_fns
= strlen (fn
);
4327 xfab
.fab$l_dna
= ";0"; /* default to latest version of the file */
4329 xrab
.rab$l_fab
= &xfab
;
4331 /* This gibberish opens the file, positions to the first record, and
4332 deletes all records from there until the end of file. */
4333 if ((SYS$
OPEN (&xfab
) & 01) == 01)
4335 if ((SYS$
CONNECT (&xrab
) & 01) == 01 &&
4336 (SYS$
FIND (&xrab
) & 01) == 01 &&
4337 (SYS$
TRUNCATE (&xrab
) & 01) == 01)
4348 /* Define this symbol to actually read SYSUAF.DAT. This requires either
4349 SYSPRV or a readable SYSUAF.DAT. */
4355 * Routine to read the VMS User Authorization File and return
4356 * a specific user's record.
4359 static struct UAF retuaf
;
4362 get_uaf_name (uname
)
4369 uaf_fab
= cc$rms_fab
;
4370 uaf_rab
= cc$rms_rab
;
4371 /* initialize fab fields */
4372 uaf_fab
.fab$l_fna
= "SYS$SYSTEM:SYSUAF.DAT";
4373 uaf_fab
.fab$b_fns
= 21;
4374 uaf_fab
.fab$b_fac
= FAB$M_GET
;
4375 uaf_fab
.fab$b_org
= FAB$C_IDX
;
4376 uaf_fab
.fab$b_shr
= FAB$M_GET
|FAB$M_PUT
|FAB$M_UPD
|FAB$M_DEL
;
4377 /* initialize rab fields */
4378 uaf_rab
.rab$l_fab
= &uaf_fab
;
4379 /* open the User Authorization File */
4380 status
= SYS$
OPEN (&uaf_fab
);
4384 vaxc$errno
= status
;
4387 status
= SYS$
CONNECT (&uaf_rab
);
4391 vaxc$errno
= status
;
4394 /* read the requested record - index is in uname */
4395 uaf_rab
.rab$l_kbf
= uname
;
4396 uaf_rab
.rab$b_ksz
= strlen (uname
);
4397 uaf_rab
.rab$b_rac
= RAB$C_KEY
;
4398 uaf_rab
.rab$l_ubf
= (char *)&retuaf
;
4399 uaf_rab
.rab$w_usz
= sizeof retuaf
;
4400 status
= SYS$
GET (&uaf_rab
);
4404 vaxc$errno
= status
;
4407 /* close the User Authorization File */
4408 status
= SYS$
DISCONNECT (&uaf_rab
);
4412 vaxc$errno
= status
;
4415 status
= SYS$
CLOSE (&uaf_fab
);
4419 vaxc$errno
= status
;
4433 uaf_fab
= cc$rms_fab
;
4434 uaf_rab
= cc$rms_rab
;
4435 /* initialize fab fields */
4436 uaf_fab
.fab$l_fna
= "SYS$SYSTEM:SYSUAF.DAT";
4437 uaf_fab
.fab$b_fns
= 21;
4438 uaf_fab
.fab$b_fac
= FAB$M_GET
;
4439 uaf_fab
.fab$b_org
= FAB$C_IDX
;
4440 uaf_fab
.fab$b_shr
= FAB$M_GET
|FAB$M_PUT
|FAB$M_UPD
|FAB$M_DEL
;
4441 /* initialize rab fields */
4442 uaf_rab
.rab$l_fab
= &uaf_fab
;
4443 /* open the User Authorization File */
4444 status
= SYS$
OPEN (&uaf_fab
);
4448 vaxc$errno
= status
;
4451 status
= SYS$
CONNECT (&uaf_rab
);
4455 vaxc$errno
= status
;
4458 /* read the requested record - index is in uic */
4459 uaf_rab
.rab$b_krf
= 1; /* 1st alternate key */
4460 uaf_rab
.rab$l_kbf
= (char *) &uic
;
4461 uaf_rab
.rab$b_ksz
= sizeof uic
;
4462 uaf_rab
.rab$b_rac
= RAB$C_KEY
;
4463 uaf_rab
.rab$l_ubf
= (char *)&retuaf
;
4464 uaf_rab
.rab$w_usz
= sizeof retuaf
;
4465 status
= SYS$
GET (&uaf_rab
);
4469 vaxc$errno
= status
;
4472 /* close the User Authorization File */
4473 status
= SYS$
DISCONNECT (&uaf_rab
);
4477 vaxc$errno
= status
;
4480 status
= SYS$
CLOSE (&uaf_fab
);
4484 vaxc$errno
= status
;
4490 static struct passwd retpw
;
4498 /* copy these out first because if the username is 32 chars, the next
4499 section will overwrite the first byte of the UIC */
4500 retpw
.pw_uid
= up
->uaf$w_mem
;
4501 retpw
.pw_gid
= up
->uaf$w_grp
;
4503 /* I suppose this is not the best sytle, to possibly overwrite one
4504 byte beyond the end of the field, but what the heck... */
4505 ptr
= &up
->uaf$t_username
[UAF$S_USERNAME
];
4506 while (ptr
[-1] == ' ')
4509 strcpy (retpw
.pw_name
, up
->uaf$t_username
);
4511 /* the rest of these are counted ascii strings */
4512 strncpy (retpw
.pw_gecos
, &up
->uaf$t_owner
[1], up
->uaf$t_owner
[0]);
4513 retpw
.pw_gecos
[up
->uaf$t_owner
[0]] = '\0';
4514 strncpy (retpw
.pw_dir
, &up
->uaf$t_defdev
[1], up
->uaf$t_defdev
[0]);
4515 retpw
.pw_dir
[up
->uaf$t_defdev
[0]] = '\0';
4516 strncat (retpw
.pw_dir
, &up
->uaf$t_defdir
[1], up
->uaf$t_defdir
[0]);
4517 retpw
.pw_dir
[up
->uaf$t_defdev
[0] + up
->uaf$t_defdir
[0]] = '\0';
4518 strncpy (retpw
.pw_shell
, &up
->uaf$t_defcli
[1], up
->uaf$t_defcli
[0]);
4519 retpw
.pw_shell
[up
->uaf$t_defcli
[0]] = '\0';
4523 #else /* not READ_SYSUAF */
4524 static struct passwd retpw
;
4525 #endif /* not READ_SYSUAF */
4536 unsigned char * full
;
4537 #endif /* READ_SYSUAF */
4542 if ('a' <= *ptr
&& *ptr
<= 'z')
4547 if (!(up
= get_uaf_name (name
)))
4549 return cnv_uaf_pw (up
);
4551 if (strcmp (name
, getenv ("USER")) == 0)
4553 retpw
.pw_uid
= getuid ();
4554 retpw
.pw_gid
= getgid ();
4555 strcpy (retpw
.pw_name
, name
);
4556 if (full
= egetenv ("FULLNAME"))
4557 strcpy (retpw
.pw_gecos
, full
);
4559 *retpw
.pw_gecos
= '\0';
4560 strcpy (retpw
.pw_dir
, egetenv ("HOME"));
4561 *retpw
.pw_shell
= '\0';
4566 #endif /* not READ_SYSUAF */
4576 if (!(up
= get_uaf_uic (uid
)))
4578 return cnv_uaf_pw (up
);
4580 if (uid
== sys_getuid ())
4581 return getpwnam (egetenv ("USER"));
4584 #endif /* not READ_SYSUAF */
4587 /* return total address space available to the current process. This is
4588 the sum of the current p0 size, p1 size and free page table entries
4593 unsigned long free_pages
;
4594 unsigned long frep0va
;
4595 unsigned long frep1va
;
4598 item_code
= JPI$_FREPTECNT
;
4599 if (((status
= LIB$
GETJPI (&item_code
, 0, 0, &free_pages
)) & 1) == 0)
4602 vaxc$errno
= status
;
4607 item_code
= JPI$_FREP0VA
;
4608 if (((status
= LIB$
GETJPI (&item_code
, 0, 0, &frep0va
)) & 1) == 0)
4611 vaxc$errno
= status
;
4614 item_code
= JPI$_FREP1VA
;
4615 if (((status
= LIB$
GETJPI (&item_code
, 0, 0, &frep1va
)) & 1) == 0)
4618 vaxc$errno
= status
;
4622 return free_pages
+ frep0va
+ (0x7fffffff - frep1va
);
4625 define_logical_name (varname
, string
)
4629 struct dsc$descriptor_s strdsc
=
4630 {strlen (string
), DSC$K_DTYPE_T
, DSC$K_CLASS_S
, string
};
4631 struct dsc$descriptor_s envdsc
=
4632 {strlen (varname
), DSC$K_DTYPE_T
, DSC$K_CLASS_S
, varname
};
4633 struct dsc$descriptor_s lnmdsc
=
4634 {7, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, "LNM$JOB"};
4636 return LIB$
SET_LOGICAL (&envdsc
, &strdsc
, &lnmdsc
, 0, 0);
4639 delete_logical_name (varname
)
4642 struct dsc$descriptor_s envdsc
=
4643 {strlen (varname
), DSC$K_DTYPE_T
, DSC$K_CLASS_S
, varname
};
4644 struct dsc$descriptor_s lnmdsc
=
4645 {7, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, "LNM$JOB"};
4647 return LIB$
DELETE_LOGICAL (&envdsc
, &lnmdsc
);
4658 error ("execvp system call not implemented");
4666 struct FAB from_fab
= cc$rms_fab
, to_fab
= cc$rms_fab
;
4667 struct NAM from_nam
= cc$rms_nam
, to_nam
= cc$rms_nam
;
4668 char from_esn
[NAM$C_MAXRSS
];
4669 char to_esn
[NAM$C_MAXRSS
];
4671 from_fab
.fab$l_fna
= from
;
4672 from_fab
.fab$b_fns
= strlen (from
);
4673 from_fab
.fab$l_nam
= &from_nam
;
4674 from_fab
.fab$l_fop
= FAB$M_NAM
;
4676 from_nam
.nam$l_esa
= from_esn
;
4677 from_nam
.nam$b_ess
= sizeof from_esn
;
4679 to_fab
.fab$l_fna
= to
;
4680 to_fab
.fab$b_fns
= strlen (to
);
4681 to_fab
.fab$l_nam
= &to_nam
;
4682 to_fab
.fab$l_fop
= FAB$M_NAM
;
4684 to_nam
.nam$l_esa
= to_esn
;
4685 to_nam
.nam$b_ess
= sizeof to_esn
;
4687 status
= SYS$
RENAME (&from_fab
, 0, 0, &to_fab
);
4693 if (status
== RMS$_DEV
)
4697 vaxc$errno
= status
;
4702 /* This function renames a file like `rename', but it strips
4703 the version number from the "to" filename, such that the "to" file is
4704 will always be a new version. It also sets the file protection once it is
4705 finished. The protection that we will use is stored in fab_final_pro,
4706 and was set when we did a creat_copy_attrs to create the file that we
4709 We could use the chmod function, but Eunichs uses 3 bits per user category
4710 to describe the protection, and VMS uses 4 (write and delete are separate
4711 bits). To maintain portability, the VMS implementation of `chmod' wires
4712 the W and D bits together. */
4715 static struct fibdef fib
; /* We need this initialized to zero */
4716 char vms_file_written
[NAM$C_MAXRSS
];
4719 rename_sans_version (from
,to
)
4726 struct FAB to_fab
= cc$rms_fab
;
4727 struct NAM to_nam
= cc$rms_nam
;
4728 struct dsc$descriptor fib_d
={sizeof (fib
),0,0,(char*) &fib
};
4729 struct dsc$descriptor fib_attr
[2]
4730 = {{sizeof (fab_final_pro
),ATR$C_FPRO
,0,(char*) &fab_final_pro
},{0,0,0,0}};
4731 char to_esn
[NAM$C_MAXRSS
];
4733 $
DESCRIPTOR (disk
,to_esn
);
4735 to_fab
.fab$l_fna
= to
;
4736 to_fab
.fab$b_fns
= strlen (to
);
4737 to_fab
.fab$l_nam
= &to_nam
;
4738 to_fab
.fab$l_fop
= FAB$M_NAM
;
4740 to_nam
.nam$l_esa
= to_esn
;
4741 to_nam
.nam$b_ess
= sizeof to_esn
;
4743 status
= SYS$
PARSE (&to_fab
, 0, 0); /* figure out the full file name */
4745 if (to_nam
.nam$l_fnb
&& NAM$M_EXP_VER
)
4746 *(to_nam
.nam$l_ver
) = '\0';
4748 stat
= rename (from
, to_esn
);
4752 strcpy (vms_file_written
, to_esn
);
4754 to_fab
.fab$l_fna
= vms_file_written
; /* this points to the versionless name */
4755 to_fab
.fab$b_fns
= strlen (vms_file_written
);
4757 /* Now set the file protection to the correct value */
4758 SYS$
OPEN (&to_fab
, 0, 0); /* This fills in the nam$w_fid fields */
4760 /* Copy these fields into the fib */
4761 fib
.fib$r_fid_overlay
.fib$w_fid
[0] = to_nam
.nam$w_fid
[0];
4762 fib
.fib$r_fid_overlay
.fib$w_fid
[1] = to_nam
.nam$w_fid
[1];
4763 fib
.fib$r_fid_overlay
.fib$w_fid
[2] = to_nam
.nam$w_fid
[2];
4765 SYS$
CLOSE (&to_fab
, 0, 0);
4767 stat
= SYS$
ASSIGN (&disk
, &chan
, 0, 0); /* open a channel to the disk */
4770 stat
= SYS$
QIOW (0, chan
, IO$_MODIFY
, iosb
, 0, 0, &fib_d
,
4771 0, 0, 0, &fib_attr
, 0);
4774 stat
= SYS$
DASSGN (chan
);
4777 strcpy (vms_file_written
, to_esn
); /* We will write this to the terminal*/
4787 unsigned short fid
[3];
4788 char esa
[NAM$C_MAXRSS
];
4791 fab
.fab$l_fop
= FAB$M_OFP
;
4792 fab
.fab$l_fna
= file
;
4793 fab
.fab$b_fns
= strlen (file
);
4794 fab
.fab$l_nam
= &nam
;
4797 nam
.nam$l_esa
= esa
;
4798 nam
.nam$b_ess
= NAM$C_MAXRSS
;
4800 status
= SYS$
PARSE (&fab
);
4801 if ((status
& 1) == 0)
4804 vaxc$errno
= status
;
4807 status
= SYS$
SEARCH (&fab
);
4808 if ((status
& 1) == 0)
4811 vaxc$errno
= status
;
4815 fid
[0] = nam
.nam$w_fid
[0];
4816 fid
[1] = nam
.nam$w_fid
[1];
4817 fid
[2] = nam
.nam$w_fid
[2];
4819 fab
.fab$l_fna
= new;
4820 fab
.fab$b_fns
= strlen (new);
4822 status
= SYS$
PARSE (&fab
);
4823 if ((status
& 1) == 0)
4826 vaxc$errno
= status
;
4830 nam
.nam$w_fid
[0] = fid
[0];
4831 nam
.nam$w_fid
[1] = fid
[1];
4832 nam
.nam$w_fid
[2] = fid
[2];
4834 nam
.nam$l_esa
= nam
.nam$l_name
;
4835 nam
.nam$b_esl
= nam
.nam$b_name
+ nam
.nam$b_type
+ nam
.nam$b_ver
;
4837 status
= SYS$
ENTER (&fab
);
4838 if ((status
& 1) == 0)
4841 vaxc$errno
= status
;
4851 printf ("%s not yet implemented\r\n", badfunc
);
4859 /* Arrange to return a range centered on zero. */
4860 return rand () - (1 << 30);
4871 /* Called from init_sys_modes. */
4876 /* If we're not on an HFT we shouldn't do any of this. We determine
4877 if we are on an HFT by trying to get an HFT error code. If this
4878 call fails, we're not on an HFT. */
4880 if (ioctl (0, HFQERROR
, &junk
) < 0)
4882 #else /* not IBMR2AIX */
4883 if (ioctl (0, HFQEIO
, 0) < 0)
4885 #endif /* not IBMR2AIX */
4887 /* On AIX the default hft keyboard mapping uses backspace rather than delete
4888 as the rubout key's ASCII code. Here this is changed. The bug is that
4889 there's no way to determine the old mapping, so in reset_sys_modes
4890 we need to assume that the normal map had been present. Of course, this
4891 code also doesn't help if on a terminal emulator which doesn't understand
4895 struct hfkeymap keymap
;
4897 buf
.hf_bufp
= (char *)&keymap
;
4898 buf
.hf_buflen
= sizeof (keymap
);
4899 keymap
.hf_nkeys
= 2;
4900 keymap
.hfkey
[0].hf_kpos
= 15;
4901 keymap
.hfkey
[0].hf_kstate
= HFMAPCHAR
| HFSHFNONE
;
4903 keymap
.hfkey
[0].hf_keyidh
= '<';
4904 #else /* not IBMR2AIX */
4905 keymap
.hfkey
[0].hf_page
= '<';
4906 #endif /* not IBMR2AIX */
4907 keymap
.hfkey
[0].hf_char
= 127;
4908 keymap
.hfkey
[1].hf_kpos
= 15;
4909 keymap
.hfkey
[1].hf_kstate
= HFMAPCHAR
| HFSHFSHFT
;
4911 keymap
.hfkey
[1].hf_keyidh
= '<';
4912 #else /* not IBMR2AIX */
4913 keymap
.hfkey
[1].hf_page
= '<';
4914 #endif /* not IBMR2AIX */
4915 keymap
.hfkey
[1].hf_char
= 127;
4916 hftctl (0, HFSKBD
, &buf
);
4918 /* The HFT system on AIX doesn't optimize for scrolling, so it's really ugly
4920 line_ins_del_ok
= char_ins_del_ok
= 0;
4923 /* Reset the rubout key to backspace. */
4928 struct hfkeymap keymap
;
4932 if (ioctl (0, HFQERROR
, &junk
) < 0)
4934 #else /* not IBMR2AIX */
4935 if (ioctl (0, HFQEIO
, 0) < 0)
4937 #endif /* not IBMR2AIX */
4939 buf
.hf_bufp
= (char *)&keymap
;
4940 buf
.hf_buflen
= sizeof (keymap
);
4941 keymap
.hf_nkeys
= 2;
4942 keymap
.hfkey
[0].hf_kpos
= 15;
4943 keymap
.hfkey
[0].hf_kstate
= HFMAPCHAR
| HFSHFNONE
;
4945 keymap
.hfkey
[0].hf_keyidh
= '<';
4946 #else /* not IBMR2AIX */
4947 keymap
.hfkey
[0].hf_page
= '<';
4948 #endif /* not IBMR2AIX */
4949 keymap
.hfkey
[0].hf_char
= 8;
4950 keymap
.hfkey
[1].hf_kpos
= 15;
4951 keymap
.hfkey
[1].hf_kstate
= HFMAPCHAR
| HFSHFSHFT
;
4953 keymap
.hfkey
[1].hf_keyidh
= '<';
4954 #else /* not IBMR2AIX */
4955 keymap
.hfkey
[1].hf_page
= '<';
4956 #endif /* not IBMR2AIX */
4957 keymap
.hfkey
[1].hf_char
= 8;
4958 hftctl (0, HFSKBD
, &buf
);
4965 /* These are included on Sunos 4.1 when we do not use shared libraries.
4966 X11 libraries may refer to these functions but (we hope) do not
4967 actually call them. */
4987 #endif /* USE_DL_STUBS */
4996 register int length
;
5000 long max_str
= 65535;
5002 while (length
> max_str
) {
5003 (void) LIB$
MOVC5 (&zero
, &zero
, &zero
, &max_str
, b
);
5008 (void) LIB$
MOVC5 (&zero
, &zero
, &zero
, &max_str
, b
);
5010 while (length
-- > 0)
5012 #endif /* not VMS */
5015 #endif /* no bzero */
5016 #endif /* BSTRING */
5018 #if (!defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY)
5021 /* Saying `void' requires a declaration, above, where bcopy is used
5022 and that declaration causes pain for systems where bcopy is a macro. */
5023 bcopy (b1
, b2
, length
)
5026 register int length
;
5029 long max_str
= 65535;
5031 while (length
> max_str
) {
5032 (void) LIB$
MOVC3 (&max_str
, b1
, b2
);
5038 (void) LIB$
MOVC3 (&length
, b1
, b2
);
5040 while (length
-- > 0)
5042 #endif /* not VMS */
5044 #endif /* (defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY) */
5049 bcmp (b1
, b2
, length
) /* This could be a macro! */
5052 register int length
;
5055 struct dsc$descriptor_s src1
= {length
, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, b1
};
5056 struct dsc$descriptor_s src2
= {length
, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, b2
};
5058 return STR$
COMPARE (&src1
, &src2
);
5060 while (length
-- > 0)
5065 #endif /* not VMS */
5067 #endif /* no bcmp */
5068 #endif /* not BSTRING */