1 /* Interfaces to system-dependent kernel and library entries.
2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 1999, 2000, 2001,
3 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
4 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
31 #endif /* HAVE_PWD_H */
34 #endif /* HAVE_LIMITS_H */
40 #endif /* HAVE_ALLOCA_H */
43 /* Including stdlib.h isn't necessarily enough to get srandom
44 declared, e.g. without __USE_XOPEN_EXTENDED with glibc 2. */
46 /* The w32 build defines select stuff in w32.h, which is included by
47 sys/select.h (included below). */
49 #include "sysselect.h"
52 #include "blockinput.h"
56 #define write sys_write
61 #endif /* not WINDOWSNT */
63 /* Does anyone other than VMS need this? */
65 #define sys_fwrite fwrite
70 #include <sys/types.h>
75 #if !defined (USG) || defined (BSD_PGRPS)
77 #define setpgrp setpgid
81 /* Get SI_SRPC_DOMAIN, if it is available. */
82 #ifdef HAVE_SYS_SYSTEMINFO_H
83 #include <sys/systeminfo.h>
86 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
90 #include <sys/param.h>
94 extern unsigned start
__asm__ ("start");
104 #include <sys/file.h>
111 #include <sys/ioctl.h>
118 #include <sys/utsname.h>
122 extern int quit_char
;
124 #include "keyboard.h"
127 #include "termhooks.h"
128 #include "termchar.h"
129 #include "termopts.h"
130 #include "dispextern.h"
132 #include "cm.h" /* for reset_sys_modes */
134 /* For serial_configure and serial_open. */
135 extern Lisp_Object QCport
, QCspeed
, QCprocess
;
136 extern Lisp_Object QCbytesize
, QCstopbits
, QCparity
, Qodd
, Qeven
;
137 extern Lisp_Object QCflowcontrol
, Qhw
, Qsw
, QCsummary
;
141 /* In process.h which conflicts with the local copy. */
143 int _cdecl
_spawnlp (int, const char *, const char *, ...);
144 int _cdecl
_getpid (void);
145 extern char *getwd (char *);
148 #include "syssignal.h"
155 #ifndef HAVE_STRUCT_UTIMBUF
156 /* We want to use utime rather than utimes, but we couldn't find the
157 structure declaration. We'll use the traditional one. */
165 /* LPASS8 is new in 4.3, and makes cbreak mode provide all 8 bits. */
170 static int baud_convert
[] =
172 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
173 1800, 2400, 4800, 9600, 19200, 38400
179 #if defined (HAVE_LIBNCURSES) && ! defined (NCURSES_OSPEED_T)
181 #if defined (HAVE_TERMIOS_H) && defined (GNU_LINUX)
189 void croak
P_ ((char *)) NO_RETURN
;
191 /* Temporary used by `sigblock' when defined in terms of signprocmask. */
193 SIGMASKTYPE sigprocmask_set
;
196 #if !defined (HAVE_GET_CURRENT_DIR_NAME) || defined (BROKEN_GET_CURRENT_DIR_NAME)
198 /* Return the current working directory. Returns NULL on errors.
199 Any other returned value must be freed with free. This is used
200 only when get_current_dir_name is not defined on the system. */
202 get_current_dir_name ()
206 struct stat dotstat
, pwdstat
;
207 /* If PWD is accurate, use it instead of calling getwd. PWD is
208 sometimes a nicer name, and using it may avoid a fatal error if a
209 parent directory is searchable but not readable. */
210 if ((pwd
= getenv ("PWD")) != 0
211 && (IS_DIRECTORY_SEP (*pwd
) || (*pwd
&& IS_DEVICE_SEP (pwd
[1])))
212 && stat (pwd
, &pwdstat
) == 0
213 && stat (".", &dotstat
) == 0
214 && dotstat
.st_ino
== pwdstat
.st_ino
215 && dotstat
.st_dev
== pwdstat
.st_dev
217 && strlen (pwd
) < MAXPATHLEN
221 buf
= (char *) malloc (strlen (pwd
) + 1);
229 size_t buf_size
= 1024;
230 buf
= (char *) malloc (buf_size
);
235 if (getcwd (buf
, buf_size
) == buf
)
239 int tmp_errno
= errno
;
245 buf
= (char *) realloc (buf
, buf_size
);
253 /* We need MAXPATHLEN here. */
254 buf
= (char *) malloc (MAXPATHLEN
+ 1);
257 if (getwd (buf
) == NULL
)
259 int tmp_errno
= errno
;
271 /* Discard pending input on all input descriptors. */
277 struct emacs_tty buf
;
282 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
283 while (dos_keyread () != -1)
285 #else /* not MSDOS */
287 struct tty_display_info
*tty
;
288 for (tty
= tty_list
; tty
; tty
= tty
->next
)
290 if (tty
->input
) /* Is the device suspended? */
292 EMACS_GET_TTY (fileno (tty
->input
), &buf
);
293 EMACS_SET_TTY (fileno (tty
->input
), &buf
, 0);
297 #endif /* not MSDOS */
298 #endif /* not WINDOWSNT */
304 /* Arrange for character C to be read as the next input from
306 XXX What if we have multiple ttys?
312 if (! FRAME_TERMCAP_P (SELECTED_FRAME ()))
315 /* Should perhaps error if in batch mode */
317 ioctl (fileno (CURTTY()->input
), TIOCSTI
, &c
);
318 #else /* no TIOCSTI */
319 error ("Cannot stuff terminal input characters in this version of Unix");
320 #endif /* no TIOCSTI */
326 init_baud_rate (int fd
)
334 #else /* not DOS_NT */
340 emacs_ospeed
= cfgetospeed (&sg
);
341 #else /* not TERMIOS */
349 ioctl (fd
, TCGETA
, &sg
);
351 emacs_ospeed
= sg
.c_cflag
& CBAUD
;
352 #else /* neither TERMIOS nor TERMIO */
355 sg
.sg_ospeed
= B9600
;
356 if (ioctl (fd
, TIOCGETP
, &sg
) < 0)
358 emacs_ospeed
= sg
.sg_ospeed
;
359 #endif /* not HAVE_TERMIO */
360 #endif /* not HAVE_TERMIOS */
361 #endif /* not DOS_NT */
364 baud_rate
= (emacs_ospeed
< sizeof baud_convert
/ sizeof baud_convert
[0]
365 ? baud_convert
[emacs_ospeed
] : 9600);
373 set_exclusive_use (fd
)
377 ioctl (fd
, FIOCLEX
, 0);
379 /* Ok to do nothing if this feature does not exist */
384 wait_without_blocking ()
387 wait3 (0, WNOHANG
| WUNTRACED
, 0);
389 croak ("wait_without_blocking");
391 synch_process_alive
= 0;
394 #endif /* not subprocesses */
396 int wait_debugging
; /* Set nonzero to make following function work under dbx
397 (at least for bsd). */
400 wait_for_termination_signal ()
403 /* Wait for subprocess with process id `pid' to terminate and
404 make sure it will get eliminated (not remain forever as a zombie) */
407 wait_for_termination (pid
)
413 #if defined (BSD_SYSTEM) || defined (HPUX)
414 /* Note that kill returns -1 even if the process is just a zombie now.
415 But inevitably a SIGCHLD interrupt should be generated
416 and child_sig will do wait3 and make the process go away. */
417 /* There is some indication that there is a bug involved with
418 termination of subprocesses, perhaps involving a kernel bug too,
419 but no idea what it is. Just as a hunch we signal SIGCHLD to see
420 if that causes the problem to go away or get worse. */
421 sigsetmask (sigmask (SIGCHLD
));
422 if (0 > kill (pid
, 0))
424 sigsetmask (SIGEMPTYMASK
);
425 kill (getpid (), SIGCHLD
);
431 sigpause (SIGEMPTYMASK
);
432 #else /* not BSD_SYSTEM, and not HPUX version >= 6 */
433 #ifdef POSIX_SIGNALS /* would this work for GNU/Linux as well? */
434 sigblock (sigmask (SIGCHLD
));
436 if (kill (pid
, 0) == -1 && errno
== ESRCH
)
438 sigunblock (sigmask (SIGCHLD
));
442 sigsuspend (&empty_mask
);
443 #else /* not POSIX_SIGNALS */
444 #ifdef HAVE_SYSV_SIGPAUSE
446 if (0 > kill (pid
, 0))
452 #else /* not HAVE_SYSV_SIGPAUSE */
456 #else /* not WINDOWSNT */
457 if (0 > kill (pid
, 0))
459 /* Using sleep instead of pause avoids timing error.
460 If the inferior dies just before the sleep,
461 we lose just one second. */
463 #endif /* not WINDOWSNT */
464 #endif /* not HAVE_SYSV_SIGPAUSE */
465 #endif /* not POSIX_SIGNALS */
466 #endif /* not BSD_SYSTEM, and not HPUX version >= 6 */
467 #else /* not subprocesses */
470 #else /* not __DJGPP__ > 1 */
471 if (kill (pid
, 0) < 0)
474 #endif /* not __DJGPP__ > 1*/
475 #endif /* not subprocesses */
482 * flush any pending output
483 * (may flush input as well; it does not matter the way we use it)
487 flush_pending_output (channel
)
491 /* If we try this, we get hit with SIGTTIN, because
492 the child's tty belongs to the child's pgrp. */
495 ioctl (channel
, TCFLSH
, 1);
499 /* 3rd arg should be ignored
500 but some 4.2 kernels actually want the address of an int
501 and nonzero means something different. */
502 ioctl (channel
, TIOCFLUSH
, &zero
);
508 /* Set up the terminal at the other end of a pseudo-terminal that
509 we will be controlling an inferior through.
510 It should not echo or do line-editing, since that is done
511 in Emacs. No padding needed for insertion into an Emacs buffer. */
514 child_setup_tty (out
)
520 EMACS_GET_TTY (out
, &s
);
522 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
523 s
.main
.c_oflag
|= OPOST
; /* Enable output postprocessing */
524 s
.main
.c_oflag
&= ~ONLCR
; /* Disable map of NL to CR-NL on output */
526 /* http://lists.gnu.org/archive/html/emacs-devel/2008-05/msg00406.html
527 Some versions of GNU Hurd do not have FFDLY? */
529 s
.main
.c_oflag
&= ~(NLDLY
|CRDLY
|TABDLY
|BSDLY
|VTDLY
|FFDLY
);
530 /* No output delays */
532 s
.main
.c_oflag
&= ~(NLDLY
|CRDLY
|TABDLY
|BSDLY
|VTDLY
);
533 /* No output delays */
536 s
.main
.c_lflag
&= ~ECHO
; /* Disable echo */
537 s
.main
.c_lflag
|= ISIG
; /* Enable signals */
539 s
.main
.c_iflag
&= ~IUCLC
; /* Disable downcasing on input. */
542 s
.main
.c_iflag
&= ~ISTRIP
; /* don't strip 8th bit on input */
545 s
.main
.c_oflag
&= ~OLCUC
; /* Disable upcasing on output. */
547 s
.main
.c_oflag
&= ~TAB3
; /* Disable tab expansion */
548 s
.main
.c_cflag
= (s
.main
.c_cflag
& ~CSIZE
) | CS8
; /* Don't strip 8th bit */
549 s
.main
.c_lflag
|= ICANON
; /* Enable erase/kill and eof processing */
550 s
.main
.c_cc
[VEOF
] = 04; /* insure that EOF is Control-D */
551 s
.main
.c_cc
[VERASE
] = CDISABLE
; /* disable erase processing */
552 s
.main
.c_cc
[VKILL
] = CDISABLE
; /* disable kill processing */
555 s
.main
.c_cflag
= (s
.main
.c_cflag
& ~CBAUD
) | B9600
; /* baud rate sanity */
558 #ifdef SIGNALS_VIA_CHARACTERS
559 /* the QUIT and INTR character are used in process_send_signal
560 so set them here to something useful. */
561 if (s
.main
.c_cc
[VQUIT
] == CDISABLE
)
562 s
.main
.c_cc
[VQUIT
] = '\\'&037; /* Control-\ */
563 if (s
.main
.c_cc
[VINTR
] == CDISABLE
)
564 s
.main
.c_cc
[VINTR
] = 'C'&037; /* Control-C */
565 #endif /* not SIGNALS_VIA_CHARACTERS */
568 /* AIX enhanced edit loses NULs, so disable it */
571 s
.main
.c_iflag
&= ~ASCEDIT
;
573 /* Also, PTY overloads NUL and BREAK.
574 don't ignore break, but don't signal either, so it looks like NUL. */
575 s
.main
.c_iflag
&= ~IGNBRK
;
576 s
.main
.c_iflag
&= ~BRKINT
;
577 /* rms: Formerly it set s.main.c_cc[VINTR] to 0377 here
578 unconditionally. Then a SIGNALS_VIA_CHARACTERS conditional
579 would force it to 0377. That looks like duplicated code. */
580 #ifndef SIGNALS_VIA_CHARACTERS
581 /* QUIT and INTR work better as signals, so disable character forms */
582 s
.main
.c_cc
[VQUIT
] = CDISABLE
;
583 s
.main
.c_cc
[VINTR
] = CDISABLE
;
584 s
.main
.c_lflag
&= ~ISIG
;
585 #endif /* no TIOCGPGRP or no TIOCGLTC or no TIOCGETC */
586 s
.main
.c_cc
[VEOL
] = CDISABLE
;
587 s
.main
.c_cflag
= (s
.main
.c_cflag
& ~CBAUD
) | B9600
; /* baud rate sanity */
590 #else /* not HAVE_TERMIO */
592 s
.main
.sg_flags
&= ~(ECHO
| CRMOD
| ANYP
| ALLDELAY
| RAW
| LCASE
594 s
.main
.sg_flags
|= LPASS8
;
595 s
.main
.sg_erase
= 0377;
596 s
.main
.sg_kill
= 0377;
597 s
.lmode
= LLITOUT
| s
.lmode
; /* Don't strip 8th bit */
599 #endif /* not HAVE_TERMIO */
601 EMACS_SET_TTY (out
, &s
, 0);
603 #endif /* not DOS_NT */
606 #endif /* subprocesses */
608 /* Record a signal code and the handler for it. */
612 SIGTYPE (*handler
) P_ ((int));
615 static void save_signal_handlers
P_ ((struct save_signal
*));
616 static void restore_signal_handlers
P_ ((struct save_signal
*));
618 /* Suspend the Emacs process; give terminal to its superior. */
623 #if defined (SIGTSTP) && !defined (MSDOS)
626 int pgrp
= EMACS_GETPGRP (0);
627 EMACS_KILLPG (pgrp
, SIGTSTP
);
630 #else /* No SIGTSTP */
631 #ifdef USG_JOBCTRL /* If you don't know what this is don't mess with it */
632 ptrace (0, 0, 0, 0); /* set for ptrace - caught by csh */
633 kill (getpid (), SIGQUIT
);
635 #else /* No SIGTSTP or USG_JOBCTRL */
637 /* On a system where suspending is not implemented,
638 instead fork a subshell and let it talk directly to the terminal
642 #endif /* no USG_JOBCTRL */
643 #endif /* no SIGTSTP */
646 /* Fork a subshell. */
651 #ifdef DOS_NT /* Demacs 1.1.2 91/10/20 Manabu Higashida */
653 char oldwd
[MAXPATHLEN
+1]; /* Fixed length is safe on MSDOS. */
656 struct save_signal saved_handlers
[5];
658 unsigned char *str
= 0;
661 saved_handlers
[0].code
= SIGINT
;
662 saved_handlers
[1].code
= SIGQUIT
;
663 saved_handlers
[2].code
= SIGTERM
;
665 saved_handlers
[3].code
= SIGIO
;
666 saved_handlers
[4].code
= 0;
668 saved_handlers
[3].code
= 0;
671 /* Mentioning current_buffer->buffer would mean including buffer.h,
672 which somehow wedges the hp compiler. So instead... */
674 dir
= intern ("default-directory");
675 if (NILP (Fboundp (dir
)))
677 dir
= Fsymbol_value (dir
);
681 dir
= expand_and_dir_to_file (Funhandled_file_name_directory (dir
), Qnil
);
682 str
= (unsigned char *) alloca (SCHARS (dir
) + 2);
684 bcopy (SDATA (dir
), str
, len
);
685 if (str
[len
- 1] != '/') str
[len
++] = '/';
692 save_signal_handlers (saved_handlers
);
693 synch_process_alive
= 1;
694 #endif /* __DJGPP__ > 1 */
698 error ("Can't spawn subshell");
705 #ifdef DOS_NT /* MW, Aug 1993 */
708 sh
= (char *) egetenv ("SUSPEND"); /* KFS, 1994-12-14 */
711 sh
= (char *) egetenv ("SHELL");
715 /* Use our buffer's default directory for the subshell. */
717 chdir ((char *) str
);
720 close_process_descs (); /* Close Emacs's pipes/ptys */
723 #ifdef SET_EMACS_PRIORITY
725 extern EMACS_INT emacs_priority
;
727 if (emacs_priority
< 0)
728 nice (-emacs_priority
);
732 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
734 char *epwd
= getenv ("PWD");
735 char old_pwd
[MAXPATHLEN
+1+4];
737 /* If PWD is set, pass it with corrected value. */
740 strcpy (old_pwd
, epwd
);
741 if (str
[len
- 1] == '/')
743 setenv ("PWD", str
, 1);
748 putenv (old_pwd
); /* restore previous value */
750 #else /* not MSDOS */
752 /* Waits for process completion */
753 pid
= _spawnlp (_P_WAIT
, sh
, sh
, NULL
);
756 write (1, "Can't execute subshell", 22);
757 #else /* not WINDOWSNT */
758 execlp (sh
, sh
, (char *) 0);
759 write (1, "Can't execute subshell", 22);
761 #endif /* not WINDOWSNT */
762 #endif /* not MSDOS */
765 /* Do this now if we did not do it before. */
766 #if !defined (MSDOS) || __DJGPP__ == 1
767 save_signal_handlers (saved_handlers
);
768 synch_process_alive
= 1;
772 wait_for_termination (pid
);
774 restore_signal_handlers (saved_handlers
);
775 synch_process_alive
= 0;
779 save_signal_handlers (saved_handlers
)
780 struct save_signal
*saved_handlers
;
782 while (saved_handlers
->code
)
784 saved_handlers
->handler
785 = (SIGTYPE (*) P_ ((int))) signal (saved_handlers
->code
, SIG_IGN
);
791 restore_signal_handlers (saved_handlers
)
792 struct save_signal
*saved_handlers
;
794 while (saved_handlers
->code
)
796 signal (saved_handlers
->code
, saved_handlers
->handler
);
802 /* If SIGIO is broken, don't do anything. */
819 unrequest_sigio (void)
826 int old_fcntl_flags
[MAXDESC
];
833 old_fcntl_flags
[fd
] = fcntl (fd
, F_GETFL
, 0) & ~FASYNC
;
834 fcntl (fd
, F_SETFL
, old_fcntl_flags
[fd
] | FASYNC
);
836 interrupts_deferred
= 0;
844 fcntl (fd
, F_SETFL
, old_fcntl_flags
[fd
]);
848 #ifdef FASYNC /* F_SETFL does not imply existence of FASYNC */
849 /* XXX Uhm, FASYNC is not used anymore here. */
850 /* XXX Yeah, but you need it for SIGIO, don't you? */
859 sigunblock (sigmask (SIGWINCH
));
861 sigunblock (sigmask (SIGIO
));
863 interrupts_deferred
= 0;
867 unrequest_sigio (void)
872 #if 0 /* XXX What's wrong with blocking SIGIO under X? */
878 sigblock (sigmask (SIGWINCH
));
880 sigblock (sigmask (SIGIO
));
881 interrupts_deferred
= 1;
884 #else /* no FASYNC */
890 if (noninteractive
|| read_socket_hook
)
893 croak ("request_sigio");
899 if (noninteractive
|| read_socket_hook
)
902 croak ("unrequest_sigio");
910 /* Saving and restoring the process group of Emacs's terminal. */
914 /* The process group of which Emacs was a member when it initially
917 If Emacs was in its own process group (i.e. inherited_pgroup ==
918 getpid ()), then we know we're running under a shell with job
919 control (Emacs would never be run as part of a pipeline).
922 If Emacs was not in its own process group, then we know we're
923 running under a shell (or a caller) that doesn't know how to
924 separate itself from Emacs (like sh). Emacs must be in its own
925 process group in order to receive SIGIO correctly. In this
926 situation, we put ourselves in our own pgroup, forcibly set the
927 tty's pgroup to our pgroup, and make sure to restore and reinstate
928 the tty's pgroup just like any other terminal setting. If
929 inherited_group was not the tty's pgroup, then we'll get a
930 SIGTTmumble when we try to change the tty's pgroup, and a CONT if
931 it goes foreground in the future, which is what should happen.
933 This variable is initialized in emacs.c. */
934 int inherited_pgroup
;
936 /* Split off the foreground process group to Emacs alone. When we are
937 in the foreground, but not started in our own process group,
938 redirect the tty device handle FD to point to our own process
939 group. We need to be in our own process group to receive SIGIO
942 narrow_foreground_group (int fd
)
946 setpgrp (0, inherited_pgroup
);
948 /* XXX inherited_pgroup should not be zero here, but GTK seems to
950 if (! inherited_pgroup
)
951 abort (); /* Should not happen. */
953 if (inherited_pgroup
!= me
)
954 EMACS_SET_TTY_PGRP (fd
, &me
); /* XXX This only works on the controlling tty. */
958 /* Set the tty to our original foreground group. */
960 widen_foreground_group (int fd
)
962 if (inherited_pgroup
!= getpid ())
963 EMACS_SET_TTY_PGRP (fd
, &inherited_pgroup
);
964 setpgrp (0, inherited_pgroup
);
967 #endif /* BSD_PGRPS */
969 /* Getting and setting emacs_tty structures. */
971 /* Set *TC to the parameters associated with the terminal FD.
972 Return zero if all's well, or -1 if we ran into an error we
973 couldn't deal with. */
975 emacs_get_tty (fd
, settings
)
977 struct emacs_tty
*settings
;
979 /* Retrieve the primary parameters - baud rate, character size, etcetera. */
981 /* We have those nifty POSIX tcmumbleattr functions. */
982 bzero (&settings
->main
, sizeof (settings
->main
));
983 if (tcgetattr (fd
, &settings
->main
) < 0)
988 /* The SYSV-style interface? */
989 if (ioctl (fd
, TCGETA
, &settings
->main
) < 0)
994 /* I give up - I hope you have the BSD ioctls. */
995 if (ioctl (fd
, TIOCGETP
, &settings
->main
) < 0)
997 #endif /* not DOS_NT */
1001 /* Suivant - Do we have to get struct ltchars data? */
1003 if (ioctl (fd
, TIOCGLTC
, &settings
->ltchars
) < 0)
1007 /* How about a struct tchars and a wordful of lmode bits? */
1009 if (ioctl (fd
, TIOCGETC
, &settings
->tchars
) < 0
1010 || ioctl (fd
, TIOCLGET
, &settings
->lmode
) < 0)
1014 /* We have survived the tempest. */
1019 /* Set the parameters of the tty on FD according to the contents of
1020 *SETTINGS. If FLUSHP is non-zero, we discard input.
1021 Return 0 if all went well, and -1 if anything failed. */
1024 emacs_set_tty (fd
, settings
, flushp
)
1026 struct emacs_tty
*settings
;
1029 /* Set the primary parameters - baud rate, character size, etcetera. */
1032 /* We have those nifty POSIX tcmumbleattr functions.
1033 William J. Smith <wjs@wiis.wang.com> writes:
1034 "POSIX 1003.1 defines tcsetattr to return success if it was
1035 able to perform any of the requested actions, even if some
1036 of the requested actions could not be performed.
1037 We must read settings back to ensure tty setup properly.
1038 AIX requires this to keep tty from hanging occasionally." */
1039 /* This make sure that we don't loop indefinitely in here. */
1040 for (i
= 0 ; i
< 10 ; i
++)
1041 if (tcsetattr (fd
, flushp
? TCSAFLUSH
: TCSADRAIN
, &settings
->main
) < 0)
1052 bzero (&new, sizeof (new));
1053 /* Get the current settings, and see if they're what we asked for. */
1054 tcgetattr (fd
, &new);
1055 /* We cannot use memcmp on the whole structure here because under
1056 * aix386 the termios structure has some reserved field that may
1059 if ( new.c_iflag
== settings
->main
.c_iflag
1060 && new.c_oflag
== settings
->main
.c_oflag
1061 && new.c_cflag
== settings
->main
.c_cflag
1062 && new.c_lflag
== settings
->main
.c_lflag
1063 && memcmp (new.c_cc
, settings
->main
.c_cc
, NCCS
) == 0)
1071 /* The SYSV-style interface? */
1072 if (ioctl (fd
, flushp
? TCSETAF
: TCSETAW
, &settings
->main
) < 0)
1077 /* I give up - I hope you have the BSD ioctls. */
1078 if (ioctl (fd
, (flushp
) ? TIOCSETP
: TIOCSETN
, &settings
->main
) < 0)
1080 #endif /* not DOS_NT */
1085 /* Suivant - Do we have to get struct ltchars data? */
1087 if (ioctl (fd
, TIOCSLTC
, &settings
->ltchars
) < 0)
1091 /* How about a struct tchars and a wordful of lmode bits? */
1093 if (ioctl (fd
, TIOCSETC
, &settings
->tchars
) < 0
1094 || ioctl (fd
, TIOCLSET
, &settings
->lmode
) < 0)
1098 /* We have survived the tempest. */
1105 int old_fcntl_owner
[MAXDESC
];
1106 #endif /* F_SETOWN */
1108 /* This may also be defined in stdio,
1109 but if so, this does no harm,
1110 and using the same name avoids wasting the other one's space. */
1113 unsigned char _sobuf
[BUFSIZ
+8];
1115 char _sobuf
[BUFSIZ
];
1119 static struct ltchars new_ltchars
= {-1,-1,-1,-1,-1,-1};
1122 static struct tchars new_tchars
= {-1,-1,-1,-1,-1,-1};
1125 /* Initialize the terminal mode on all tty devices that are currently
1129 init_all_sys_modes (void)
1131 struct tty_display_info
*tty
;
1132 for (tty
= tty_list
; tty
; tty
= tty
->next
)
1133 init_sys_modes (tty
);
1136 /* Initialize the terminal mode on the given tty device. */
1139 init_sys_modes (tty_out
)
1140 struct tty_display_info
*tty_out
;
1142 struct emacs_tty tty
;
1144 Vtty_erase_char
= Qnil
;
1149 if (!tty_out
->output
)
1150 return; /* The tty is suspended. */
1154 /* read_socket_hook is not global anymore. I think doing this
1155 unconditionally will not cause any problems. */
1156 if (! read_socket_hook
&& EQ (Vinitial_window_system
, Qnil
))
1158 narrow_foreground_group (fileno (tty_out
->input
));
1161 if (! tty_out
->old_tty
)
1162 tty_out
->old_tty
= (struct emacs_tty
*) xmalloc (sizeof (struct emacs_tty
));
1164 EMACS_GET_TTY (fileno (tty_out
->input
), tty_out
->old_tty
);
1166 tty
= *tty_out
->old_tty
;
1168 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
1169 XSETINT (Vtty_erase_char
, tty
.main
.c_cc
[VERASE
]);
1171 tty
.main
.c_iflag
|= (IGNBRK
); /* Ignore break condition */
1172 tty
.main
.c_iflag
&= ~ICRNL
; /* Disable map of CR to NL on input */
1173 #ifdef INLCR /* I'm just being cautious,
1174 since I can't check how widespread INLCR is--rms. */
1175 tty
.main
.c_iflag
&= ~INLCR
; /* Disable map of NL to CR on input */
1178 tty
.main
.c_iflag
&= ~ISTRIP
; /* don't strip 8th bit on input */
1180 tty
.main
.c_lflag
&= ~ECHO
; /* Disable echo */
1181 tty
.main
.c_lflag
&= ~ICANON
; /* Disable erase/kill processing */
1183 tty
.main
.c_lflag
&= ~IEXTEN
; /* Disable other editing characters. */
1185 tty
.main
.c_lflag
|= ISIG
; /* Enable signals */
1186 if (tty_out
->flow_control
)
1188 tty
.main
.c_iflag
|= IXON
; /* Enable start/stop output control */
1190 tty
.main
.c_iflag
&= ~IXANY
;
1194 tty
.main
.c_iflag
&= ~IXON
; /* Disable start/stop output control */
1195 tty
.main
.c_oflag
&= ~ONLCR
; /* Disable map of NL to CR-NL
1197 tty
.main
.c_oflag
&= ~TAB3
; /* Disable tab expansion */
1199 if (tty_out
->meta_key
)
1201 tty
.main
.c_cflag
|= CS8
; /* allow 8th bit on input */
1202 tty
.main
.c_cflag
&= ~PARENB
;/* Don't check parity */
1205 if (tty_out
->input
== stdin
)
1207 tty
.main
.c_cc
[VINTR
] = quit_char
; /* C-g (usually) gives SIGINT */
1208 /* Set up C-g for both SIGQUIT and SIGINT.
1209 We don't know which we will get, but we handle both alike
1210 so which one it really gives us does not matter. */
1211 tty
.main
.c_cc
[VQUIT
] = quit_char
;
1215 /* We normally don't get interrupt or quit signals from tty
1216 devices other than our controlling terminal; therefore,
1217 we must handle C-g as normal input. Unfortunately, this
1218 means that the interrupt and quit feature must be
1219 disabled on secondary ttys, or we would not even see the
1222 Note that even though emacsclient could have special code
1223 to pass SIGINT to Emacs, we should _not_ enable
1224 interrupt/quit keys for emacsclient frames. This means
1225 that we can't break out of loops in C code from a
1226 secondary tty frame, but we can always decide what
1227 display the C-g came from, which is more important from a
1228 usability point of view. (Consider the case when two
1229 people work together using the same Emacs instance.) */
1230 tty
.main
.c_cc
[VINTR
] = CDISABLE
;
1231 tty
.main
.c_cc
[VQUIT
] = CDISABLE
;
1233 tty
.main
.c_cc
[VMIN
] = 1; /* Input should wait for at least 1 char */
1234 tty
.main
.c_cc
[VTIME
] = 0; /* no matter how long that takes. */
1236 tty
.main
.c_cc
[VSWTCH
] = CDISABLE
; /* Turn off shell layering use
1240 #if defined (__mips__) || defined (HAVE_TCATTR)
1242 tty
.main
.c_cc
[VSUSP
] = CDISABLE
; /* Turn off mips handling of C-z. */
1245 tty
.main
.c_cc
[V_DSUSP
] = CDISABLE
; /* Turn off mips handling of C-y. */
1246 #endif /* V_DSUSP */
1247 #ifdef VDSUSP /* Some systems have VDSUSP, some have V_DSUSP. */
1248 tty
.main
.c_cc
[VDSUSP
] = CDISABLE
;
1251 tty
.main
.c_cc
[VLNEXT
] = CDISABLE
;
1254 tty
.main
.c_cc
[VREPRINT
] = CDISABLE
;
1255 #endif /* VREPRINT */
1257 tty
.main
.c_cc
[VWERASE
] = CDISABLE
;
1258 #endif /* VWERASE */
1260 tty
.main
.c_cc
[VDISCARD
] = CDISABLE
;
1261 #endif /* VDISCARD */
1263 if (tty_out
->flow_control
)
1266 tty
.main
.c_cc
[VSTART
] = '\021';
1269 tty
.main
.c_cc
[VSTOP
] = '\023';
1275 tty
.main
.c_cc
[VSTART
] = CDISABLE
;
1278 tty
.main
.c_cc
[VSTOP
] = CDISABLE
;
1281 #endif /* mips or HAVE_TCATTR */
1285 /* AIX enhanced edit loses NULs, so disable it. */
1286 tty
.main
.c_line
= 0;
1287 tty
.main
.c_iflag
&= ~ASCEDIT
;
1289 tty
.main
.c_cc
[VSTRT
] = CDISABLE
;
1290 tty
.main
.c_cc
[VSTOP
] = CDISABLE
;
1291 tty
.main
.c_cc
[VSUSP
] = CDISABLE
;
1292 tty
.main
.c_cc
[VDSUSP
] = CDISABLE
;
1293 #endif /* IBMR2AIX */
1294 if (tty_out
->flow_control
)
1297 tty
.main
.c_cc
[VSTART
] = '\021';
1300 tty
.main
.c_cc
[VSTOP
] = '\023';
1303 /* Also, PTY overloads NUL and BREAK.
1304 don't ignore break, but don't signal either, so it looks like NUL.
1305 This really serves a purpose only if running in an XTERM window
1306 or via TELNET or the like, but does no harm elsewhere. */
1307 tty
.main
.c_iflag
&= ~IGNBRK
;
1308 tty
.main
.c_iflag
&= ~BRKINT
;
1310 #else /* if not HAVE_TERMIO */
1312 XSETINT (Vtty_erase_char
, tty
.main
.sg_erase
);
1313 tty
.main
.sg_flags
&= ~(ECHO
| CRMOD
| XTABS
);
1315 tty
.main
.sg_flags
|= ANYP
;
1316 tty
.main
.sg_flags
|= interrupt_input
? RAW
: CBREAK
;
1317 #endif /* not DOS_NT */
1318 #endif /* not HAVE_TERMIO */
1320 /* If going to use CBREAK mode, we must request C-g to interrupt
1321 and turn off start and stop chars, etc. If not going to use
1322 CBREAK mode, do this anyway so as to turn off local flow
1323 control for user coming over network on 4.2; in this case,
1324 only t_stopc and t_startc really matter. */
1327 /* Note: if not using CBREAK mode, it makes no difference how we
1329 tty
.tchars
= new_tchars
;
1330 tty
.tchars
.t_intrc
= quit_char
;
1331 if (tty_out
->flow_control
)
1333 tty
.tchars
.t_startc
= '\021';
1334 tty
.tchars
.t_stopc
= '\023';
1337 tty
.lmode
= LDECCTQ
| LLITOUT
| LPASS8
| LNOFLSH
| tty_out
->old_tty
.lmode
;
1339 #endif /* HAVE_TCHARS */
1340 #endif /* not HAVE_TERMIO */
1343 tty
.ltchars
= new_ltchars
;
1344 #endif /* HAVE_LTCHARS */
1345 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
1346 if (!tty_out
->term_initted
)
1347 internal_terminal_init ();
1348 dos_ttraw (tty_out
);
1351 EMACS_SET_TTY (fileno (tty_out
->input
), &tty
, 0);
1353 /* This code added to insure that, if flow-control is not to be used,
1354 we have an unlocked terminal at the start. */
1357 if (!tty_out
->flow_control
) ioctl (fileno (tty_out
->input
), TCXONC
, 1);
1360 if (!tty_out
->flow_control
) ioctl (fileno (tty_out
->input
), TIOCSTART
, 0);
1363 #if defined (HAVE_TERMIOS) || defined (HPUX)
1365 if (!tty_out
->flow_control
) tcflow (fileno (tty_out
->input
), TCOON
);
1370 #ifdef F_GETOWN /* F_SETFL does not imply existence of F_GETOWN */
1371 if (interrupt_input
)
1373 old_fcntl_owner
[fileno (tty_out
->input
)] =
1374 fcntl (fileno (tty_out
->input
), F_GETOWN
, 0);
1375 fcntl (fileno (tty_out
->input
), F_SETOWN
, getpid ());
1376 init_sigio (fileno (tty_out
->input
));
1378 if (gpm_tty
== tty_out
)
1380 /* Arrange for mouse events to give us SIGIO signals. */
1381 fcntl (gpm_fd
, F_SETOWN
, getpid ());
1382 fcntl (gpm_fd
, F_SETFL
, fcntl (gpm_fd
, F_GETFL
, 0) | O_NONBLOCK
);
1383 init_sigio (gpm_fd
);
1385 #endif /* HAVE_GPM */
1387 #endif /* F_GETOWN */
1388 #endif /* F_SETFL */
1391 /* This symbol is defined on recent USG systems.
1392 Someone says without this call USG won't really buffer the file
1393 even with a call to setbuf. */
1394 setvbuf (tty_out
->output
, (char *) _sobuf
, _IOFBF
, sizeof _sobuf
);
1396 setbuf (tty_out
->output
, (char *) _sobuf
);
1399 if (tty_out
->terminal
->set_terminal_modes_hook
)
1400 tty_out
->terminal
->set_terminal_modes_hook (tty_out
->terminal
);
1402 if (!tty_out
->term_initted
)
1404 Lisp_Object tail
, frame
;
1405 FOR_EACH_FRAME (tail
, frame
)
1407 /* XXX This needs to be revised. */
1408 if (FRAME_TERMCAP_P (XFRAME (frame
))
1409 && FRAME_TTY (XFRAME (frame
)) == tty_out
)
1410 init_frame_faces (XFRAME (frame
));
1414 if (tty_out
->term_initted
&& no_redraw_on_reenter
)
1416 /* XXX This seems wrong on multi-tty. */
1417 if (display_completed
)
1418 direct_output_forward_char (0);
1422 Lisp_Object tail
, frame
;
1424 FOR_EACH_FRAME (tail
, frame
)
1426 if ((FRAME_TERMCAP_P (XFRAME (frame
))
1427 || FRAME_MSDOS_P (XFRAME (frame
)))
1428 && FRAME_TTY (XFRAME (frame
)) == tty_out
)
1429 FRAME_GARBAGED_P (XFRAME (frame
)) = 1;
1433 tty_out
->term_initted
= 1;
1436 /* Return nonzero if safe to use tabs in output.
1437 At the time this is called, init_sys_modes has not been done yet. */
1440 tabs_safe_p (int fd
)
1442 struct emacs_tty etty
;
1444 EMACS_GET_TTY (fd
, &etty
);
1445 return EMACS_TTY_TABS_OK (&etty
);
1448 /* Get terminal size from system.
1449 Store number of lines into *HEIGHTP and width into *WIDTHP.
1450 We store 0 if there's no valid information. */
1453 get_tty_size (int fd
, int *widthp
, int *heightp
)
1459 struct winsize size
;
1461 if (ioctl (fd
, TIOCGWINSZ
, &size
) == -1)
1462 *widthp
= *heightp
= 0;
1465 *widthp
= size
.ws_col
;
1466 *heightp
= size
.ws_row
;
1472 /* SunOS - style. */
1473 struct ttysize size
;
1475 if (ioctl (fd
, TIOCGSIZE
, &size
) == -1)
1476 *widthp
= *heightp
= 0;
1479 *widthp
= size
.ts_cols
;
1480 *heightp
= size
.ts_lines
;
1485 *widthp
= ScreenCols ();
1486 *heightp
= ScreenRows ();
1487 #else /* system doesn't know size */
1491 #endif /* not SunOS-style */
1492 #endif /* not BSD-style */
1495 /* Set the logical window size associated with descriptor FD
1496 to HEIGHT and WIDTH. This is used mainly with ptys. */
1499 set_window_size (fd
, height
, width
)
1500 int fd
, height
, width
;
1505 struct winsize size
;
1506 size
.ws_row
= height
;
1507 size
.ws_col
= width
;
1509 if (ioctl (fd
, TIOCSWINSZ
, &size
) == -1)
1510 return 0; /* error */
1517 /* SunOS - style. */
1518 struct ttysize size
;
1519 size
.ts_lines
= height
;
1520 size
.ts_cols
= width
;
1522 if (ioctl (fd
, TIOCGSIZE
, &size
) == -1)
1528 #endif /* not SunOS-style */
1529 #endif /* not BSD-style */
1534 /* Prepare all terminal devices for exiting Emacs. */
1537 reset_all_sys_modes (void)
1539 struct tty_display_info
*tty
;
1540 for (tty
= tty_list
; tty
; tty
= tty
->next
)
1541 reset_sys_modes (tty
);
1544 /* Prepare the terminal for closing it; move the cursor to the
1545 bottom of the frame, turn off interrupt-driven I/O, etc. */
1548 reset_sys_modes (tty_out
)
1549 struct tty_display_info
*tty_out
;
1556 if (!tty_out
->term_initted
)
1559 if (!tty_out
->output
)
1560 return; /* The tty is suspended. */
1562 /* Go to and clear the last line of the terminal. */
1564 cmgoto (tty_out
, FrameRows (tty_out
) - 1, 0);
1566 /* Code adapted from tty_clear_end_of_line. */
1567 if (tty_out
->TS_clr_line
)
1569 emacs_tputs (tty_out
, tty_out
->TS_clr_line
, 1, cmputc
);
1572 { /* have to do it the hard way */
1574 tty_turn_off_insert (tty_out
);
1576 for (i
= curX (tty_out
); i
< FrameCols (tty_out
) - 1; i
++)
1578 fputc (' ', tty_out
->output
);
1582 cmgoto (tty_out
, FrameRows (tty_out
) - 1, 0);
1583 fflush (tty_out
->output
);
1585 if (tty_out
->terminal
->reset_terminal_modes_hook
)
1586 tty_out
->terminal
->reset_terminal_modes_hook (tty_out
->terminal
);
1589 /* Avoid possible loss of output when changing terminal modes. */
1590 fsync (fileno (tty_out
->output
));
1594 #ifdef F_SETOWN /* F_SETFL does not imply existence of F_SETOWN */
1595 if (interrupt_input
)
1597 reset_sigio (fileno (tty_out
->input
));
1598 fcntl (fileno (tty_out
->input
), F_SETOWN
,
1599 old_fcntl_owner
[fileno (tty_out
->input
)]);
1601 #endif /* F_SETOWN */
1603 fcntl (fileno (tty_out
->input
), F_SETFL
,
1604 fcntl (fileno (tty_out
->input
), F_GETFL
, 0) & ~O_NDELAY
);
1606 #endif /* F_SETFL */
1608 if (tty_out
->old_tty
)
1609 while (EMACS_SET_TTY (fileno (tty_out
->input
),
1610 tty_out
->old_tty
, 0) < 0 && errno
== EINTR
)
1613 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
1618 widen_foreground_group (fileno (tty_out
->input
));
1624 /* Set up the proper status flags for use of a pty. */
1630 /* I'm told that TOICREMOTE does not mean control chars
1631 "can't be sent" but rather that they don't have
1632 input-editing or signaling effects.
1633 That should be good, because we have other ways
1634 to do those things in Emacs.
1635 However, telnet mode seems not to work on 4.2.
1636 So TIOCREMOTE is turned off now. */
1638 /* Under hp-ux, if TIOCREMOTE is turned on, some calls
1639 will hang. In particular, the "timeout" feature (which
1640 causes a read to return if there is no data available)
1641 does this. Also it is known that telnet mode will hang
1642 in such a way that Emacs must be stopped (perhaps this
1643 is the same problem).
1645 If TIOCREMOTE is turned off, then there is a bug in
1646 hp-ux which sometimes loses data. Apparently the
1647 code which blocks the master process when the internal
1648 buffer fills up does not work. Other than this,
1649 though, everything else seems to work fine.
1651 Since the latter lossage is more benign, we may as well
1652 lose that way. -- cph */
1654 #if defined(UNIX98_PTYS)
1657 ioctl (fd
, FIONBIO
, &on
);
1662 #endif /* HAVE_PTYS */
1664 #if !defined(CANNOT_DUMP) || !defined(SYSTEM_MALLOC)
1665 /* Some systems that cannot dump also cannot implement these. */
1668 * Return the address of the start of the text segment prior to
1669 * doing an unexec. After unexec the return value is undefined.
1670 * See crt0.c for further explanation and _start.
1674 #if !(defined (__NetBSD__) && defined (__ELF__))
1675 #ifndef HAVE_TEXT_START
1680 return ((char *) TEXT_START
);
1682 extern int _start ();
1683 return ((char *) _start
);
1684 #endif /* TEXT_START */
1686 #endif /* not HAVE_TEXT_START */
1690 * Return the address of the start of the data segment prior to
1691 * doing an unexec. After unexec the return value is undefined.
1692 * See crt0.c for further information and definition of data_start.
1694 * Apparently, on BSD systems this is etext at startup. On
1695 * USG systems (swapping) this is highly mmu dependent and
1696 * is also dependent on whether or not the program is running
1697 * with shared text. Generally there is a (possibly large)
1698 * gap between end of text and start of data with shared text.
1700 * On Uniplus+ systems with shared text, data starts at a
1701 * fixed address. Each port (from a given oem) is generally
1702 * different, and the specific value of the start of data can
1703 * be obtained via the UniPlus+ specific "uvar" system call,
1704 * however the method outlined in crt0.c seems to be more portable.
1706 * Probably what will have to happen when a USG unexec is available,
1707 * at least on UniPlus, is temacs will have to be made unshared so
1708 * that text and data are contiguous. Then once loadup is complete,
1709 * unexec will produce a shared executable where the data can be
1710 * at the normal shared text boundary and the startofdata variable
1711 * will be patched by unexec to the correct value.
1715 #ifndef start_of_data
1720 return ((char *) DATA_START
);
1722 #ifdef ORDINARY_LINK
1724 * This is a hack. Since we're not linking crt0.c or pre_crt0.c,
1725 * data_start isn't defined. We take the address of environ, which
1726 * is known to live at or near the start of the system crt0.c, and
1727 * we don't sweat the handful of bytes that might lose.
1729 extern char **environ
;
1731 return ((char *) &environ
);
1733 extern int data_start
;
1734 return ((char *) &data_start
);
1735 #endif /* ORDINARY_LINK */
1736 #endif /* DATA_START */
1738 #endif /* start_of_data */
1739 #endif /* NEED_STARTS (not CANNOT_DUMP or not SYSTEM_MALLOC) */
1741 /* init_system_name sets up the string for the Lisp function
1742 system-name to return. */
1744 extern Lisp_Object Vsystem_name
;
1747 #include <sys/socket.h>
1749 #endif /* HAVE_SOCKETS */
1752 #ifndef HAVE_H_ERRNO
1755 #endif /* TRY_AGAIN */
1760 #ifndef HAVE_GETHOSTNAME
1763 Vsystem_name
= build_string (uts
.nodename
);
1764 #else /* HAVE_GETHOSTNAME */
1765 unsigned int hostname_size
= 256;
1766 char *hostname
= (char *) alloca (hostname_size
);
1768 /* Try to get the host name; if the buffer is too short, try
1769 again. Apparently, the only indication gethostname gives of
1770 whether the buffer was large enough is the presence or absence
1771 of a '\0' in the string. Eech. */
1774 gethostname (hostname
, hostname_size
- 1);
1775 hostname
[hostname_size
- 1] = '\0';
1777 /* Was the buffer large enough for the '\0'? */
1778 if (strlen (hostname
) < hostname_size
- 1)
1781 hostname_size
<<= 1;
1782 hostname
= (char *) alloca (hostname_size
);
1785 /* Turn the hostname into the official, fully-qualified hostname.
1786 Don't do this if we're going to dump; this can confuse system
1787 libraries on some machines and make the dumped emacs core dump. */
1790 #endif /* not CANNOT_DUMP */
1791 if (! index (hostname
, '.'))
1794 #ifdef HAVE_GETADDRINFO
1795 struct addrinfo
*res
;
1796 struct addrinfo hints
;
1799 memset (&hints
, 0, sizeof(hints
));
1800 hints
.ai_socktype
= SOCK_STREAM
;
1801 hints
.ai_flags
= AI_CANONNAME
;
1803 for (count
= 0;; count
++)
1805 if ((ret
= getaddrinfo (hostname
, NULL
, &hints
, &res
)) == 0
1806 || ret
!= EAI_AGAIN
)
1811 Fsleep_for (make_number (1), Qnil
);
1816 struct addrinfo
*it
= res
;
1819 char *fqdn
= it
->ai_canonname
;
1820 if (fqdn
&& index (fqdn
, '.')
1821 && strcmp (fqdn
, "localhost.localdomain") != 0)
1827 hostname
= alloca (strlen (it
->ai_canonname
) + 1);
1828 strcpy (hostname
, it
->ai_canonname
);
1832 #else /* !HAVE_GETADDRINFO */
1834 for (count
= 0;; count
++)
1840 hp
= gethostbyname (hostname
);
1842 if (! (hp
== 0 && h_errno
== TRY_AGAIN
))
1849 Fsleep_for (make_number (1), Qnil
);
1854 char *fqdn
= (char *) hp
->h_name
;
1856 if (!index (fqdn
, '.'))
1858 /* We still don't have a fully qualified domain name.
1859 Try to find one in the list of alternate names */
1860 char **alias
= hp
->h_aliases
;
1862 && (!index (*alias
, '.')
1863 || !strcmp (*alias
, "localhost.localdomain")))
1870 #endif /* !HAVE_GETADDRINFO */
1872 #endif /* HAVE_SOCKETS */
1873 Vsystem_name
= build_string (hostname
);
1874 #endif /* HAVE_GETHOSTNAME */
1877 for (p
= SDATA (Vsystem_name
); *p
; p
++)
1878 if (*p
== ' ' || *p
== '\t')
1884 #if !defined (HAVE_SELECT)
1886 #include "sysselect.h"
1889 #if defined (HAVE_X_WINDOWS) && !defined (HAVE_SELECT)
1890 /* Cause explanatory error message at compile time,
1891 since the select emulation is not good enough for X. */
1892 int *x
= &x_windows_lose_if_no_select_system_call
;
1895 /* Emulate as much as select as is possible under 4.1 and needed by Gnu Emacs
1896 * Only checks read descriptors.
1898 /* How long to wait between checking fds in select */
1899 #define SELECT_PAUSE 1
1902 /* For longjmp'ing back to read_input_waiting. */
1904 jmp_buf read_alarm_throw
;
1906 /* Nonzero if the alarm signal should throw back to read_input_waiting.
1907 The read_socket_hook function sets this to 1 while it is waiting. */
1909 int read_alarm_should_throw
;
1915 signal (SIGALRM
, SIG_IGN
);
1916 SIGNAL_THREAD_CHECK (SIGALRM
);
1917 if (read_alarm_should_throw
)
1918 longjmp (read_alarm_throw
, 1);
1922 /* Only rfds are checked. */
1924 sys_select (nfds
, rfds
, wfds
, efds
, timeout
)
1926 SELECT_TYPE
*rfds
, *wfds
, *efds
;
1927 EMACS_TIME
*timeout
;
1929 /* XXX This needs to be updated for multi-tty support. Is there
1930 anybody who needs to emulate select these days? */
1935 extern int proc_buffered_char
[];
1936 #ifndef subprocesses
1937 int process_tick
= 0, update_tick
= 0;
1939 extern int process_tick
, update_tick
;
1943 #if defined (HAVE_SELECT) && defined (HAVE_X_WINDOWS)
1944 /* If we're using X, then the native select will work; we only need the
1945 emulation for non-X usage. */
1946 if (!NILP (Vinitial_window_system
))
1947 return select (nfds
, rfds
, wfds
, efds
, timeout
);
1949 timeoutval
= timeout
? EMACS_SECS (*timeout
) : 100000;
1950 local_timeout
= &timeoutval
;
1962 /* If we are looking only for the terminal, with no timeout,
1963 just read it and wait -- that's more efficient. */
1964 if (*local_timeout
== 100000 && process_tick
== update_tick
1965 && FD_ISSET (0, &orfds
))
1968 for (fd
= 1; fd
< nfds
; ++fd
)
1969 if (FD_ISSET (fd
, &orfds
))
1971 if (! detect_input_pending ())
1972 read_input_waiting ();
1978 /* Once a second, till the timer expires, check all the flagged read
1979 * descriptors to see if any input is available. If there is some then
1980 * set the corresponding bit in the return copy of rfds.
1984 register int to_check
, fd
;
1988 for (to_check
= nfds
, fd
= 0; --to_check
>= 0; fd
++)
1990 if (FD_ISSET (fd
, &orfds
))
1992 int avail
= 0, status
= 0;
1995 avail
= detect_input_pending (); /* Special keyboard handler */
1999 status
= ioctl (fd
, FIONREAD
, &avail
);
2000 #else /* no FIONREAD */
2001 /* Hoping it will return -1 if nothing available
2002 or 0 if all 0 chars requested are read. */
2003 if (proc_buffered_char
[fd
] >= 0)
2007 avail
= read (fd
, &buf
, 1);
2009 proc_buffered_char
[fd
] = buf
;
2011 #endif /* no FIONREAD */
2013 if (status
>= 0 && avail
> 0)
2021 if (*local_timeout
== 0 || ravail
!= 0 || process_tick
!= update_tick
)
2024 turn_on_atimers (0);
2025 signal (SIGALRM
, select_alarm
);
2027 alarm (SELECT_PAUSE
);
2029 /* Wait for a SIGALRM (or maybe a SIGTINT) */
2030 while (select_alarmed
== 0 && *local_timeout
!= 0
2031 && process_tick
== update_tick
)
2033 /* If we are interested in terminal input,
2034 wait by reading the terminal.
2035 That makes instant wakeup for terminal input at least. */
2036 if (FD_ISSET (0, &orfds
))
2038 read_input_waiting ();
2039 if (detect_input_pending ())
2045 (*local_timeout
) -= SELECT_PAUSE
;
2047 /* Reset the old alarm if there was one. */
2048 turn_on_atimers (1);
2050 if (*local_timeout
== 0) /* Stop on timer being cleared */
2055 #endif /* not WINDOWSNT */
2057 /* Read keyboard input into the standard buffer,
2058 waiting for at least one character. */
2061 read_input_waiting ()
2063 /* XXX This needs to be updated for multi-tty support. Is there
2064 anybody who needs to emulate select these days? */
2066 extern int quit_char
;
2068 if (read_socket_hook
)
2070 struct input_event hold_quit
;
2072 EVENT_INIT (hold_quit
);
2073 hold_quit
.kind
= NO_EVENT
;
2075 read_alarm_should_throw
= 0;
2076 if (! setjmp (read_alarm_throw
))
2077 nread
= (*read_socket_hook
) (0, 1, &hold_quit
);
2081 if (hold_quit
.kind
!= NO_EVENT
)
2082 kbd_buffer_store_event (&hold_quit
);
2086 struct input_event e
;
2088 nread
= read (fileno (stdin
), buf
, 1);
2091 /* Scan the chars for C-g and store them in kbd_buffer. */
2092 e
.kind
= ASCII_KEYSTROKE_EVENT
;
2093 e
.frame_or_window
= selected_frame
;
2095 for (i
= 0; i
< nread
; i
++)
2097 /* Convert chars > 0177 to meta events if desired.
2098 We do this under the same conditions that read_avail_input does. */
2099 if (read_socket_hook
== 0)
2101 /* If the user says she has a meta key, then believe her. */
2102 if (meta_key
== 1 && (buf
[i
] & 0x80))
2103 e
.modifiers
= meta_modifier
;
2108 XSETINT (e
.code
, buf
[i
]);
2109 kbd_buffer_store_event (&e
);
2110 /* Don't look at input that follows a C-g too closely.
2111 This reduces lossage due to autorepeat on C-g. */
2112 if (buf
[i
] == quit_char
)
2118 #if !defined (HAVE_SELECT)
2119 #define select sys_select
2122 #endif /* not HAVE_SELECT */
2123 #endif /* not MSDOS */
2125 /* POSIX signals support - DJB */
2126 /* Anyone with POSIX signals should have ANSI C declarations */
2128 #ifdef POSIX_SIGNALS
2130 sigset_t empty_mask
, full_mask
;
2133 sys_signal (int signal_number
, signal_handler_t action
)
2135 struct sigaction new_action
, old_action
;
2136 sigemptyset (&new_action
.sa_mask
);
2137 new_action
.sa_handler
= action
;
2138 new_action
.sa_flags
= 0;
2139 #if defined (SA_RESTART)
2140 /* Emacs mostly works better with restartable system services. If this
2141 flag exists, we probably want to turn it on here.
2142 However, on some systems this resets the timeout of `select'
2143 which means that `select' never finishes if it keeps getting signals.
2144 BROKEN_SA_RESTART is defined on those systems. */
2145 /* It's not clear why the comment above says "mostly works better". --Stef
2146 When SYNC_INPUT is set, we don't want SA_RESTART because we need to poll
2147 for pending input so we need long-running syscalls to be interrupted
2148 after a signal that sets the interrupt_input_pending flag. */
2149 /* Non-interactive keyboard input goes through stdio, where we always
2150 want restartable system calls. */
2151 # if defined (BROKEN_SA_RESTART) || defined(SYNC_INPUT)
2154 new_action
.sa_flags
= SA_RESTART
;
2156 sigaction (signal_number
, &new_action
, &old_action
);
2157 return (old_action
.sa_handler
);
2161 /* If we're compiling with GCC, we don't need this function, since it
2162 can be written as a macro. */
2164 sys_sigmask (int sig
)
2167 sigemptyset (&mask
);
2168 sigaddset (&mask
, sig
);
2173 /* I'd like to have these guys return pointers to the mask storage in here,
2174 but there'd be trouble if the code was saving multiple masks. I'll be
2175 safe and pass the structure. It normally won't be more than 2 bytes
2179 sys_sigblock (sigset_t new_mask
)
2182 sigprocmask (SIG_BLOCK
, &new_mask
, &old_mask
);
2187 sys_sigunblock (sigset_t new_mask
)
2190 sigprocmask (SIG_UNBLOCK
, &new_mask
, &old_mask
);
2195 sys_sigsetmask (sigset_t new_mask
)
2198 sigprocmask (SIG_SETMASK
, &new_mask
, &old_mask
);
2202 #endif /* POSIX_SIGNALS */
2204 #if !defined HAVE_STRSIGNAL && !HAVE_DECL_SYS_SIGLIST
2205 static char *my_sys_siglist
[NSIG
];
2209 # define sys_siglist my_sys_siglist
2215 #ifdef POSIX_SIGNALS
2216 sigemptyset (&empty_mask
);
2217 sigfillset (&full_mask
);
2220 #if !defined HAVE_STRSIGNAL && !HAVE_DECL_SYS_SIGLIST
2224 sys_siglist
[SIGABRT
] = "Aborted";
2227 sys_siglist
[SIGAIO
] = "LAN I/O interrupt";
2230 sys_siglist
[SIGALRM
] = "Alarm clock";
2233 sys_siglist
[SIGBUS
] = "Bus error";
2236 sys_siglist
[SIGCLD
] = "Child status changed";
2239 sys_siglist
[SIGCHLD
] = "Child status changed";
2242 sys_siglist
[SIGCONT
] = "Continued";
2245 sys_siglist
[SIGDANGER
] = "Swap space dangerously low";
2248 sys_siglist
[SIGDGNOTIFY
] = "Notification message in queue";
2251 sys_siglist
[SIGEMT
] = "Emulation trap";
2254 sys_siglist
[SIGFPE
] = "Arithmetic exception";
2257 sys_siglist
[SIGFREEZE
] = "SIGFREEZE";
2260 sys_siglist
[SIGGRANT
] = "Monitor mode granted";
2263 sys_siglist
[SIGHUP
] = "Hangup";
2266 sys_siglist
[SIGILL
] = "Illegal instruction";
2269 sys_siglist
[SIGINT
] = "Interrupt";
2272 sys_siglist
[SIGIO
] = "I/O possible";
2275 sys_siglist
[SIGIOINT
] = "I/O intervention required";
2278 sys_siglist
[SIGIOT
] = "IOT trap";
2281 sys_siglist
[SIGKILL
] = "Killed";
2284 sys_siglist
[SIGLOST
] = "Resource lost";
2287 sys_siglist
[SIGLWP
] = "SIGLWP";
2290 sys_siglist
[SIGMSG
] = "Monitor mode data available";
2293 sys_siglist
[SIGWIND
] = "SIGPHONE";
2296 sys_siglist
[SIGPIPE
] = "Broken pipe";
2299 sys_siglist
[SIGPOLL
] = "Pollable event occurred";
2302 sys_siglist
[SIGPROF
] = "Profiling timer expired";
2305 sys_siglist
[SIGPTY
] = "PTY I/O interrupt";
2308 sys_siglist
[SIGPWR
] = "Power-fail restart";
2311 sys_siglist
[SIGQUIT
] = "Quit";
2314 sys_siglist
[SIGRETRACT
] = "Need to relinguish monitor mode";
2317 sys_siglist
[SIGSAK
] = "Secure attention";
2320 sys_siglist
[SIGSEGV
] = "Segmentation violation";
2323 sys_siglist
[SIGSOUND
] = "Sound completed";
2326 sys_siglist
[SIGSTOP
] = "Stopped (signal)";
2329 sys_siglist
[SIGSTP
] = "Stopped (user)";
2332 sys_siglist
[SIGSYS
] = "Bad argument to system call";
2335 sys_siglist
[SIGTERM
] = "Terminated";
2338 sys_siglist
[SIGTHAW
] = "SIGTHAW";
2341 sys_siglist
[SIGTRAP
] = "Trace/breakpoint trap";
2344 sys_siglist
[SIGTSTP
] = "Stopped (user)";
2347 sys_siglist
[SIGTTIN
] = "Stopped (tty input)";
2350 sys_siglist
[SIGTTOU
] = "Stopped (tty output)";
2353 sys_siglist
[SIGURG
] = "Urgent I/O condition";
2356 sys_siglist
[SIGUSR1
] = "User defined signal 1";
2359 sys_siglist
[SIGUSR2
] = "User defined signal 2";
2362 sys_siglist
[SIGVTALRM
] = "Virtual timer expired";
2365 sys_siglist
[SIGWAITING
] = "Process's LWPs are blocked";
2368 sys_siglist
[SIGWINCH
] = "Window size changed";
2371 sys_siglist
[SIGWIND
] = "SIGWIND";
2374 sys_siglist
[SIGXCPU
] = "CPU time limit exceeded";
2377 sys_siglist
[SIGXFSZ
] = "File size limit exceeded";
2380 #endif /* !defined HAVE_STRSIGNAL && !defined HAVE_DECL_SYS_SIGLIST */
2389 /* Figure out how many bits the system's random number generator uses.
2390 `random' and `lrand48' are assumed to return 31 usable bits.
2391 BSD `rand' returns a 31 bit value but the low order bits are unusable;
2392 so we'll shift it and treat it like the 15-bit USG `rand'. */
2396 # define RAND_BITS 31
2397 # else /* !HAVE_RANDOM */
2398 # ifdef HAVE_LRAND48
2399 # define RAND_BITS 31
2400 # define random lrand48
2401 # else /* !HAVE_LRAND48 */
2402 # define RAND_BITS 15
2403 # if RAND_MAX == 32767
2404 # define random rand
2405 # else /* RAND_MAX != 32767 */
2406 # if RAND_MAX == 2147483647
2407 # define random() (rand () >> 16)
2408 # else /* RAND_MAX != 2147483647 */
2410 # define random rand
2412 # define random() (rand () >> 16)
2414 # endif /* RAND_MAX != 2147483647 */
2415 # endif /* RAND_MAX != 32767 */
2416 # endif /* !HAVE_LRAND48 */
2417 # endif /* !HAVE_RANDOM */
2418 #endif /* !RAND_BITS */
2425 srandom ((unsigned int)arg
);
2427 # ifdef HAVE_LRAND48
2430 srand ((unsigned int)arg
);
2436 * Build a full Emacs-sized word out of whatever we've got.
2437 * This suffices even for a 64-bit architecture with a 15-bit rand.
2442 long val
= random ();
2443 #if VALBITS > RAND_BITS
2444 val
= (val
<< RAND_BITS
) ^ random ();
2445 #if VALBITS > 2*RAND_BITS
2446 val
= (val
<< RAND_BITS
) ^ random ();
2447 #if VALBITS > 3*RAND_BITS
2448 val
= (val
<< RAND_BITS
) ^ random ();
2449 #if VALBITS > 4*RAND_BITS
2450 val
= (val
<< RAND_BITS
) ^ random ();
2451 #endif /* need at least 5 */
2452 #endif /* need at least 4 */
2453 #endif /* need at least 3 */
2454 #endif /* need at least 2 */
2455 return val
& ((1L << VALBITS
) - 1);
2458 #ifndef HAVE_STRERROR
2464 extern char *sys_errlist
[];
2465 extern int sys_nerr
;
2467 if (errnum
>= 0 && errnum
< sys_nerr
)
2468 return sys_errlist
[errnum
];
2469 return (char *) "Unknown error";
2471 #endif /* not WINDOWSNT */
2472 #endif /* ! HAVE_STRERROR */
2475 emacs_open (path
, oflag
, mode
)
2479 register int rtnval
;
2481 while ((rtnval
= open (path
, oflag
, mode
)) == -1
2482 && (errno
== EINTR
))
2492 register int rtnval
;
2494 while ((rtnval
= close (fd
)) == -1
2495 && (errno
== EINTR
))
2498 /* If close is interrupted SunOS 4.1 may or may not have closed the
2499 file descriptor. If it did the second close will fail with
2500 errno = EBADF. That means we have succeeded. */
2501 if (rtnval
== -1 && did_retry
&& errno
== EBADF
)
2508 emacs_read (fildes
, buf
, nbyte
)
2513 register int rtnval
;
2515 while ((rtnval
= read (fildes
, buf
, nbyte
)) == -1
2516 && (errno
== EINTR
))
2522 emacs_write (fildes
, buf
, nbyte
)
2527 register int rtnval
, bytes_written
;
2533 rtnval
= write (fildes
, buf
, nbyte
);
2540 /* I originally used `QUIT' but that might causes files to
2541 be truncated if you hit C-g in the middle of it. --Stef */
2542 if (interrupt_input_pending
)
2543 handle_async_input ();
2544 if (pending_atimers
)
2545 do_pending_atimers ();
2550 return (bytes_written
? bytes_written
: -1);
2555 bytes_written
+= rtnval
;
2557 return (bytes_written
);
2562 * All of the following are for USG.
2564 * On USG systems the system calls are INTERRUPTIBLE by signals
2565 * that the user program has elected to catch. Thus the system call
2566 * must be retried in these cases. To handle this without massive
2567 * changes in the source code, we remap the standard system call names
2568 * to names for our own functions in sysdep.c that do the system call
2569 * with retries. Actually, for portability reasons, it is good
2570 * programming practice, as this example shows, to limit all actual
2571 * system calls to a single occurrence in the source. Sure, this
2572 * adds an extra level of function call overhead but it is almost
2573 * always negligible. Fred Fish, Unisoft Systems Inc.
2577 * Warning, this function may not duplicate 4.2 action properly
2578 * under error conditions.
2582 /* In 4.1, param.h fails to define this. */
2583 #define MAXPATHLEN 1024
2592 char *npath
, *spath
;
2593 extern char *getcwd ();
2595 BLOCK_INPUT
; /* getcwd uses malloc */
2596 spath
= npath
= getcwd ((char *) 0, MAXPATHLEN
);
2602 /* On Altos 3068, getcwd can return @hostname/dir, so discard
2603 up to first slash. Should be harmless on other systems. */
2604 while (*npath
&& *npath
!= '/')
2606 strcpy (pathname
, npath
);
2607 free (spath
); /* getcwd uses malloc */
2612 #endif /* HAVE_GETWD */
2615 * Emulate rename using unlink/link. Note that this is
2616 * only partially correct. Also, doesn't enforce restriction
2617 * that files be of same type (regular->regular, dir->dir, etc).
2626 if (access (from
, 0) == 0)
2629 if (link (from
, to
) == 0)
2630 if (unlink (from
) == 0)
2639 #if defined(HPUX) && !defined(HAVE_PERROR)
2641 /* HPUX curses library references perror, but as far as we know
2642 it won't be called. Anyway this definition will do for now. */
2647 #endif /* HPUX and not HAVE_PERROR */
2652 * Emulate BSD dup2. First close newd if it already exists.
2653 * Then, attempt to dup oldd. If not successful, call dup2 recursively
2654 * until we are, then close the unsuccessful ones.
2661 register int fd
, ret
;
2666 return fcntl (oldd
, F_DUPFD
, newd
);
2673 ret
= dup2 (old
,new);
2679 #endif /* not HAVE_DUP2 */
2682 * Gettimeofday. Simulate as much as possible. Only accurate
2683 * to nearest second. Emacs doesn't use tzp so ignore it for now.
2684 * Only needed when subprocesses are defined.
2688 #ifndef HAVE_GETTIMEOFDAY
2693 gettimeofday (tp
, tzp
)
2695 struct timezone
*tzp
;
2697 extern long time ();
2699 tp
->tv_sec
= time ((long *)0);
2702 tzp
->tz_minuteswest
= -1;
2708 #endif /* subprocess && !HAVE_GETTIMEOFDAY && HAVE_TIMEVAL */
2711 * This function will go away as soon as all the stubs fixed. (fnf)
2718 printf ("%s not yet implemented\r\n", badfunc
);
2719 reset_all_sys_modes ();
2725 /* Directory routines for systems that don't have them. */
2727 #ifdef SYSV_SYSTEM_DIR
2731 #if !defined (HAVE_CLOSEDIR)
2734 closedir (DIR *dirp
/* stream from opendir */)
2738 rtnval
= emacs_close (dirp
->dd_fd
);
2740 /* Some systems (like Solaris) allocate the buffer and the DIR all
2741 in one block. Why in the world are we freeing this ourselves
2743 #if ! defined (SOLARIS2)
2744 xfree ((char *) dirp
->dd_buf
); /* directory block defined in <dirent.h> */
2746 xfree ((char *) dirp
);
2750 #endif /* not HAVE_CLOSEDIR */
2751 #endif /* SYSV_SYSTEM_DIR */
2755 set_file_times (filename
, atime
, mtime
)
2756 const char *filename
;
2757 EMACS_TIME atime
, mtime
;
2760 struct timeval tv
[2];
2763 return utimes (filename
, tv
);
2764 #else /* not HAVE_UTIMES */
2766 utb
.actime
= EMACS_SECS (atime
);
2767 utb
.modtime
= EMACS_SECS (mtime
);
2768 return utime (filename
, &utb
);
2769 #endif /* not HAVE_UTIMES */
2772 /* mkdir and rmdir functions, for systems which don't have them. */
2776 * Written by Robert Rother, Mariah Corporation, August 1985.
2778 * If you want it, it's yours. All I ask in return is that if you
2779 * figure out how to do this in a Bourne Shell script you send me
2781 * sdcsvax!rmr or rmr@uscd
2783 * Severely hacked over by John Gilmore to make a 4.2BSD compatible
2784 * subroutine. 11Mar86; hoptoad!gnu
2786 * Modified by rmtodd@uokmax 6-28-87 -- when making an already existing dir,
2787 * subroutine didn't return EEXIST. It does now.
2793 #ifdef MKDIR_PROTOTYPE
2797 mkdir (dpath
, dmode
)
2802 int cpid
, status
, fd
;
2803 struct stat statbuf
;
2805 if (stat (dpath
, &statbuf
) == 0)
2807 errno
= EEXIST
; /* Stat worked, so it already exists */
2811 /* If stat fails for a reason other than non-existence, return error */
2812 if (errno
!= ENOENT
)
2815 synch_process_alive
= 1;
2816 switch (cpid
= fork ())
2819 case -1: /* Error in fork */
2820 return (-1); /* Errno is set already */
2822 case 0: /* Child process */
2824 * Cheap hack to set mode of new directory. Since this
2825 * child process is going away anyway, we zap its umask.
2826 * FIXME, this won't suffice to set SUID, SGID, etc. on this
2827 * directory. Does anybody care?
2829 status
= umask (0); /* Get current umask */
2830 status
= umask (status
| (0777 & ~dmode
)); /* Set for mkdir */
2831 fd
= emacs_open ("/dev/null", O_RDWR
, 0);
2838 execl ("/bin/mkdir", "mkdir", dpath
, (char *) 0);
2839 _exit (-1); /* Can't exec /bin/mkdir */
2841 default: /* Parent process */
2842 wait_for_termination (cpid
);
2845 if (synch_process_death
!= 0 || synch_process_retcode
!= 0
2846 || synch_process_termsig
!= 0)
2848 errno
= EIO
; /* We don't know why, but */
2849 return -1; /* /bin/mkdir failed */
2854 #endif /* not HAVE_MKDIR */
2861 int cpid
, status
, fd
;
2862 struct stat statbuf
;
2864 if (stat (dpath
, &statbuf
) != 0)
2866 /* Stat just set errno. We don't have to */
2870 synch_process_alive
= 1;
2871 switch (cpid
= fork ())
2874 case -1: /* Error in fork */
2875 return (-1); /* Errno is set already */
2877 case 0: /* Child process */
2878 fd
= emacs_open ("/dev/null", O_RDWR
, 0);
2885 execl ("/bin/rmdir", "rmdir", dpath
, (char *) 0);
2886 _exit (-1); /* Can't exec /bin/rmdir */
2888 default: /* Parent process */
2889 wait_for_termination (cpid
);
2892 if (synch_process_death
!= 0 || synch_process_retcode
!= 0
2893 || synch_process_termsig
!= 0)
2895 errno
= EIO
; /* We don't know why, but */
2896 return -1; /* /bin/rmdir failed */
2901 #endif /* !HAVE_RMDIR */
2911 register int length
;
2913 while (length
-- > 0)
2917 #endif /* no bzero */
2918 #endif /* BSTRING */
2920 #if (!defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY)
2923 /* Saying `void' requires a declaration, above, where bcopy is used
2924 and that declaration causes pain for systems where bcopy is a macro. */
2925 bcopy (b1
, b2
, length
)
2928 register int length
;
2930 while (length
-- > 0)
2933 #endif /* (!defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY) */
2938 bcmp (b1
, b2
, length
) /* This could be a macro! */
2941 register int length
;
2943 while (length
-- > 0)
2949 #endif /* no bcmp */
2950 #endif /* not BSTRING */
2952 #ifndef HAVE_STRSIGNAL
2959 if (0 <= code
&& code
< NSIG
)
2961 /* Cast to suppress warning if the table has const char *. */
2962 signame
= (char *) sys_siglist
[code
];
2967 #endif /* HAVE_STRSIGNAL */
2970 /* For make-serial-process */
2971 int serial_open (char *port
)
2975 fd
= emacs_open ((char*) port
,
2988 error ("Could not open %s: %s",
2989 port
, emacs_strerror (errno
));
2992 ioctl (fd
, TIOCEXCL
, (char *) 0);
2997 #endif /* TERMIOS */
3001 #if !defined (HAVE_CFMAKERAW)
3002 /* Workaround for targets which are missing cfmakeraw. */
3003 /* Pasted from man page. */
3004 static void cfmakeraw (struct termios
*termios_p
)
3006 termios_p
->c_iflag
&= ~(IGNBRK
|BRKINT
|PARMRK
|ISTRIP
|INLCR
|IGNCR
|ICRNL
|IXON
);
3007 termios_p
->c_oflag
&= ~OPOST
;
3008 termios_p
->c_lflag
&= ~(ECHO
|ECHONL
|ICANON
|ISIG
|IEXTEN
);
3009 termios_p
->c_cflag
&= ~(CSIZE
|PARENB
);
3010 termios_p
->c_cflag
|= CS8
;
3012 #endif /* !defined (HAVE_CFMAKERAW */
3014 #if !defined (HAVE_CFSETSPEED)
3015 /* Workaround for targets which are missing cfsetspeed. */
3016 static int cfsetspeed (struct termios
*termios_p
, speed_t vitesse
)
3018 return (cfsetispeed (termios_p
, vitesse
)
3019 + cfsetospeed (termios_p
, vitesse
));
3023 /* For serial-process-configure */
3025 serial_configure (struct Lisp_Process
*p
,
3026 Lisp_Object contact
)
3028 Lisp_Object childp2
= Qnil
;
3029 Lisp_Object tem
= Qnil
;
3030 struct termios attr
;
3032 char summary
[4] = "???"; /* This usually becomes "8N1". */
3034 childp2
= Fcopy_sequence (p
->childp
);
3036 /* Read port attributes and prepare default configuration. */
3037 err
= tcgetattr (p
->outfd
, &attr
);
3039 error ("tcgetattr() failed: %s", emacs_strerror (errno
));
3041 #if defined (CLOCAL)
3042 attr
.c_cflag
|= CLOCAL
;
3045 attr
.c_cflag
|= CREAD
;
3048 /* Configure speed. */
3049 if (!NILP (Fplist_member (contact
, QCspeed
)))
3050 tem
= Fplist_get (contact
, QCspeed
);
3052 tem
= Fplist_get (p
->childp
, QCspeed
);
3054 err
= cfsetspeed (&attr
, XINT (tem
));
3056 error ("cfsetspeed(%d) failed: %s", XINT (tem
), emacs_strerror (errno
));
3057 childp2
= Fplist_put (childp2
, QCspeed
, tem
);
3059 /* Configure bytesize. */
3060 if (!NILP (Fplist_member (contact
, QCbytesize
)))
3061 tem
= Fplist_get (contact
, QCbytesize
);
3063 tem
= Fplist_get (p
->childp
, QCbytesize
);
3065 tem
= make_number (8);
3067 if (XINT (tem
) != 7 && XINT (tem
) != 8)
3068 error (":bytesize must be nil (8), 7, or 8");
3069 summary
[0] = XINT(tem
) + '0';
3070 #if defined (CSIZE) && defined (CS7) && defined (CS8)
3071 attr
.c_cflag
&= ~CSIZE
;
3072 attr
.c_cflag
|= ((XINT (tem
) == 7) ? CS7
: CS8
);
3074 /* Don't error on bytesize 8, which should be set by cfmakeraw. */
3075 if (XINT (tem
) != 8)
3076 error ("Bytesize cannot be changed");
3078 childp2
= Fplist_put (childp2
, QCbytesize
, tem
);
3080 /* Configure parity. */
3081 if (!NILP (Fplist_member (contact
, QCparity
)))
3082 tem
= Fplist_get (contact
, QCparity
);
3084 tem
= Fplist_get (p
->childp
, QCparity
);
3085 if (!NILP (tem
) && !EQ (tem
, Qeven
) && !EQ (tem
, Qodd
))
3086 error (":parity must be nil (no parity), `even', or `odd'");
3087 #if defined (PARENB) && defined (PARODD) && defined (IGNPAR) && defined (INPCK)
3088 attr
.c_cflag
&= ~(PARENB
| PARODD
);
3089 attr
.c_iflag
&= ~(IGNPAR
| INPCK
);
3094 else if (EQ (tem
, Qeven
))
3097 attr
.c_cflag
|= PARENB
;
3098 attr
.c_iflag
|= (IGNPAR
| INPCK
);
3100 else if (EQ (tem
, Qodd
))
3103 attr
.c_cflag
|= (PARENB
| PARODD
);
3104 attr
.c_iflag
|= (IGNPAR
| INPCK
);
3107 /* Don't error on no parity, which should be set by cfmakeraw. */
3109 error ("Parity cannot be configured");
3111 childp2
= Fplist_put (childp2
, QCparity
, tem
);
3113 /* Configure stopbits. */
3114 if (!NILP (Fplist_member (contact
, QCstopbits
)))
3115 tem
= Fplist_get (contact
, QCstopbits
);
3117 tem
= Fplist_get (p
->childp
, QCstopbits
);
3119 tem
= make_number (1);
3121 if (XINT (tem
) != 1 && XINT (tem
) != 2)
3122 error (":stopbits must be nil (1 stopbit), 1, or 2");
3123 summary
[2] = XINT (tem
) + '0';
3124 #if defined (CSTOPB)
3125 attr
.c_cflag
&= ~CSTOPB
;
3126 if (XINT (tem
) == 2)
3127 attr
.c_cflag
|= CSTOPB
;
3129 /* Don't error on 1 stopbit, which should be set by cfmakeraw. */
3130 if (XINT (tem
) != 1)
3131 error ("Stopbits cannot be configured");
3133 childp2
= Fplist_put (childp2
, QCstopbits
, tem
);
3135 /* Configure flowcontrol. */
3136 if (!NILP (Fplist_member (contact
, QCflowcontrol
)))
3137 tem
= Fplist_get (contact
, QCflowcontrol
);
3139 tem
= Fplist_get (p
->childp
, QCflowcontrol
);
3140 if (!NILP (tem
) && !EQ (tem
, Qhw
) && !EQ (tem
, Qsw
))
3141 error (":flowcontrol must be nil (no flowcontrol), `hw', or `sw'");
3142 #if defined (CRTSCTS)
3143 attr
.c_cflag
&= ~CRTSCTS
;
3145 #if defined (CNEW_RTSCTS)
3146 attr
.c_cflag
&= ~CNEW_RTSCTS
;
3148 #if defined (IXON) && defined (IXOFF)
3149 attr
.c_iflag
&= ~(IXON
| IXOFF
);
3153 /* Already configured. */
3155 else if (EQ (tem
, Qhw
))
3157 #if defined (CRTSCTS)
3158 attr
.c_cflag
|= CRTSCTS
;
3159 #elif defined (CNEW_RTSCTS)
3160 attr
.c_cflag
|= CNEW_RTSCTS
;
3162 error ("Hardware flowcontrol (RTS/CTS) not supported");
3165 else if (EQ (tem
, Qsw
))
3167 #if defined (IXON) && defined (IXOFF)
3168 attr
.c_iflag
|= (IXON
| IXOFF
);
3170 error ("Software flowcontrol (XON/XOFF) not supported");
3173 childp2
= Fplist_put (childp2
, QCflowcontrol
, tem
);
3175 /* Activate configuration. */
3176 err
= tcsetattr (p
->outfd
, TCSANOW
, &attr
);
3178 error ("tcsetattr() failed: %s", emacs_strerror (errno
));
3180 childp2
= Fplist_put (childp2
, QCsummary
, build_string (summary
));
3181 p
->childp
= childp2
;
3184 #endif /* TERMIOS */
3186 /* System depended enumeration of and access to system processes a-la ps(1). */
3190 /* Process enumeration and access via /proc. */
3193 list_system_processes ()
3195 Lisp_Object procdir
, match
, proclist
, next
;
3196 struct gcpro gcpro1
, gcpro2
;
3197 register Lisp_Object tail
;
3199 GCPRO2 (procdir
, match
);
3200 /* For every process on the system, there's a directory in the
3201 "/proc" pseudo-directory whose name is the numeric ID of that
3203 procdir
= build_string ("/proc");
3204 match
= build_string ("[0-9]+");
3205 proclist
= directory_files_internal (procdir
, Qnil
, match
, Qt
, 0, Qnil
);
3207 /* `proclist' gives process IDs as strings. Destructively convert
3208 each string into a number. */
3209 for (tail
= proclist
; CONSP (tail
); tail
= next
)
3212 XSETCAR (tail
, Fstring_to_number (XCAR (tail
), Qnil
));
3216 /* directory_files_internal returns the files in reverse order; undo
3218 proclist
= Fnreverse (proclist
);
3222 /* The WINDOWSNT implementation is on w32.c.
3223 The MSDOS implementation is on dosfns.c. */
3224 #elif !defined (WINDOWSNT) && !defined (MSDOS)
3227 list_system_processes ()
3232 #endif /* !defined (WINDOWSNT) */
3236 time_from_jiffies (unsigned long long tval
, long hz
,
3237 time_t *sec
, unsigned *usec
)
3239 unsigned long long ullsec
;
3243 tval
-= ullsec
* hz
;
3244 /* Careful: if HZ > 1 million, then integer division by it yields zero. */
3246 *usec
= tval
* 1000000 / hz
;
3248 *usec
= tval
/ (hz
/ 1000000);
3252 ltime_from_jiffies (unsigned long long tval
, long hz
)
3257 time_from_jiffies (tval
, hz
, &sec
, &usec
);
3259 return list3 (make_number ((sec
>> 16) & 0xffff),
3260 make_number (sec
& 0xffff),
3261 make_number (usec
));
3265 get_up_time (time_t *sec
, unsigned *usec
)
3272 fup
= fopen ("/proc/uptime", "r");
3276 double uptime
, idletime
;
3278 /* The numbers in /proc/uptime use C-locale decimal point, but
3279 we already set ourselves to the C locale (see `fixup_locale'
3281 if (2 <= fscanf (fup
, "%lf %lf", &uptime
, &idletime
))
3284 *usec
= (uptime
- *sec
) * 1000000;
3291 #define MAJOR(d) (((unsigned)(d) >> 8) & 0xfff)
3292 #define MINOR(d) (((unsigned)(d) & 0xff) | (((unsigned)(d) & 0xfff00000) >> 12))
3295 procfs_ttyname (int rdev
)
3298 char name
[PATH_MAX
];
3301 fdev
= fopen ("/proc/tty/drivers", "r");
3306 unsigned long minor_beg
, minor_end
;
3307 char minor
[25]; /* 2 32-bit numbers + dash */
3310 while (!feof (fdev
) && !ferror (fdev
))
3312 if (3 <= fscanf (fdev
, "%*s %s %u %s %*s\n", name
, &major
, minor
)
3313 && major
== MAJOR (rdev
))
3315 minor_beg
= strtoul (minor
, &endp
, 0);
3317 minor_end
= minor_beg
;
3318 else if (*endp
== '-')
3319 minor_end
= strtoul (endp
+ 1, &endp
, 0);
3323 if (MINOR (rdev
) >= minor_beg
&& MINOR (rdev
) <= minor_end
)
3325 sprintf (name
+ strlen (name
), "%lu", MINOR (rdev
));
3333 return build_string (name
);
3336 static unsigned long
3337 procfs_get_total_memory (void)
3340 unsigned long retval
= 2 * 1024 * 1024; /* default: 2GB */
3343 fmem
= fopen ("/proc/meminfo", "r");
3347 unsigned long entry_value
;
3348 char entry_name
[20]; /* the longest I saw is 13+1 */
3350 while (!feof (fmem
) && !ferror (fmem
))
3352 if (2 <= fscanf (fmem
, "%s %lu kB\n", entry_name
, &entry_value
)
3353 && strcmp (entry_name
, "MemTotal:") == 0)
3355 retval
= entry_value
;
3366 system_process_attributes (Lisp_Object pid
)
3368 char procfn
[PATH_MAX
], fn
[PATH_MAX
];
3372 long clocks_per_sec
;
3374 char procbuf
[1025], *p
, *q
;
3377 const char *cmd
= NULL
;
3378 char *cmdline
= NULL
;
3379 size_t cmdsize
= 0, cmdline_size
;
3381 int proc_id
, ppid
, uid
, gid
, pgrp
, sess
, tty
, tpgid
, thcount
;
3382 unsigned long long utime
, stime
, cutime
, cstime
, start
;
3383 long priority
, nice
, rss
;
3384 unsigned long minflt
, majflt
, cminflt
, cmajflt
, vsize
;
3387 EMACS_TIME tnow
, tstart
, tboot
, telapsed
,ttotal
;
3389 Lisp_Object attrs
= Qnil
;
3390 Lisp_Object cmd_str
, decoded_cmd
, tem
;
3391 struct gcpro gcpro1
, gcpro2
;
3392 EMACS_INT uid_eint
, gid_eint
;
3394 CHECK_NUMBER_OR_FLOAT (pid
);
3395 proc_id
= FLOATP (pid
) ? XFLOAT_DATA (pid
) : XINT (pid
);
3396 sprintf (procfn
, "/proc/%lu", proc_id
);
3397 if (stat (procfn
, &st
) < 0)
3400 GCPRO2 (attrs
, decoded_cmd
);
3404 /* Use of EMACS_INT stops GCC whining about limited range of data type. */
3406 attrs
= Fcons (Fcons (Qeuid
, make_fixnum_or_float (uid_eint
)), attrs
);
3408 pw
= getpwuid (uid
);
3411 attrs
= Fcons (Fcons (Quser
, build_string (pw
->pw_name
)), attrs
);
3415 attrs
= Fcons (Fcons (Qegid
, make_fixnum_or_float (gid_eint
)), attrs
);
3417 gr
= getgrgid (gid
);
3420 attrs
= Fcons (Fcons (Qgroup
, build_string (gr
->gr_name
)), attrs
);
3422 strcpy (fn
, procfn
);
3423 procfn_end
= fn
+ strlen (fn
);
3424 strcpy (procfn_end
, "/stat");
3425 fd
= emacs_open (fn
, O_RDONLY
, 0);
3426 if (fd
>= 0 && (nread
= emacs_read (fd
, procbuf
, sizeof(procbuf
) - 1)) > 0)
3428 procbuf
[nread
] = '\0';
3431 p
= strchr (p
, '(');
3434 q
= strrchr (p
+ 1, ')');
3449 /* Command name is encoded in locale-coding-system; decode it. */
3450 cmd_str
= make_unibyte_string (cmd
, cmdsize
);
3451 decoded_cmd
= code_convert_string_norecord (cmd_str
,
3452 Vlocale_coding_system
, 0);
3453 attrs
= Fcons (Fcons (Qcomm
, decoded_cmd
), attrs
);
3457 EMACS_INT ppid_eint
, pgrp_eint
, sess_eint
, tpgid_eint
, thcount_eint
;
3459 /* state ppid pgrp sess tty tpgid . minflt cminflt majflt cmajflt utime stime cutime cstime priority nice thcount . start vsize rss */
3460 sscanf (p
, "%c %d %d %d %d %d %*u %lu %lu %lu %lu %Lu %Lu %Lu %Lu %ld %ld %d %*d %Lu %lu %ld",
3461 &c
, &ppid
, &pgrp
, &sess
, &tty
, &tpgid
,
3462 &minflt
, &cminflt
, &majflt
, &cmajflt
,
3463 &utime
, &stime
, &cutime
, &cstime
,
3464 &priority
, &nice
, &thcount
, &start
, &vsize
, &rss
);
3469 state_str
[1] = '\0';
3470 tem
= build_string (state_str
);
3471 attrs
= Fcons (Fcons (Qstate
, tem
), attrs
);
3473 /* Stops GCC whining about limited range of data type. */
3478 thcount_eint
= thcount
;
3479 attrs
= Fcons (Fcons (Qppid
, make_fixnum_or_float (ppid_eint
)), attrs
);
3480 attrs
= Fcons (Fcons (Qpgrp
, make_fixnum_or_float (pgrp_eint
)), attrs
);
3481 attrs
= Fcons (Fcons (Qsess
, make_fixnum_or_float (sess_eint
)), attrs
);
3482 attrs
= Fcons (Fcons (Qttname
, procfs_ttyname (tty
)), attrs
);
3483 attrs
= Fcons (Fcons (Qtpgid
, make_fixnum_or_float (tpgid_eint
)), attrs
);
3484 attrs
= Fcons (Fcons (Qminflt
, make_fixnum_or_float (minflt
)), attrs
);
3485 attrs
= Fcons (Fcons (Qmajflt
, make_fixnum_or_float (majflt
)), attrs
);
3486 attrs
= Fcons (Fcons (Qcminflt
, make_fixnum_or_float (cminflt
)), attrs
);
3487 attrs
= Fcons (Fcons (Qcmajflt
, make_fixnum_or_float (cmajflt
)), attrs
);
3488 clocks_per_sec
= sysconf (_SC_CLK_TCK
);
3489 if (clocks_per_sec
< 0)
3490 clocks_per_sec
= 100;
3491 attrs
= Fcons (Fcons (Qutime
,
3492 ltime_from_jiffies (utime
, clocks_per_sec
)),
3494 attrs
= Fcons (Fcons (Qstime
,
3495 ltime_from_jiffies (stime
, clocks_per_sec
)),
3497 attrs
= Fcons (Fcons (Qtime
,
3498 ltime_from_jiffies (stime
+utime
, clocks_per_sec
)),
3500 attrs
= Fcons (Fcons (Qcutime
,
3501 ltime_from_jiffies (cutime
, clocks_per_sec
)),
3503 attrs
= Fcons (Fcons (Qcstime
,
3504 ltime_from_jiffies (cstime
, clocks_per_sec
)),
3506 attrs
= Fcons (Fcons (Qctime
,
3507 ltime_from_jiffies (cstime
+cutime
, clocks_per_sec
)),
3509 attrs
= Fcons (Fcons (Qpri
, make_number (priority
)), attrs
);
3510 attrs
= Fcons (Fcons (Qnice
, make_number (nice
)), attrs
);
3511 attrs
= Fcons (Fcons (Qthcount
, make_fixnum_or_float (thcount_eint
)), attrs
);
3512 EMACS_GET_TIME (tnow
);
3513 get_up_time (&sec
, &usec
);
3514 EMACS_SET_SECS (telapsed
, sec
);
3515 EMACS_SET_USECS (telapsed
, usec
);
3516 EMACS_SUB_TIME (tboot
, tnow
, telapsed
);
3517 time_from_jiffies (start
, clocks_per_sec
, &sec
, &usec
);
3518 EMACS_SET_SECS (tstart
, sec
);
3519 EMACS_SET_USECS (tstart
, usec
);
3520 EMACS_ADD_TIME (tstart
, tboot
, tstart
);
3521 attrs
= Fcons (Fcons (Qstart
,
3523 ((EMACS_SECS (tstart
) >> 16) & 0xffff),
3525 (EMACS_SECS (tstart
) & 0xffff),
3527 (EMACS_USECS (tstart
)))),
3529 attrs
= Fcons (Fcons (Qvsize
, make_fixnum_or_float (vsize
/1024)), attrs
);
3530 attrs
= Fcons (Fcons (Qrss
, make_fixnum_or_float (4*rss
)), attrs
);
3531 EMACS_SUB_TIME (telapsed
, tnow
, tstart
);
3532 attrs
= Fcons (Fcons (Qetime
,
3534 ((EMACS_SECS (telapsed
) >> 16) & 0xffff),
3536 (EMACS_SECS (telapsed
) & 0xffff),
3538 (EMACS_USECS (telapsed
)))),
3540 time_from_jiffies (utime
+ stime
, clocks_per_sec
, &sec
, &usec
);
3541 pcpu
= (sec
+ usec
/ 1000000.0) / (EMACS_SECS (telapsed
) + EMACS_USECS (telapsed
) / 1000000.0);
3544 attrs
= Fcons (Fcons (Qpcpu
, make_float (100 * pcpu
)), attrs
);
3545 pmem
= 4.0 * 100 * rss
/ procfs_get_total_memory ();
3548 attrs
= Fcons (Fcons (Qpmem
, make_float (pmem
)), attrs
);
3555 strcpy (procfn_end
, "/cmdline");
3556 fd
= emacs_open (fn
, O_RDONLY
, 0);
3559 for (cmdline_size
= 0; emacs_read (fd
, &c
, 1) == 1; cmdline_size
++)
3561 if (isspace (c
) || c
== '\\')
3562 cmdline_size
++; /* for later quoting, see below */
3566 cmdline
= xmalloc (cmdline_size
+ 1);
3567 lseek (fd
, 0L, SEEK_SET
);
3569 if ((nread
= read (fd
, cmdline
, cmdline_size
)) >= 0)
3570 cmdline
[nread
++] = '\0';
3573 /* Assigning zero to `nread' makes us skip the following
3574 two loops, assign zero to cmdline_size, and enter the
3575 following `if' clause that handles unknown command
3579 /* We don't want trailing null characters. */
3580 for (p
= cmdline
+ nread
- 1; p
> cmdline
&& !*p
; p
--)
3582 for (p
= cmdline
; p
< cmdline
+ nread
; p
++)
3584 /* Escape-quote whitespace and backslashes. */
3585 if (isspace (*p
) || *p
== '\\')
3587 memmove (p
+ 1, p
, nread
- (p
- cmdline
));
3591 else if (*p
== '\0')
3594 cmdline_size
= nread
;
3601 cmdsize
= strlen (cmd
);
3602 cmdline_size
= cmdsize
+ 2;
3603 cmdline
= xmalloc (cmdline_size
+ 1);
3604 strcpy (cmdline
, "[");
3605 strcat (strncat (cmdline
, cmd
, cmdsize
), "]");
3608 /* Command line is encoded in locale-coding-system; decode it. */
3609 cmd_str
= make_unibyte_string (cmdline
, cmdline_size
);
3610 decoded_cmd
= code_convert_string_norecord (cmd_str
,
3611 Vlocale_coding_system
, 0);
3613 attrs
= Fcons (Fcons (Qargs
, decoded_cmd
), attrs
);
3620 #elif defined (SOLARIS2) && defined (HAVE_PROCFS)
3622 /* The <procfs.h> header does not like to be included if _LP64 is defined and
3623 __FILE_OFFSET_BITS == 64. This is an ugly workaround that. */
3624 #if !defined (_LP64) && defined (_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)
3625 #define PROCFS_FILE_OFFSET_BITS_HACK 1
3626 #undef _FILE_OFFSET_BITS
3628 #define PROCFS_FILE_OFFSET_BITS_HACK 0
3633 #if PROCFS_FILE_OFFSET_BITS_HACK == 1
3634 #define _FILE_OFFSET_BITS 64
3635 #endif /* PROCFS_FILE_OFFSET_BITS_HACK == 1 */
3638 system_process_attributes (Lisp_Object pid
)
3640 char procfn
[PATH_MAX
], fn
[PATH_MAX
];
3645 struct psinfo pinfo
;
3648 int proc_id
, uid
, gid
;
3649 Lisp_Object attrs
= Qnil
;
3650 Lisp_Object decoded_cmd
, tem
;
3651 struct gcpro gcpro1
, gcpro2
;
3652 EMACS_INT uid_eint
, gid_eint
;
3654 CHECK_NUMBER_OR_FLOAT (pid
);
3655 proc_id
= FLOATP (pid
) ? XFLOAT_DATA (pid
) : XINT (pid
);
3656 sprintf (procfn
, "/proc/%u", proc_id
);
3657 if (stat (procfn
, &st
) < 0)
3660 GCPRO2 (attrs
, decoded_cmd
);
3664 /* Use of EMACS_INT stops GCC whining about limited range of data type. */
3666 attrs
= Fcons (Fcons (Qeuid
, make_fixnum_or_float (uid_eint
)), attrs
);
3668 pw
= getpwuid (uid
);
3671 attrs
= Fcons (Fcons (Quser
, build_string (pw
->pw_name
)), attrs
);
3675 attrs
= Fcons (Fcons (Qegid
, make_fixnum_or_float (gid_eint
)), attrs
);
3677 gr
= getgrgid (gid
);
3680 attrs
= Fcons (Fcons (Qgroup
, build_string (gr
->gr_name
)), attrs
);
3682 strcpy (fn
, procfn
);
3683 procfn_end
= fn
+ strlen (fn
);
3684 strcpy (procfn_end
, "/psinfo");
3685 fd
= emacs_open (fn
, O_RDONLY
, 0);
3687 && (nread
= read (fd
, (char*)&pinfo
, sizeof(struct psinfo
)) > 0))
3689 attrs
= Fcons (Fcons (Qppid
, make_fixnum_or_float (pinfo
.pr_ppid
)), attrs
);
3690 attrs
= Fcons (Fcons (Qpgrp
, make_fixnum_or_float (pinfo
.pr_pgid
)), attrs
);
3691 attrs
= Fcons (Fcons (Qsess
, make_fixnum_or_float (pinfo
.pr_sid
)), attrs
);
3695 state_str
[0] = pinfo
.pr_lwp
.pr_sname
;
3696 state_str
[1] = '\0';
3697 tem
= build_string (state_str
);
3698 attrs
= Fcons (Fcons (Qstate
, tem
), attrs
);
3701 /* FIXME: missing Qttyname. psinfo.pr_ttydev is a dev_t,
3702 need to get a string from it. */
3704 /* FIXME: missing: Qtpgid */
3716 Are they available? */
3718 attrs
= Fcons (Fcons (Qtime
,
3719 list3 (make_number (pinfo
.pr_time
.tv_sec
>> 16),
3720 make_number (pinfo
.pr_time
.tv_sec
& 0xffff),
3721 make_number (pinfo
.pr_time
.tv_nsec
))),
3724 attrs
= Fcons (Fcons (Qctime
,
3725 list3 (make_number (pinfo
.pr_ctime
.tv_sec
>> 16),
3726 make_number (pinfo
.pr_ctime
.tv_sec
& 0xffff),
3727 make_number (pinfo
.pr_ctime
.tv_nsec
))),
3730 attrs
= Fcons (Fcons (Qpri
, make_number (pinfo
.pr_lwp
.pr_pri
)), attrs
);
3731 attrs
= Fcons (Fcons (Qnice
, make_number (pinfo
.pr_lwp
.pr_nice
)), attrs
);
3732 attrs
= Fcons (Fcons (Qthcount
, make_fixnum_or_float (pinfo
.pr_nlwp
)), attrs
);
3734 attrs
= Fcons (Fcons (Qstart
,
3735 list3 (make_number (pinfo
.pr_start
.tv_sec
>> 16),
3736 make_number (pinfo
.pr_start
.tv_sec
& 0xffff),
3737 make_number (pinfo
.pr_start
.tv_nsec
))),
3739 attrs
= Fcons (Fcons (Qvsize
, make_fixnum_or_float (pinfo
.pr_size
)), attrs
);
3740 attrs
= Fcons (Fcons (Qrss
, make_fixnum_or_float (pinfo
.pr_rssize
)), attrs
);
3742 /* pr_pctcpu and pr_pctmem are encoded as a fixed point 16 bit number in [0 ... 1]. */
3743 attrs
= Fcons (Fcons (Qpcpu
, (pinfo
.pr_pctcpu
* 100.0) / (double)0x8000), attrs
);
3744 attrs
= Fcons (Fcons (Qpmem
, (pinfo
.pr_pctmem
* 100.0) / (double)0x8000), attrs
);
3747 = code_convert_string_norecord (make_unibyte_string (pinfo
.pr_fname
,
3748 strlen (pinfo
.pr_fname
)),
3749 Vlocale_coding_system
, 0);
3750 attrs
= Fcons (Fcons (Qcomm
, decoded_cmd
), attrs
);
3752 = code_convert_string_norecord (make_unibyte_string (pinfo
.pr_psargs
,
3753 strlen (pinfo
.pr_psargs
)),
3754 Vlocale_coding_system
, 0);
3755 attrs
= Fcons (Fcons (Qargs
, decoded_cmd
), attrs
);
3765 /* The WINDOWSNT implementation is on w32.c.
3766 The MSDOS implementation is on dosfns.c. */
3767 #elif !defined (WINDOWSNT) && !defined (MSDOS)
3770 system_process_attributes (Lisp_Object pid
)
3775 #endif /* !defined (WINDOWSNT) */
3778 /* arch-tag: edb43589-4e09-4544-b325-978b5b121dcf
3779 (do not change this comment) */