Remove mention of obsolete president.
[emacs.git] / src / sysdep.c
blob221febd0d7abb31d000a5ac1e56e1fcce60e1958
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/>. */
21 #ifdef HAVE_CONFIG_H
22 #include <config.h>
23 #endif
25 #include <ctype.h>
26 #include <signal.h>
27 #include <stdio.h>
28 #include <setjmp.h>
29 #ifdef HAVE_PWD_H
30 #include <pwd.h>
31 #include <grp.h>
32 #endif /* HAVE_PWD_H */
33 #ifdef HAVE_LIMITS_H
34 #include <limits.h>
35 #endif /* HAVE_LIMITS_H */
36 #ifdef HAVE_UNISTD_H
37 #include <unistd.h>
38 #endif
39 #ifdef HAVE_ALLOCA_H
40 #include <alloca.h>
41 #endif /* HAVE_ALLOCA_H */
43 #include "lisp.h"
44 /* Including stdlib.h isn't necessarily enough to get srandom
45 declared, e.g. without __USE_XOPEN_EXTENDED with glibc 2. */
47 /* The w32 build defines select stuff in w32.h, which is included by
48 sys/select.h (included below). */
49 #ifndef WINDOWSNT
50 #include "sysselect.h"
51 #endif
53 #include "blockinput.h"
55 #ifdef WINDOWSNT
56 #define read sys_read
57 #define write sys_write
58 #include <windows.h>
59 #ifndef NULL
60 #define NULL 0
61 #endif
62 #endif /* not WINDOWSNT */
64 /* Does anyone other than VMS need this? */
65 #ifndef fwrite
66 #define sys_fwrite fwrite
67 #else
68 #undef fwrite
69 #endif
71 #include <sys/types.h>
72 #include <sys/stat.h>
73 #include <errno.h>
75 #ifdef HAVE_SETPGID
76 #if !defined (USG) || defined (BSD_PGRPS)
77 #undef setpgrp
78 #define setpgrp setpgid
79 #endif
80 #endif
82 /* Get SI_SRPC_DOMAIN, if it is available. */
83 #ifdef HAVE_SYS_SYSTEMINFO_H
84 #include <sys/systeminfo.h>
85 #endif
87 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
88 #include <dos.h>
89 #include "dosfns.h"
90 #include "msdos.h"
91 #include <sys/param.h>
93 #if __DJGPP__ > 1
94 extern int etext;
95 extern unsigned start __asm__ ("start");
96 #endif
97 #endif
99 #ifndef USE_CRT_DLL
100 #ifndef errno
101 extern int errno;
102 #endif
103 #endif
105 #include <sys/file.h>
107 #ifdef HAVE_FCNTL_H
108 #include <fcntl.h>
109 #endif
111 #ifndef MSDOS
112 #include <sys/ioctl.h>
113 #endif
115 #include "systty.h"
116 #include "syswait.h"
118 #if defined (USG)
119 #include <sys/utsname.h>
120 #include <memory.h>
121 #endif /* USG */
123 extern int quit_char;
125 #include "keyboard.h"
126 #include "frame.h"
127 #include "window.h"
128 #include "termhooks.h"
129 #include "termchar.h"
130 #include "termopts.h"
131 #include "dispextern.h"
132 #include "process.h"
133 #include "cm.h" /* for reset_sys_modes */
135 /* For serial_configure and serial_open. */
136 extern Lisp_Object QCport, QCspeed, QCprocess;
137 extern Lisp_Object QCbytesize, QCstopbits, QCparity, Qodd, Qeven;
138 extern Lisp_Object QCflowcontrol, Qhw, Qsw, QCsummary;
140 #ifdef WINDOWSNT
141 #include <direct.h>
142 /* In process.h which conflicts with the local copy. */
143 #define _P_WAIT 0
144 int _cdecl _spawnlp (int, const char *, const char *, ...);
145 int _cdecl _getpid (void);
146 extern char *getwd (char *);
147 #endif
149 #include "syssignal.h"
150 #include "systime.h"
151 #ifdef HAVE_UTIME_H
152 #include <utime.h>
153 #endif
155 #ifndef HAVE_UTIMES
156 #ifndef HAVE_STRUCT_UTIMBUF
157 /* We want to use utime rather than utimes, but we couldn't find the
158 structure declaration. We'll use the traditional one. */
159 struct utimbuf {
160 long actime;
161 long modtime;
163 #endif
164 #endif
166 /* LPASS8 is new in 4.3, and makes cbreak mode provide all 8 bits. */
167 #ifndef LPASS8
168 #define LPASS8 0
169 #endif
171 static int baud_convert[] =
173 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
174 1800, 2400, 4800, 9600, 19200, 38400
177 #ifdef HAVE_SPEED_T
178 #include <termios.h>
179 #else
180 #if defined (HAVE_LIBNCURSES) && ! defined (NCURSES_OSPEED_T)
181 #else
182 #if defined (HAVE_TERMIOS_H) && defined (GNU_LINUX)
183 #include <termios.h>
184 #endif
185 #endif
186 #endif
188 int emacs_ospeed;
190 void croak P_ ((char *)) NO_RETURN;
192 /* Temporary used by `sigblock' when defined in terms of signprocmask. */
194 SIGMASKTYPE sigprocmask_set;
197 #if !defined (HAVE_GET_CURRENT_DIR_NAME) || defined (BROKEN_GET_CURRENT_DIR_NAME)
199 /* Return the current working directory. Returns NULL on errors.
200 Any other returned value must be freed with free. This is used
201 only when get_current_dir_name is not defined on the system. */
202 char*
203 get_current_dir_name ()
205 char *buf;
206 char *pwd;
207 struct stat dotstat, pwdstat;
208 /* If PWD is accurate, use it instead of calling getwd. PWD is
209 sometimes a nicer name, and using it may avoid a fatal error if a
210 parent directory is searchable but not readable. */
211 if ((pwd = getenv ("PWD")) != 0
212 && (IS_DIRECTORY_SEP (*pwd) || (*pwd && IS_DEVICE_SEP (pwd[1])))
213 && stat (pwd, &pwdstat) == 0
214 && stat (".", &dotstat) == 0
215 && dotstat.st_ino == pwdstat.st_ino
216 && dotstat.st_dev == pwdstat.st_dev
217 #ifdef MAXPATHLEN
218 && strlen (pwd) < MAXPATHLEN
219 #endif
222 buf = (char *) malloc (strlen (pwd) + 1);
223 if (!buf)
224 return NULL;
225 strcpy (buf, pwd);
227 #ifdef HAVE_GETCWD
228 else
230 size_t buf_size = 1024;
231 buf = (char *) malloc (buf_size);
232 if (!buf)
233 return NULL;
234 for (;;)
236 if (getcwd (buf, buf_size) == buf)
237 break;
238 if (errno != ERANGE)
240 int tmp_errno = errno;
241 free (buf);
242 errno = tmp_errno;
243 return NULL;
245 buf_size *= 2;
246 buf = (char *) realloc (buf, buf_size);
247 if (!buf)
248 return NULL;
251 #else
252 else
254 /* We need MAXPATHLEN here. */
255 buf = (char *) malloc (MAXPATHLEN + 1);
256 if (!buf)
257 return NULL;
258 if (getwd (buf) == NULL)
260 int tmp_errno = errno;
261 free (buf);
262 errno = tmp_errno;
263 return NULL;
266 #endif
267 return buf;
269 #endif
272 /* Discard pending input on all input descriptors. */
274 void
275 discard_tty_input ()
277 #ifndef WINDOWSNT
278 struct emacs_tty buf;
280 if (noninteractive)
281 return;
283 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
284 while (dos_keyread () != -1)
286 #else /* not MSDOS */
288 struct tty_display_info *tty;
289 for (tty = tty_list; tty; tty = tty->next)
291 if (tty->input) /* Is the device suspended? */
293 EMACS_GET_TTY (fileno (tty->input), &buf);
294 EMACS_SET_TTY (fileno (tty->input), &buf, 0);
298 #endif /* not MSDOS */
299 #endif /* not WINDOWSNT */
303 #ifdef SIGTSTP
305 /* Arrange for character C to be read as the next input from
306 the terminal.
307 XXX What if we have multiple ttys?
310 void
311 stuff_char (char c)
313 if (! FRAME_TERMCAP_P (SELECTED_FRAME ()))
314 return;
316 /* Should perhaps error if in batch mode */
317 #ifdef TIOCSTI
318 ioctl (fileno (CURTTY()->input), TIOCSTI, &c);
319 #else /* no TIOCSTI */
320 error ("Cannot stuff terminal input characters in this version of Unix");
321 #endif /* no TIOCSTI */
324 #endif /* SIGTSTP */
326 void
327 init_baud_rate (int fd)
329 if (noninteractive)
330 emacs_ospeed = 0;
331 else
333 #ifdef DOS_NT
334 emacs_ospeed = 15;
335 #else /* not DOS_NT */
336 #ifdef HAVE_TERMIOS
337 struct termios sg;
339 sg.c_cflag = B9600;
340 tcgetattr (fd, &sg);
341 emacs_ospeed = cfgetospeed (&sg);
342 #else /* not TERMIOS */
343 #ifdef HAVE_TERMIO
344 struct termio sg;
346 sg.c_cflag = B9600;
347 #ifdef HAVE_TCATTR
348 tcgetattr (fd, &sg);
349 #else
350 ioctl (fd, TCGETA, &sg);
351 #endif
352 emacs_ospeed = sg.c_cflag & CBAUD;
353 #else /* neither TERMIOS nor TERMIO */
354 struct sgttyb sg;
356 sg.sg_ospeed = B9600;
357 if (ioctl (fd, TIOCGETP, &sg) < 0)
358 abort ();
359 emacs_ospeed = sg.sg_ospeed;
360 #endif /* not HAVE_TERMIO */
361 #endif /* not HAVE_TERMIOS */
362 #endif /* not DOS_NT */
365 baud_rate = (emacs_ospeed < sizeof baud_convert / sizeof baud_convert[0]
366 ? baud_convert[emacs_ospeed] : 9600);
367 if (baud_rate == 0)
368 baud_rate = 1200;
372 /*ARGSUSED*/
373 void
374 set_exclusive_use (fd)
375 int fd;
377 #ifdef FIOCLEX
378 ioctl (fd, FIOCLEX, 0);
379 #endif
380 /* Ok to do nothing if this feature does not exist */
383 #ifndef subprocesses
385 wait_without_blocking ()
387 #ifdef BSD_SYSTEM
388 wait3 (0, WNOHANG | WUNTRACED, 0);
389 #else
390 croak ("wait_without_blocking");
391 #endif
392 synch_process_alive = 0;
395 #endif /* not subprocesses */
397 int wait_debugging; /* Set nonzero to make following function work under dbx
398 (at least for bsd). */
400 SIGTYPE
401 wait_for_termination_signal ()
404 /* Wait for subprocess with process id `pid' to terminate and
405 make sure it will get eliminated (not remain forever as a zombie) */
407 void
408 wait_for_termination (pid)
409 int pid;
411 while (1)
413 #ifdef subprocesses
414 #if defined (BSD_SYSTEM) || defined (HPUX)
415 /* Note that kill returns -1 even if the process is just a zombie now.
416 But inevitably a SIGCHLD interrupt should be generated
417 and child_sig will do wait3 and make the process go away. */
418 /* There is some indication that there is a bug involved with
419 termination of subprocesses, perhaps involving a kernel bug too,
420 but no idea what it is. Just as a hunch we signal SIGCHLD to see
421 if that causes the problem to go away or get worse. */
422 sigsetmask (sigmask (SIGCHLD));
423 if (0 > kill (pid, 0))
425 sigsetmask (SIGEMPTYMASK);
426 kill (getpid (), SIGCHLD);
427 break;
429 if (wait_debugging)
430 sleep (1);
431 else
432 sigpause (SIGEMPTYMASK);
433 #else /* not BSD_SYSTEM, and not HPUX version >= 6 */
434 #ifdef POSIX_SIGNALS /* would this work for GNU/Linux as well? */
435 sigblock (sigmask (SIGCHLD));
436 errno = 0;
437 if (kill (pid, 0) == -1 && errno == ESRCH)
439 sigunblock (sigmask (SIGCHLD));
440 break;
443 sigsuspend (&empty_mask);
444 #else /* not POSIX_SIGNALS */
445 #ifdef HAVE_SYSV_SIGPAUSE
446 sighold (SIGCHLD);
447 if (0 > kill (pid, 0))
449 sigrelse (SIGCHLD);
450 break;
452 sigpause (SIGCHLD);
453 #else /* not HAVE_SYSV_SIGPAUSE */
454 #ifdef WINDOWSNT
455 wait (0);
456 break;
457 #else /* not WINDOWSNT */
458 if (0 > kill (pid, 0))
459 break;
460 /* Using sleep instead of pause avoids timing error.
461 If the inferior dies just before the sleep,
462 we lose just one second. */
463 sleep (1);
464 #endif /* not WINDOWSNT */
465 #endif /* not HAVE_SYSV_SIGPAUSE */
466 #endif /* not POSIX_SIGNALS */
467 #endif /* not BSD_SYSTEM, and not HPUX version >= 6 */
468 #else /* not subprocesses */
469 #if __DJGPP__ > 1
470 break;
471 #else /* not __DJGPP__ > 1 */
472 if (kill (pid, 0) < 0)
473 break;
474 wait (0);
475 #endif /* not __DJGPP__ > 1*/
476 #endif /* not subprocesses */
480 #ifdef subprocesses
483 * flush any pending output
484 * (may flush input as well; it does not matter the way we use it)
487 void
488 flush_pending_output (channel)
489 int channel;
491 #ifdef HAVE_TERMIOS
492 /* If we try this, we get hit with SIGTTIN, because
493 the child's tty belongs to the child's pgrp. */
494 #else
495 #ifdef TCFLSH
496 ioctl (channel, TCFLSH, 1);
497 #else
498 #ifdef TIOCFLUSH
499 int zero = 0;
500 /* 3rd arg should be ignored
501 but some 4.2 kernels actually want the address of an int
502 and nonzero means something different. */
503 ioctl (channel, TIOCFLUSH, &zero);
504 #endif
505 #endif
506 #endif
509 /* Set up the terminal at the other end of a pseudo-terminal that
510 we will be controlling an inferior through.
511 It should not echo or do line-editing, since that is done
512 in Emacs. No padding needed for insertion into an Emacs buffer. */
514 void
515 child_setup_tty (out)
516 int out;
518 #ifndef DOS_NT
519 struct emacs_tty s;
521 EMACS_GET_TTY (out, &s);
523 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
524 s.main.c_oflag |= OPOST; /* Enable output postprocessing */
525 s.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL on output */
526 #ifdef NLDLY
527 /* http://lists.gnu.org/archive/html/emacs-devel/2008-05/msg00406.html
528 Some versions of GNU Hurd do not have FFDLY? */
529 #ifdef FFDLY
530 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY|FFDLY);
531 /* No output delays */
532 #else
533 s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY);
534 /* No output delays */
535 #endif
536 #endif
537 s.main.c_lflag &= ~ECHO; /* Disable echo */
538 s.main.c_lflag |= ISIG; /* Enable signals */
539 #ifdef IUCLC
540 s.main.c_iflag &= ~IUCLC; /* Disable downcasing on input. */
541 #endif
542 #ifdef ISTRIP
543 s.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
544 #endif
545 #ifdef OLCUC
546 s.main.c_oflag &= ~OLCUC; /* Disable upcasing on output. */
547 #endif
548 s.main.c_oflag &= ~TAB3; /* Disable tab expansion */
549 s.main.c_cflag = (s.main.c_cflag & ~CSIZE) | CS8; /* Don't strip 8th bit */
550 s.main.c_lflag |= ICANON; /* Enable erase/kill and eof processing */
551 s.main.c_cc[VEOF] = 04; /* insure that EOF is Control-D */
552 s.main.c_cc[VERASE] = CDISABLE; /* disable erase processing */
553 s.main.c_cc[VKILL] = CDISABLE; /* disable kill processing */
555 #ifdef HPUX
556 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
557 #endif /* HPUX */
559 #ifdef SIGNALS_VIA_CHARACTERS
560 /* the QUIT and INTR character are used in process_send_signal
561 so set them here to something useful. */
562 if (s.main.c_cc[VQUIT] == CDISABLE)
563 s.main.c_cc[VQUIT] = '\\'&037; /* Control-\ */
564 if (s.main.c_cc[VINTR] == CDISABLE)
565 s.main.c_cc[VINTR] = 'C'&037; /* Control-C */
566 #endif /* not SIGNALS_VIA_CHARACTERS */
568 #ifdef AIX
569 /* AIX enhanced edit loses NULs, so disable it */
570 #ifndef IBMR2AIX
571 s.main.c_line = 0;
572 s.main.c_iflag &= ~ASCEDIT;
573 #endif
574 /* Also, PTY overloads NUL and BREAK.
575 don't ignore break, but don't signal either, so it looks like NUL. */
576 s.main.c_iflag &= ~IGNBRK;
577 s.main.c_iflag &= ~BRKINT;
578 /* rms: Formerly it set s.main.c_cc[VINTR] to 0377 here
579 unconditionally. Then a SIGNALS_VIA_CHARACTERS conditional
580 would force it to 0377. That looks like duplicated code. */
581 #ifndef SIGNALS_VIA_CHARACTERS
582 /* QUIT and INTR work better as signals, so disable character forms */
583 s.main.c_cc[VQUIT] = CDISABLE;
584 s.main.c_cc[VINTR] = CDISABLE;
585 s.main.c_lflag &= ~ISIG;
586 #endif /* no TIOCGPGRP or no TIOCGLTC or no TIOCGETC */
587 s.main.c_cc[VEOL] = CDISABLE;
588 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
589 #endif /* AIX */
591 #else /* not HAVE_TERMIO */
593 s.main.sg_flags &= ~(ECHO | CRMOD | ANYP | ALLDELAY | RAW | LCASE
594 | CBREAK | TANDEM);
595 s.main.sg_flags |= LPASS8;
596 s.main.sg_erase = 0377;
597 s.main.sg_kill = 0377;
598 s.lmode = LLITOUT | s.lmode; /* Don't strip 8th bit */
600 #endif /* not HAVE_TERMIO */
602 EMACS_SET_TTY (out, &s, 0);
604 #endif /* not DOS_NT */
607 #endif /* subprocesses */
609 /* Record a signal code and the handler for it. */
610 struct save_signal
612 int code;
613 SIGTYPE (*handler) P_ ((int));
616 static void save_signal_handlers P_ ((struct save_signal *));
617 static void restore_signal_handlers P_ ((struct save_signal *));
619 /* Suspend the Emacs process; give terminal to its superior. */
621 void
622 sys_suspend ()
624 #if defined (SIGTSTP) && !defined (MSDOS)
627 int pgrp = EMACS_GETPGRP (0);
628 EMACS_KILLPG (pgrp, SIGTSTP);
631 #else /* No SIGTSTP */
632 #ifdef USG_JOBCTRL /* If you don't know what this is don't mess with it */
633 ptrace (0, 0, 0, 0); /* set for ptrace - caught by csh */
634 kill (getpid (), SIGQUIT);
636 #else /* No SIGTSTP or USG_JOBCTRL */
638 /* On a system where suspending is not implemented,
639 instead fork a subshell and let it talk directly to the terminal
640 while we wait. */
641 sys_subshell ();
643 #endif /* no USG_JOBCTRL */
644 #endif /* no SIGTSTP */
647 /* Fork a subshell. */
649 void
650 sys_subshell ()
652 #ifdef DOS_NT /* Demacs 1.1.2 91/10/20 Manabu Higashida */
653 int st;
654 char oldwd[MAXPATHLEN+1]; /* Fixed length is safe on MSDOS. */
655 #endif
656 int pid;
657 struct save_signal saved_handlers[5];
658 Lisp_Object dir;
659 unsigned char *str = 0;
660 int len;
662 saved_handlers[0].code = SIGINT;
663 saved_handlers[1].code = SIGQUIT;
664 saved_handlers[2].code = SIGTERM;
665 #ifdef SIGIO
666 saved_handlers[3].code = SIGIO;
667 saved_handlers[4].code = 0;
668 #else
669 saved_handlers[3].code = 0;
670 #endif
672 /* Mentioning current_buffer->buffer would mean including buffer.h,
673 which somehow wedges the hp compiler. So instead... */
675 dir = intern ("default-directory");
676 if (NILP (Fboundp (dir)))
677 goto xyzzy;
678 dir = Fsymbol_value (dir);
679 if (!STRINGP (dir))
680 goto xyzzy;
682 dir = expand_and_dir_to_file (Funhandled_file_name_directory (dir), Qnil);
683 str = (unsigned char *) alloca (SCHARS (dir) + 2);
684 len = SCHARS (dir);
685 bcopy (SDATA (dir), str, len);
686 if (str[len - 1] != '/') str[len++] = '/';
687 str[len] = 0;
688 xyzzy:
690 #ifdef DOS_NT
691 pid = 0;
692 #if __DJGPP__ > 1
693 save_signal_handlers (saved_handlers);
694 synch_process_alive = 1;
695 #endif /* __DJGPP__ > 1 */
696 #else
697 pid = vfork ();
698 if (pid == -1)
699 error ("Can't spawn subshell");
700 #endif
702 if (pid == 0)
704 char *sh = 0;
706 #ifdef DOS_NT /* MW, Aug 1993 */
707 getwd (oldwd);
708 if (sh == 0)
709 sh = (char *) egetenv ("SUSPEND"); /* KFS, 1994-12-14 */
710 #endif
711 if (sh == 0)
712 sh = (char *) egetenv ("SHELL");
713 if (sh == 0)
714 sh = "sh";
716 /* Use our buffer's default directory for the subshell. */
717 if (str)
718 chdir ((char *) str);
720 #ifdef subprocesses
721 close_process_descs (); /* Close Emacs's pipes/ptys */
722 #endif
724 #ifdef SET_EMACS_PRIORITY
726 extern EMACS_INT emacs_priority;
728 if (emacs_priority < 0)
729 nice (-emacs_priority);
731 #endif
733 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
735 char *epwd = getenv ("PWD");
736 char old_pwd[MAXPATHLEN+1+4];
738 /* If PWD is set, pass it with corrected value. */
739 if (epwd)
741 strcpy (old_pwd, epwd);
742 if (str[len - 1] == '/')
743 str[len - 1] = '\0';
744 setenv ("PWD", str, 1);
746 st = system (sh);
747 chdir (oldwd);
748 if (epwd)
749 putenv (old_pwd); /* restore previous value */
751 #else /* not MSDOS */
752 #ifdef WINDOWSNT
753 /* Waits for process completion */
754 pid = _spawnlp (_P_WAIT, sh, sh, NULL);
755 chdir (oldwd);
756 if (pid == -1)
757 write (1, "Can't execute subshell", 22);
758 #else /* not WINDOWSNT */
759 execlp (sh, sh, (char *) 0);
760 write (1, "Can't execute subshell", 22);
761 _exit (1);
762 #endif /* not WINDOWSNT */
763 #endif /* not MSDOS */
766 /* Do this now if we did not do it before. */
767 #if !defined (MSDOS) || __DJGPP__ == 1
768 save_signal_handlers (saved_handlers);
769 synch_process_alive = 1;
770 #endif
772 #ifndef DOS_NT
773 wait_for_termination (pid);
774 #endif
775 restore_signal_handlers (saved_handlers);
776 synch_process_alive = 0;
779 static void
780 save_signal_handlers (saved_handlers)
781 struct save_signal *saved_handlers;
783 while (saved_handlers->code)
785 saved_handlers->handler
786 = (SIGTYPE (*) P_ ((int))) signal (saved_handlers->code, SIG_IGN);
787 saved_handlers++;
791 static void
792 restore_signal_handlers (saved_handlers)
793 struct save_signal *saved_handlers;
795 while (saved_handlers->code)
797 signal (saved_handlers->code, saved_handlers->handler);
798 saved_handlers++;
802 #ifndef SIGIO
803 /* If SIGIO is broken, don't do anything. */
804 void
805 init_sigio (int fd)
809 void
810 reset_sigio (int fd)
814 void
815 request_sigio (void)
819 void
820 unrequest_sigio (void)
824 #else
825 #ifdef F_SETFL
827 int old_fcntl_flags[MAXDESC];
829 void
830 init_sigio (fd)
831 int fd;
833 #ifdef FASYNC
834 old_fcntl_flags[fd] = fcntl (fd, F_GETFL, 0) & ~FASYNC;
835 fcntl (fd, F_SETFL, old_fcntl_flags[fd] | FASYNC);
836 #endif
837 interrupts_deferred = 0;
840 void
841 reset_sigio (fd)
842 int fd;
844 #ifdef FASYNC
845 fcntl (fd, F_SETFL, old_fcntl_flags[fd]);
846 #endif
849 #ifdef FASYNC /* F_SETFL does not imply existence of FASYNC */
850 /* XXX Uhm, FASYNC is not used anymore here. */
851 /* XXX Yeah, but you need it for SIGIO, don't you? */
853 void
854 request_sigio ()
856 if (noninteractive)
857 return;
859 #ifdef SIGWINCH
860 sigunblock (sigmask (SIGWINCH));
861 #endif
862 sigunblock (sigmask (SIGIO));
864 interrupts_deferred = 0;
867 void
868 unrequest_sigio (void)
870 if (noninteractive)
871 return;
873 #if 0 /* XXX What's wrong with blocking SIGIO under X? */
874 if (x_display_list)
875 return;
876 #endif
878 #ifdef SIGWINCH
879 sigblock (sigmask (SIGWINCH));
880 #endif
881 sigblock (sigmask (SIGIO));
882 interrupts_deferred = 1;
885 #else /* no FASYNC */
886 #ifndef MSDOS
888 void
889 request_sigio ()
891 if (noninteractive || read_socket_hook)
892 return;
894 croak ("request_sigio");
897 void
898 unrequest_sigio ()
900 if (noninteractive || read_socket_hook)
901 return;
903 croak ("unrequest_sigio");
906 #endif /* MSDOS */
907 #endif /* FASYNC */
908 #endif /* F_SETFL */
909 #endif /* SIGIO */
911 /* Saving and restoring the process group of Emacs's terminal. */
913 #ifdef BSD_PGRPS
915 /* The process group of which Emacs was a member when it initially
916 started.
918 If Emacs was in its own process group (i.e. inherited_pgroup ==
919 getpid ()), then we know we're running under a shell with job
920 control (Emacs would never be run as part of a pipeline).
921 Everything is fine.
923 If Emacs was not in its own process group, then we know we're
924 running under a shell (or a caller) that doesn't know how to
925 separate itself from Emacs (like sh). Emacs must be in its own
926 process group in order to receive SIGIO correctly. In this
927 situation, we put ourselves in our own pgroup, forcibly set the
928 tty's pgroup to our pgroup, and make sure to restore and reinstate
929 the tty's pgroup just like any other terminal setting. If
930 inherited_group was not the tty's pgroup, then we'll get a
931 SIGTTmumble when we try to change the tty's pgroup, and a CONT if
932 it goes foreground in the future, which is what should happen.
934 This variable is initialized in emacs.c. */
935 int inherited_pgroup;
937 /* Split off the foreground process group to Emacs alone. When we are
938 in the foreground, but not started in our own process group,
939 redirect the tty device handle FD to point to our own process
940 group. We need to be in our own process group to receive SIGIO
941 properly. */
942 static void
943 narrow_foreground_group (int fd)
945 int me = getpid ();
947 setpgrp (0, inherited_pgroup);
948 #if 0
949 /* XXX inherited_pgroup should not be zero here, but GTK seems to
950 mess this up. */
951 if (! inherited_pgroup)
952 abort (); /* Should not happen. */
953 #endif
954 if (inherited_pgroup != me)
955 EMACS_SET_TTY_PGRP (fd, &me); /* XXX This only works on the controlling tty. */
956 setpgrp (0, me);
959 /* Set the tty to our original foreground group. */
960 static void
961 widen_foreground_group (int fd)
963 if (inherited_pgroup != getpid ())
964 EMACS_SET_TTY_PGRP (fd, &inherited_pgroup);
965 setpgrp (0, inherited_pgroup);
968 #endif /* BSD_PGRPS */
970 /* Getting and setting emacs_tty structures. */
972 /* Set *TC to the parameters associated with the terminal FD.
973 Return zero if all's well, or -1 if we ran into an error we
974 couldn't deal with. */
976 emacs_get_tty (fd, settings)
977 int fd;
978 struct emacs_tty *settings;
980 /* Retrieve the primary parameters - baud rate, character size, etcetera. */
981 #ifdef HAVE_TCATTR
982 /* We have those nifty POSIX tcmumbleattr functions. */
983 bzero (&settings->main, sizeof (settings->main));
984 if (tcgetattr (fd, &settings->main) < 0)
985 return -1;
987 #else
988 #ifdef HAVE_TERMIO
989 /* The SYSV-style interface? */
990 if (ioctl (fd, TCGETA, &settings->main) < 0)
991 return -1;
993 #else
994 #ifndef DOS_NT
995 /* I give up - I hope you have the BSD ioctls. */
996 if (ioctl (fd, TIOCGETP, &settings->main) < 0)
997 return -1;
998 #endif /* not DOS_NT */
999 #endif
1000 #endif
1002 /* Suivant - Do we have to get struct ltchars data? */
1003 #ifdef HAVE_LTCHARS
1004 if (ioctl (fd, TIOCGLTC, &settings->ltchars) < 0)
1005 return -1;
1006 #endif
1008 /* How about a struct tchars and a wordful of lmode bits? */
1009 #ifdef HAVE_TCHARS
1010 if (ioctl (fd, TIOCGETC, &settings->tchars) < 0
1011 || ioctl (fd, TIOCLGET, &settings->lmode) < 0)
1012 return -1;
1013 #endif
1015 /* We have survived the tempest. */
1016 return 0;
1020 /* Set the parameters of the tty on FD according to the contents of
1021 *SETTINGS. If FLUSHP is non-zero, we discard input.
1022 Return 0 if all went well, and -1 if anything failed. */
1025 emacs_set_tty (fd, settings, flushp)
1026 int fd;
1027 struct emacs_tty *settings;
1028 int flushp;
1030 /* Set the primary parameters - baud rate, character size, etcetera. */
1031 #ifdef HAVE_TCATTR
1032 int i;
1033 /* We have those nifty POSIX tcmumbleattr functions.
1034 William J. Smith <wjs@wiis.wang.com> writes:
1035 "POSIX 1003.1 defines tcsetattr to return success if it was
1036 able to perform any of the requested actions, even if some
1037 of the requested actions could not be performed.
1038 We must read settings back to ensure tty setup properly.
1039 AIX requires this to keep tty from hanging occasionally." */
1040 /* This make sure that we don't loop indefinitely in here. */
1041 for (i = 0 ; i < 10 ; i++)
1042 if (tcsetattr (fd, flushp ? TCSAFLUSH : TCSADRAIN, &settings->main) < 0)
1044 if (errno == EINTR)
1045 continue;
1046 else
1047 return -1;
1049 else
1051 struct termios new;
1053 bzero (&new, sizeof (new));
1054 /* Get the current settings, and see if they're what we asked for. */
1055 tcgetattr (fd, &new);
1056 /* We cannot use memcmp on the whole structure here because under
1057 * aix386 the termios structure has some reserved field that may
1058 * not be filled in.
1060 if ( new.c_iflag == settings->main.c_iflag
1061 && new.c_oflag == settings->main.c_oflag
1062 && new.c_cflag == settings->main.c_cflag
1063 && new.c_lflag == settings->main.c_lflag
1064 && memcmp (new.c_cc, settings->main.c_cc, NCCS) == 0)
1065 break;
1066 else
1067 continue;
1070 #else
1071 #ifdef HAVE_TERMIO
1072 /* The SYSV-style interface? */
1073 if (ioctl (fd, flushp ? TCSETAF : TCSETAW, &settings->main) < 0)
1074 return -1;
1076 #else
1077 #ifndef DOS_NT
1078 /* I give up - I hope you have the BSD ioctls. */
1079 if (ioctl (fd, (flushp) ? TIOCSETP : TIOCSETN, &settings->main) < 0)
1080 return -1;
1081 #endif /* not DOS_NT */
1083 #endif
1084 #endif
1086 /* Suivant - Do we have to get struct ltchars data? */
1087 #ifdef HAVE_LTCHARS
1088 if (ioctl (fd, TIOCSLTC, &settings->ltchars) < 0)
1089 return -1;
1090 #endif
1092 /* How about a struct tchars and a wordful of lmode bits? */
1093 #ifdef HAVE_TCHARS
1094 if (ioctl (fd, TIOCSETC, &settings->tchars) < 0
1095 || ioctl (fd, TIOCLSET, &settings->lmode) < 0)
1096 return -1;
1097 #endif
1099 /* We have survived the tempest. */
1100 return 0;
1105 #ifdef F_SETOWN
1106 int old_fcntl_owner[MAXDESC];
1107 #endif /* F_SETOWN */
1109 /* This may also be defined in stdio,
1110 but if so, this does no harm,
1111 and using the same name avoids wasting the other one's space. */
1113 #if defined (USG)
1114 unsigned char _sobuf[BUFSIZ+8];
1115 #else
1116 char _sobuf[BUFSIZ];
1117 #endif
1119 #ifdef HAVE_LTCHARS
1120 static struct ltchars new_ltchars = {-1,-1,-1,-1,-1,-1};
1121 #endif
1122 #ifdef HAVE_TCHARS
1123 static struct tchars new_tchars = {-1,-1,-1,-1,-1,-1};
1124 #endif
1126 /* Initialize the terminal mode on all tty devices that are currently
1127 open. */
1129 void
1130 init_all_sys_modes (void)
1132 struct tty_display_info *tty;
1133 for (tty = tty_list; tty; tty = tty->next)
1134 init_sys_modes (tty);
1137 /* Initialize the terminal mode on the given tty device. */
1139 void
1140 init_sys_modes (tty_out)
1141 struct tty_display_info *tty_out;
1143 struct emacs_tty tty;
1145 Vtty_erase_char = Qnil;
1147 if (noninteractive)
1148 return;
1150 if (!tty_out->output)
1151 return; /* The tty is suspended. */
1153 #ifdef BSD_PGRPS
1154 #if 0
1155 /* read_socket_hook is not global anymore. I think doing this
1156 unconditionally will not cause any problems. */
1157 if (! read_socket_hook && EQ (Vinitial_window_system, Qnil))
1158 #endif
1159 narrow_foreground_group (fileno (tty_out->input));
1160 #endif
1162 if (! tty_out->old_tty)
1163 tty_out->old_tty = (struct emacs_tty *) xmalloc (sizeof (struct emacs_tty));
1165 EMACS_GET_TTY (fileno (tty_out->input), tty_out->old_tty);
1167 tty = *tty_out->old_tty;
1169 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
1170 XSETINT (Vtty_erase_char, tty.main.c_cc[VERASE]);
1172 tty.main.c_iflag |= (IGNBRK); /* Ignore break condition */
1173 tty.main.c_iflag &= ~ICRNL; /* Disable map of CR to NL on input */
1174 #ifdef INLCR /* I'm just being cautious,
1175 since I can't check how widespread INLCR is--rms. */
1176 tty.main.c_iflag &= ~INLCR; /* Disable map of NL to CR on input */
1177 #endif
1178 #ifdef ISTRIP
1179 tty.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
1180 #endif
1181 tty.main.c_lflag &= ~ECHO; /* Disable echo */
1182 tty.main.c_lflag &= ~ICANON; /* Disable erase/kill processing */
1183 #ifdef IEXTEN
1184 tty.main.c_lflag &= ~IEXTEN; /* Disable other editing characters. */
1185 #endif
1186 tty.main.c_lflag |= ISIG; /* Enable signals */
1187 if (tty_out->flow_control)
1189 tty.main.c_iflag |= IXON; /* Enable start/stop output control */
1190 #ifdef IXANY
1191 tty.main.c_iflag &= ~IXANY;
1192 #endif /* IXANY */
1194 else
1195 tty.main.c_iflag &= ~IXON; /* Disable start/stop output control */
1196 tty.main.c_oflag &= ~ONLCR; /* Disable map of NL to CR-NL
1197 on output */
1198 tty.main.c_oflag &= ~TAB3; /* Disable tab expansion */
1199 #ifdef CS8
1200 if (tty_out->meta_key)
1202 tty.main.c_cflag |= CS8; /* allow 8th bit on input */
1203 tty.main.c_cflag &= ~PARENB;/* Don't check parity */
1205 #endif
1206 if (tty_out->input == stdin)
1208 tty.main.c_cc[VINTR] = quit_char; /* C-g (usually) gives SIGINT */
1209 /* Set up C-g for both SIGQUIT and SIGINT.
1210 We don't know which we will get, but we handle both alike
1211 so which one it really gives us does not matter. */
1212 tty.main.c_cc[VQUIT] = quit_char;
1214 else
1216 /* We normally don't get interrupt or quit signals from tty
1217 devices other than our controlling terminal; therefore,
1218 we must handle C-g as normal input. Unfortunately, this
1219 means that the interrupt and quit feature must be
1220 disabled on secondary ttys, or we would not even see the
1221 keypress.
1223 Note that even though emacsclient could have special code
1224 to pass SIGINT to Emacs, we should _not_ enable
1225 interrupt/quit keys for emacsclient frames. This means
1226 that we can't break out of loops in C code from a
1227 secondary tty frame, but we can always decide what
1228 display the C-g came from, which is more important from a
1229 usability point of view. (Consider the case when two
1230 people work together using the same Emacs instance.) */
1231 tty.main.c_cc[VINTR] = CDISABLE;
1232 tty.main.c_cc[VQUIT] = CDISABLE;
1234 tty.main.c_cc[VMIN] = 1; /* Input should wait for at least 1 char */
1235 tty.main.c_cc[VTIME] = 0; /* no matter how long that takes. */
1236 #ifdef VSWTCH
1237 tty.main.c_cc[VSWTCH] = CDISABLE; /* Turn off shell layering use
1238 of C-z */
1239 #endif /* VSWTCH */
1241 #if defined (__mips__) || defined (HAVE_TCATTR)
1242 #ifdef VSUSP
1243 tty.main.c_cc[VSUSP] = CDISABLE; /* Turn off mips handling of C-z. */
1244 #endif /* VSUSP */
1245 #ifdef V_DSUSP
1246 tty.main.c_cc[V_DSUSP] = CDISABLE; /* Turn off mips handling of C-y. */
1247 #endif /* V_DSUSP */
1248 #ifdef VDSUSP /* Some systems have VDSUSP, some have V_DSUSP. */
1249 tty.main.c_cc[VDSUSP] = CDISABLE;
1250 #endif /* VDSUSP */
1251 #ifdef VLNEXT
1252 tty.main.c_cc[VLNEXT] = CDISABLE;
1253 #endif /* VLNEXT */
1254 #ifdef VREPRINT
1255 tty.main.c_cc[VREPRINT] = CDISABLE;
1256 #endif /* VREPRINT */
1257 #ifdef VWERASE
1258 tty.main.c_cc[VWERASE] = CDISABLE;
1259 #endif /* VWERASE */
1260 #ifdef VDISCARD
1261 tty.main.c_cc[VDISCARD] = CDISABLE;
1262 #endif /* VDISCARD */
1264 if (tty_out->flow_control)
1266 #ifdef VSTART
1267 tty.main.c_cc[VSTART] = '\021';
1268 #endif /* VSTART */
1269 #ifdef VSTOP
1270 tty.main.c_cc[VSTOP] = '\023';
1271 #endif /* VSTOP */
1273 else
1275 #ifdef VSTART
1276 tty.main.c_cc[VSTART] = CDISABLE;
1277 #endif /* VSTART */
1278 #ifdef VSTOP
1279 tty.main.c_cc[VSTOP] = CDISABLE;
1280 #endif /* VSTOP */
1282 #endif /* mips or HAVE_TCATTR */
1284 #ifdef AIX
1285 #ifndef IBMR2AIX
1286 /* AIX enhanced edit loses NULs, so disable it. */
1287 tty.main.c_line = 0;
1288 tty.main.c_iflag &= ~ASCEDIT;
1289 #else
1290 tty.main.c_cc[VSTRT] = CDISABLE;
1291 tty.main.c_cc[VSTOP] = CDISABLE;
1292 tty.main.c_cc[VSUSP] = CDISABLE;
1293 tty.main.c_cc[VDSUSP] = CDISABLE;
1294 #endif /* IBMR2AIX */
1295 if (tty_out->flow_control)
1297 #ifdef VSTART
1298 tty.main.c_cc[VSTART] = '\021';
1299 #endif /* VSTART */
1300 #ifdef VSTOP
1301 tty.main.c_cc[VSTOP] = '\023';
1302 #endif /* VSTOP */
1304 /* Also, PTY overloads NUL and BREAK.
1305 don't ignore break, but don't signal either, so it looks like NUL.
1306 This really serves a purpose only if running in an XTERM window
1307 or via TELNET or the like, but does no harm elsewhere. */
1308 tty.main.c_iflag &= ~IGNBRK;
1309 tty.main.c_iflag &= ~BRKINT;
1310 #endif
1311 #else /* if not HAVE_TERMIO */
1312 #ifndef DOS_NT
1313 XSETINT (Vtty_erase_char, tty.main.sg_erase);
1314 tty.main.sg_flags &= ~(ECHO | CRMOD | XTABS);
1315 if (meta_key)
1316 tty.main.sg_flags |= ANYP;
1317 tty.main.sg_flags |= interrupt_input ? RAW : CBREAK;
1318 #endif /* not DOS_NT */
1319 #endif /* not HAVE_TERMIO */
1321 /* If going to use CBREAK mode, we must request C-g to interrupt
1322 and turn off start and stop chars, etc. If not going to use
1323 CBREAK mode, do this anyway so as to turn off local flow
1324 control for user coming over network on 4.2; in this case,
1325 only t_stopc and t_startc really matter. */
1326 #ifndef HAVE_TERMIO
1327 #ifdef HAVE_TCHARS
1328 /* Note: if not using CBREAK mode, it makes no difference how we
1329 set this */
1330 tty.tchars = new_tchars;
1331 tty.tchars.t_intrc = quit_char;
1332 if (tty_out->flow_control)
1334 tty.tchars.t_startc = '\021';
1335 tty.tchars.t_stopc = '\023';
1338 tty.lmode = LDECCTQ | LLITOUT | LPASS8 | LNOFLSH | tty_out->old_tty.lmode;
1340 #endif /* HAVE_TCHARS */
1341 #endif /* not HAVE_TERMIO */
1343 #ifdef HAVE_LTCHARS
1344 tty.ltchars = new_ltchars;
1345 #endif /* HAVE_LTCHARS */
1346 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
1347 if (!tty_out->term_initted)
1348 internal_terminal_init ();
1349 dos_ttraw (tty_out);
1350 #endif
1352 EMACS_SET_TTY (fileno (tty_out->input), &tty, 0);
1354 /* This code added to insure that, if flow-control is not to be used,
1355 we have an unlocked terminal at the start. */
1357 #ifdef TCXONC
1358 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TCXONC, 1);
1359 #endif
1360 #ifdef TIOCSTART
1361 if (!tty_out->flow_control) ioctl (fileno (tty_out->input), TIOCSTART, 0);
1362 #endif
1364 #if defined (HAVE_TERMIOS) || defined (HPUX)
1365 #ifdef TCOON
1366 if (!tty_out->flow_control) tcflow (fileno (tty_out->input), TCOON);
1367 #endif
1368 #endif
1370 #ifdef F_SETFL
1371 #ifdef F_GETOWN /* F_SETFL does not imply existence of F_GETOWN */
1372 if (interrupt_input)
1374 old_fcntl_owner[fileno (tty_out->input)] =
1375 fcntl (fileno (tty_out->input), F_GETOWN, 0);
1376 fcntl (fileno (tty_out->input), F_SETOWN, getpid ());
1377 init_sigio (fileno (tty_out->input));
1378 #ifdef HAVE_GPM
1379 if (gpm_tty == tty_out)
1381 /* Arrange for mouse events to give us SIGIO signals. */
1382 fcntl (gpm_fd, F_SETOWN, getpid ());
1383 fcntl (gpm_fd, F_SETFL, fcntl (gpm_fd, F_GETFL, 0) | O_NONBLOCK);
1384 init_sigio (gpm_fd);
1386 #endif /* HAVE_GPM */
1388 #endif /* F_GETOWN */
1389 #endif /* F_SETFL */
1391 #ifdef _IOFBF
1392 /* This symbol is defined on recent USG systems.
1393 Someone says without this call USG won't really buffer the file
1394 even with a call to setbuf. */
1395 setvbuf (tty_out->output, (char *) _sobuf, _IOFBF, sizeof _sobuf);
1396 #else
1397 setbuf (tty_out->output, (char *) _sobuf);
1398 #endif
1400 if (tty_out->terminal->set_terminal_modes_hook)
1401 tty_out->terminal->set_terminal_modes_hook (tty_out->terminal);
1403 if (!tty_out->term_initted)
1405 Lisp_Object tail, frame;
1406 FOR_EACH_FRAME (tail, frame)
1408 /* XXX This needs to be revised. */
1409 if (FRAME_TERMCAP_P (XFRAME (frame))
1410 && FRAME_TTY (XFRAME (frame)) == tty_out)
1411 init_frame_faces (XFRAME (frame));
1415 if (tty_out->term_initted && no_redraw_on_reenter)
1417 /* XXX This seems wrong on multi-tty. */
1418 if (display_completed)
1419 direct_output_forward_char (0);
1421 else
1423 Lisp_Object tail, frame;
1424 frame_garbaged = 1;
1425 FOR_EACH_FRAME (tail, frame)
1427 if ((FRAME_TERMCAP_P (XFRAME (frame))
1428 || FRAME_MSDOS_P (XFRAME (frame)))
1429 && FRAME_TTY (XFRAME (frame)) == tty_out)
1430 FRAME_GARBAGED_P (XFRAME (frame)) = 1;
1434 tty_out->term_initted = 1;
1437 /* Return nonzero if safe to use tabs in output.
1438 At the time this is called, init_sys_modes has not been done yet. */
1441 tabs_safe_p (int fd)
1443 struct emacs_tty etty;
1445 EMACS_GET_TTY (fd, &etty);
1446 return EMACS_TTY_TABS_OK (&etty);
1449 /* Get terminal size from system.
1450 Store number of lines into *HEIGHTP and width into *WIDTHP.
1451 We store 0 if there's no valid information. */
1453 void
1454 get_tty_size (int fd, int *widthp, int *heightp)
1457 #ifdef TIOCGWINSZ
1459 /* BSD-style. */
1460 struct winsize size;
1462 if (ioctl (fd, TIOCGWINSZ, &size) == -1)
1463 *widthp = *heightp = 0;
1464 else
1466 *widthp = size.ws_col;
1467 *heightp = size.ws_row;
1470 #else
1471 #ifdef TIOCGSIZE
1473 /* SunOS - style. */
1474 struct ttysize size;
1476 if (ioctl (fd, TIOCGSIZE, &size) == -1)
1477 *widthp = *heightp = 0;
1478 else
1480 *widthp = size.ts_cols;
1481 *heightp = size.ts_lines;
1484 #else
1485 #ifdef MSDOS
1486 *widthp = ScreenCols ();
1487 *heightp = ScreenRows ();
1488 #else /* system doesn't know size */
1489 *widthp = 0;
1490 *heightp = 0;
1491 #endif
1492 #endif /* not SunOS-style */
1493 #endif /* not BSD-style */
1496 /* Set the logical window size associated with descriptor FD
1497 to HEIGHT and WIDTH. This is used mainly with ptys. */
1500 set_window_size (fd, height, width)
1501 int fd, height, width;
1503 #ifdef TIOCSWINSZ
1505 /* BSD-style. */
1506 struct winsize size;
1507 size.ws_row = height;
1508 size.ws_col = width;
1510 if (ioctl (fd, TIOCSWINSZ, &size) == -1)
1511 return 0; /* error */
1512 else
1513 return 1;
1515 #else
1516 #ifdef TIOCSSIZE
1518 /* SunOS - style. */
1519 struct ttysize size;
1520 size.ts_lines = height;
1521 size.ts_cols = width;
1523 if (ioctl (fd, TIOCGSIZE, &size) == -1)
1524 return 0;
1525 else
1526 return 1;
1527 #else
1528 return -1;
1529 #endif /* not SunOS-style */
1530 #endif /* not BSD-style */
1535 /* Prepare all terminal devices for exiting Emacs. */
1537 void
1538 reset_all_sys_modes (void)
1540 struct tty_display_info *tty;
1541 for (tty = tty_list; tty; tty = tty->next)
1542 reset_sys_modes (tty);
1545 /* Prepare the terminal for closing it; move the cursor to the
1546 bottom of the frame, turn off interrupt-driven I/O, etc. */
1548 void
1549 reset_sys_modes (tty_out)
1550 struct tty_display_info *tty_out;
1552 if (noninteractive)
1554 fflush (stdout);
1555 return;
1557 if (!tty_out->term_initted)
1558 return;
1560 if (!tty_out->output)
1561 return; /* The tty is suspended. */
1563 /* Go to and clear the last line of the terminal. */
1565 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
1567 /* Code adapted from tty_clear_end_of_line. */
1568 if (tty_out->TS_clr_line)
1570 emacs_tputs (tty_out, tty_out->TS_clr_line, 1, cmputc);
1572 else
1573 { /* have to do it the hard way */
1574 int i;
1575 tty_turn_off_insert (tty_out);
1577 for (i = curX (tty_out); i < FrameCols (tty_out) - 1; i++)
1579 fputc (' ', tty_out->output);
1583 cmgoto (tty_out, FrameRows (tty_out) - 1, 0);
1584 fflush (tty_out->output);
1586 if (tty_out->terminal->reset_terminal_modes_hook)
1587 tty_out->terminal->reset_terminal_modes_hook (tty_out->terminal);
1589 #ifdef BSD_SYSTEM
1590 /* Avoid possible loss of output when changing terminal modes. */
1591 fsync (fileno (tty_out->output));
1592 #endif
1594 #ifdef F_SETFL
1595 #ifdef F_SETOWN /* F_SETFL does not imply existence of F_SETOWN */
1596 if (interrupt_input)
1598 reset_sigio (fileno (tty_out->input));
1599 fcntl (fileno (tty_out->input), F_SETOWN,
1600 old_fcntl_owner[fileno (tty_out->input)]);
1602 #endif /* F_SETOWN */
1603 #ifdef O_NDELAY
1604 fcntl (fileno (tty_out->input), F_SETFL,
1605 fcntl (fileno (tty_out->input), F_GETFL, 0) & ~O_NDELAY);
1606 #endif
1607 #endif /* F_SETFL */
1609 if (tty_out->old_tty)
1610 while (EMACS_SET_TTY (fileno (tty_out->input),
1611 tty_out->old_tty, 0) < 0 && errno == EINTR)
1614 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
1615 dos_ttcooked ();
1616 #endif
1618 #ifdef BSD_PGRPS
1619 widen_foreground_group (fileno (tty_out->input));
1620 #endif
1623 #ifdef HAVE_PTYS
1625 /* Set up the proper status flags for use of a pty. */
1627 void
1628 setup_pty (fd)
1629 int fd;
1631 /* I'm told that TOICREMOTE does not mean control chars
1632 "can't be sent" but rather that they don't have
1633 input-editing or signaling effects.
1634 That should be good, because we have other ways
1635 to do those things in Emacs.
1636 However, telnet mode seems not to work on 4.2.
1637 So TIOCREMOTE is turned off now. */
1639 /* Under hp-ux, if TIOCREMOTE is turned on, some calls
1640 will hang. In particular, the "timeout" feature (which
1641 causes a read to return if there is no data available)
1642 does this. Also it is known that telnet mode will hang
1643 in such a way that Emacs must be stopped (perhaps this
1644 is the same problem).
1646 If TIOCREMOTE is turned off, then there is a bug in
1647 hp-ux which sometimes loses data. Apparently the
1648 code which blocks the master process when the internal
1649 buffer fills up does not work. Other than this,
1650 though, everything else seems to work fine.
1652 Since the latter lossage is more benign, we may as well
1653 lose that way. -- cph */
1654 #ifdef FIONBIO
1655 #if defined(UNIX98_PTYS)
1657 int on = 1;
1658 ioctl (fd, FIONBIO, &on);
1660 #endif
1661 #endif
1663 #endif /* HAVE_PTYS */
1665 #if !defined(CANNOT_DUMP) || !defined(SYSTEM_MALLOC)
1666 /* Some systems that cannot dump also cannot implement these. */
1669 * Return the address of the start of the text segment prior to
1670 * doing an unexec. After unexec the return value is undefined.
1671 * See crt0.c for further explanation and _start.
1675 #if !(defined (__NetBSD__) && defined (__ELF__))
1676 #ifndef HAVE_TEXT_START
1677 char *
1678 start_of_text ()
1680 #ifdef TEXT_START
1681 return ((char *) TEXT_START);
1682 #else
1683 extern int _start ();
1684 return ((char *) _start);
1685 #endif /* TEXT_START */
1687 #endif /* not HAVE_TEXT_START */
1688 #endif
1691 * Return the address of the start of the data segment prior to
1692 * doing an unexec. After unexec the return value is undefined.
1693 * See crt0.c for further information and definition of data_start.
1695 * Apparently, on BSD systems this is etext at startup. On
1696 * USG systems (swapping) this is highly mmu dependent and
1697 * is also dependent on whether or not the program is running
1698 * with shared text. Generally there is a (possibly large)
1699 * gap between end of text and start of data with shared text.
1701 * On Uniplus+ systems with shared text, data starts at a
1702 * fixed address. Each port (from a given oem) is generally
1703 * different, and the specific value of the start of data can
1704 * be obtained via the UniPlus+ specific "uvar" system call,
1705 * however the method outlined in crt0.c seems to be more portable.
1707 * Probably what will have to happen when a USG unexec is available,
1708 * at least on UniPlus, is temacs will have to be made unshared so
1709 * that text and data are contiguous. Then once loadup is complete,
1710 * unexec will produce a shared executable where the data can be
1711 * at the normal shared text boundary and the startofdata variable
1712 * will be patched by unexec to the correct value.
1716 #ifndef start_of_data
1717 char *
1718 start_of_data ()
1720 #ifdef DATA_START
1721 return ((char *) DATA_START);
1722 #else
1723 #ifdef ORDINARY_LINK
1725 * This is a hack. Since we're not linking crt0.c or pre_crt0.c,
1726 * data_start isn't defined. We take the address of environ, which
1727 * is known to live at or near the start of the system crt0.c, and
1728 * we don't sweat the handful of bytes that might lose.
1730 extern char **environ;
1732 return ((char *) &environ);
1733 #else
1734 extern int data_start;
1735 return ((char *) &data_start);
1736 #endif /* ORDINARY_LINK */
1737 #endif /* DATA_START */
1739 #endif /* start_of_data */
1740 #endif /* NEED_STARTS (not CANNOT_DUMP or not SYSTEM_MALLOC) */
1742 /* init_system_name sets up the string for the Lisp function
1743 system-name to return. */
1745 extern Lisp_Object Vsystem_name;
1747 #ifdef HAVE_SOCKETS
1748 #include <sys/socket.h>
1749 #include <netdb.h>
1750 #endif /* HAVE_SOCKETS */
1752 #ifdef TRY_AGAIN
1753 #ifndef HAVE_H_ERRNO
1754 extern int h_errno;
1755 #endif
1756 #endif /* TRY_AGAIN */
1758 void
1759 init_system_name ()
1761 #ifndef HAVE_GETHOSTNAME
1762 struct utsname uts;
1763 uname (&uts);
1764 Vsystem_name = build_string (uts.nodename);
1765 #else /* HAVE_GETHOSTNAME */
1766 unsigned int hostname_size = 256;
1767 char *hostname = (char *) alloca (hostname_size);
1769 /* Try to get the host name; if the buffer is too short, try
1770 again. Apparently, the only indication gethostname gives of
1771 whether the buffer was large enough is the presence or absence
1772 of a '\0' in the string. Eech. */
1773 for (;;)
1775 gethostname (hostname, hostname_size - 1);
1776 hostname[hostname_size - 1] = '\0';
1778 /* Was the buffer large enough for the '\0'? */
1779 if (strlen (hostname) < hostname_size - 1)
1780 break;
1782 hostname_size <<= 1;
1783 hostname = (char *) alloca (hostname_size);
1785 #ifdef HAVE_SOCKETS
1786 /* Turn the hostname into the official, fully-qualified hostname.
1787 Don't do this if we're going to dump; this can confuse system
1788 libraries on some machines and make the dumped emacs core dump. */
1789 #ifndef CANNOT_DUMP
1790 if (initialized)
1791 #endif /* not CANNOT_DUMP */
1792 if (! index (hostname, '.'))
1794 int count;
1795 #ifdef HAVE_GETADDRINFO
1796 struct addrinfo *res;
1797 struct addrinfo hints;
1798 int ret;
1800 memset (&hints, 0, sizeof(hints));
1801 hints.ai_socktype = SOCK_STREAM;
1802 hints.ai_flags = AI_CANONNAME;
1804 for (count = 0;; count++)
1806 if ((ret = getaddrinfo (hostname, NULL, &hints, &res)) == 0
1807 || ret != EAI_AGAIN)
1808 break;
1810 if (count >= 5)
1811 break;
1812 Fsleep_for (make_number (1), Qnil);
1815 if (ret == 0)
1817 struct addrinfo *it = res;
1818 while (it)
1820 char *fqdn = it->ai_canonname;
1821 if (fqdn && index (fqdn, '.')
1822 && strcmp (fqdn, "localhost.localdomain") != 0)
1823 break;
1824 it = it->ai_next;
1826 if (it)
1828 hostname = alloca (strlen (it->ai_canonname) + 1);
1829 strcpy (hostname, it->ai_canonname);
1831 freeaddrinfo (res);
1833 #else /* !HAVE_GETADDRINFO */
1834 struct hostent *hp;
1835 for (count = 0;; count++)
1838 #ifdef TRY_AGAIN
1839 h_errno = 0;
1840 #endif
1841 hp = gethostbyname (hostname);
1842 #ifdef TRY_AGAIN
1843 if (! (hp == 0 && h_errno == TRY_AGAIN))
1844 #endif
1846 break;
1848 if (count >= 5)
1849 break;
1850 Fsleep_for (make_number (1), Qnil);
1853 if (hp)
1855 char *fqdn = (char *) hp->h_name;
1857 if (!index (fqdn, '.'))
1859 /* We still don't have a fully qualified domain name.
1860 Try to find one in the list of alternate names */
1861 char **alias = hp->h_aliases;
1862 while (*alias
1863 && (!index (*alias, '.')
1864 || !strcmp (*alias, "localhost.localdomain")))
1865 alias++;
1866 if (*alias)
1867 fqdn = *alias;
1869 hostname = fqdn;
1871 #endif /* !HAVE_GETADDRINFO */
1873 #endif /* HAVE_SOCKETS */
1874 Vsystem_name = build_string (hostname);
1875 #endif /* HAVE_GETHOSTNAME */
1877 unsigned char *p;
1878 for (p = SDATA (Vsystem_name); *p; p++)
1879 if (*p == ' ' || *p == '\t')
1880 *p = '-';
1884 #ifndef MSDOS
1885 #if !defined (HAVE_SELECT)
1887 #include "sysselect.h"
1888 #undef select
1890 #if defined (HAVE_X_WINDOWS) && !defined (HAVE_SELECT)
1891 /* Cause explanatory error message at compile time,
1892 since the select emulation is not good enough for X. */
1893 int *x = &x_windows_lose_if_no_select_system_call;
1894 #endif
1896 /* Emulate as much as select as is possible under 4.1 and needed by Gnu Emacs
1897 * Only checks read descriptors.
1899 /* How long to wait between checking fds in select */
1900 #define SELECT_PAUSE 1
1901 int select_alarmed;
1903 /* For longjmp'ing back to read_input_waiting. */
1905 jmp_buf read_alarm_throw;
1907 /* Nonzero if the alarm signal should throw back to read_input_waiting.
1908 The read_socket_hook function sets this to 1 while it is waiting. */
1910 int read_alarm_should_throw;
1912 SIGTYPE
1913 select_alarm ()
1915 select_alarmed = 1;
1916 signal (SIGALRM, SIG_IGN);
1917 SIGNAL_THREAD_CHECK (SIGALRM);
1918 if (read_alarm_should_throw)
1919 longjmp (read_alarm_throw, 1);
1922 #ifndef WINDOWSNT
1923 /* Only rfds are checked. */
1925 sys_select (nfds, rfds, wfds, efds, timeout)
1926 int nfds;
1927 SELECT_TYPE *rfds, *wfds, *efds;
1928 EMACS_TIME *timeout;
1930 /* XXX This needs to be updated for multi-tty support. Is there
1931 anybody who needs to emulate select these days? */
1932 int ravail = 0;
1933 SELECT_TYPE orfds;
1934 int timeoutval;
1935 int *local_timeout;
1936 extern int proc_buffered_char[];
1937 #ifndef subprocesses
1938 int process_tick = 0, update_tick = 0;
1939 #else
1940 extern int process_tick, update_tick;
1941 #endif
1942 unsigned char buf;
1944 #if defined (HAVE_SELECT) && defined (HAVE_X_WINDOWS)
1945 /* If we're using X, then the native select will work; we only need the
1946 emulation for non-X usage. */
1947 if (!NILP (Vinitial_window_system))
1948 return select (nfds, rfds, wfds, efds, timeout);
1949 #endif
1950 timeoutval = timeout ? EMACS_SECS (*timeout) : 100000;
1951 local_timeout = &timeoutval;
1952 FD_ZERO (&orfds);
1953 if (rfds)
1955 orfds = *rfds;
1956 FD_ZERO (rfds);
1958 if (wfds)
1959 FD_ZERO (wfds);
1960 if (efds)
1961 FD_ZERO (efds);
1963 /* If we are looking only for the terminal, with no timeout,
1964 just read it and wait -- that's more efficient. */
1965 if (*local_timeout == 100000 && process_tick == update_tick
1966 && FD_ISSET (0, &orfds))
1968 int fd;
1969 for (fd = 1; fd < nfds; ++fd)
1970 if (FD_ISSET (fd, &orfds))
1971 goto hardway;
1972 if (! detect_input_pending ())
1973 read_input_waiting ();
1974 FD_SET (0, rfds);
1975 return 1;
1978 hardway:
1979 /* Once a second, till the timer expires, check all the flagged read
1980 * descriptors to see if any input is available. If there is some then
1981 * set the corresponding bit in the return copy of rfds.
1983 while (1)
1985 register int to_check, fd;
1987 if (rfds)
1989 for (to_check = nfds, fd = 0; --to_check >= 0; fd++)
1991 if (FD_ISSET (fd, &orfds))
1993 int avail = 0, status = 0;
1995 if (fd == 0)
1996 avail = detect_input_pending (); /* Special keyboard handler */
1997 else
1999 #ifdef FIONREAD
2000 status = ioctl (fd, FIONREAD, &avail);
2001 #else /* no FIONREAD */
2002 /* Hoping it will return -1 if nothing available
2003 or 0 if all 0 chars requested are read. */
2004 if (proc_buffered_char[fd] >= 0)
2005 avail = 1;
2006 else
2008 avail = read (fd, &buf, 1);
2009 if (avail > 0)
2010 proc_buffered_char[fd] = buf;
2012 #endif /* no FIONREAD */
2014 if (status >= 0 && avail > 0)
2016 FD_SET (fd, rfds);
2017 ravail++;
2022 if (*local_timeout == 0 || ravail != 0 || process_tick != update_tick)
2023 break;
2025 turn_on_atimers (0);
2026 signal (SIGALRM, select_alarm);
2027 select_alarmed = 0;
2028 alarm (SELECT_PAUSE);
2030 /* Wait for a SIGALRM (or maybe a SIGTINT) */
2031 while (select_alarmed == 0 && *local_timeout != 0
2032 && process_tick == update_tick)
2034 /* If we are interested in terminal input,
2035 wait by reading the terminal.
2036 That makes instant wakeup for terminal input at least. */
2037 if (FD_ISSET (0, &orfds))
2039 read_input_waiting ();
2040 if (detect_input_pending ())
2041 select_alarmed = 1;
2043 else
2044 pause ();
2046 (*local_timeout) -= SELECT_PAUSE;
2048 /* Reset the old alarm if there was one. */
2049 turn_on_atimers (1);
2051 if (*local_timeout == 0) /* Stop on timer being cleared */
2052 break;
2054 return ravail;
2056 #endif /* not WINDOWSNT */
2058 /* Read keyboard input into the standard buffer,
2059 waiting for at least one character. */
2061 void
2062 read_input_waiting ()
2064 /* XXX This needs to be updated for multi-tty support. Is there
2065 anybody who needs to emulate select these days? */
2066 int nread, i;
2067 extern int quit_char;
2069 if (read_socket_hook)
2071 struct input_event hold_quit;
2073 EVENT_INIT (hold_quit);
2074 hold_quit.kind = NO_EVENT;
2076 read_alarm_should_throw = 0;
2077 if (! setjmp (read_alarm_throw))
2078 nread = (*read_socket_hook) (0, 1, &hold_quit);
2079 else
2080 nread = -1;
2082 if (hold_quit.kind != NO_EVENT)
2083 kbd_buffer_store_event (&hold_quit);
2085 else
2087 struct input_event e;
2088 char buf[3];
2089 nread = read (fileno (stdin), buf, 1);
2090 EVENT_INIT (e);
2092 /* Scan the chars for C-g and store them in kbd_buffer. */
2093 e.kind = ASCII_KEYSTROKE_EVENT;
2094 e.frame_or_window = selected_frame;
2095 e.modifiers = 0;
2096 for (i = 0; i < nread; i++)
2098 /* Convert chars > 0177 to meta events if desired.
2099 We do this under the same conditions that read_avail_input does. */
2100 if (read_socket_hook == 0)
2102 /* If the user says she has a meta key, then believe her. */
2103 if (meta_key == 1 && (buf[i] & 0x80))
2104 e.modifiers = meta_modifier;
2105 if (meta_key != 2)
2106 buf[i] &= ~0x80;
2109 XSETINT (e.code, buf[i]);
2110 kbd_buffer_store_event (&e);
2111 /* Don't look at input that follows a C-g too closely.
2112 This reduces lossage due to autorepeat on C-g. */
2113 if (buf[i] == quit_char)
2114 break;
2119 #if !defined (HAVE_SELECT)
2120 #define select sys_select
2121 #endif
2123 #endif /* not HAVE_SELECT */
2124 #endif /* not MSDOS */
2126 /* POSIX signals support - DJB */
2127 /* Anyone with POSIX signals should have ANSI C declarations */
2129 #ifdef POSIX_SIGNALS
2131 sigset_t empty_mask, full_mask;
2133 signal_handler_t
2134 sys_signal (int signal_number, signal_handler_t action)
2136 struct sigaction new_action, old_action;
2137 sigemptyset (&new_action.sa_mask);
2138 new_action.sa_handler = action;
2139 new_action.sa_flags = 0;
2140 #if defined (SA_RESTART)
2141 /* Emacs mostly works better with restartable system services. If this
2142 flag exists, we probably want to turn it on here.
2143 However, on some systems this resets the timeout of `select'
2144 which means that `select' never finishes if it keeps getting signals.
2145 BROKEN_SA_RESTART is defined on those systems. */
2146 /* It's not clear why the comment above says "mostly works better". --Stef
2147 When SYNC_INPUT is set, we don't want SA_RESTART because we need to poll
2148 for pending input so we need long-running syscalls to be interrupted
2149 after a signal that sets the interrupt_input_pending flag. */
2150 /* Non-interactive keyboard input goes through stdio, where we always
2151 want restartable system calls. */
2152 # if defined (BROKEN_SA_RESTART) || defined(SYNC_INPUT)
2153 if (noninteractive)
2154 # endif
2155 new_action.sa_flags = SA_RESTART;
2156 #endif
2157 sigaction (signal_number, &new_action, &old_action);
2158 return (old_action.sa_handler);
2161 #ifndef __GNUC__
2162 /* If we're compiling with GCC, we don't need this function, since it
2163 can be written as a macro. */
2164 sigset_t
2165 sys_sigmask (int sig)
2167 sigset_t mask;
2168 sigemptyset (&mask);
2169 sigaddset (&mask, sig);
2170 return mask;
2172 #endif
2174 /* I'd like to have these guys return pointers to the mask storage in here,
2175 but there'd be trouble if the code was saving multiple masks. I'll be
2176 safe and pass the structure. It normally won't be more than 2 bytes
2177 anyhow. - DJB */
2179 sigset_t
2180 sys_sigblock (sigset_t new_mask)
2182 sigset_t old_mask;
2183 sigprocmask (SIG_BLOCK, &new_mask, &old_mask);
2184 return (old_mask);
2187 sigset_t
2188 sys_sigunblock (sigset_t new_mask)
2190 sigset_t old_mask;
2191 sigprocmask (SIG_UNBLOCK, &new_mask, &old_mask);
2192 return (old_mask);
2195 sigset_t
2196 sys_sigsetmask (sigset_t new_mask)
2198 sigset_t old_mask;
2199 sigprocmask (SIG_SETMASK, &new_mask, &old_mask);
2200 return (old_mask);
2203 #endif /* POSIX_SIGNALS */
2205 #if !defined HAVE_STRSIGNAL && !HAVE_DECL_SYS_SIGLIST
2206 static char *my_sys_siglist[NSIG];
2207 # ifdef sys_siglist
2208 # undef sys_siglist
2209 # endif
2210 # define sys_siglist my_sys_siglist
2211 #endif
2213 void
2214 init_signals ()
2216 #ifdef POSIX_SIGNALS
2217 sigemptyset (&empty_mask);
2218 sigfillset (&full_mask);
2219 #endif
2221 #if !defined HAVE_STRSIGNAL && !HAVE_DECL_SYS_SIGLIST
2222 if (! initialized)
2224 # ifdef SIGABRT
2225 sys_siglist[SIGABRT] = "Aborted";
2226 # endif
2227 # ifdef SIGAIO
2228 sys_siglist[SIGAIO] = "LAN I/O interrupt";
2229 # endif
2230 # ifdef SIGALRM
2231 sys_siglist[SIGALRM] = "Alarm clock";
2232 # endif
2233 # ifdef SIGBUS
2234 sys_siglist[SIGBUS] = "Bus error";
2235 # endif
2236 # ifdef SIGCLD
2237 sys_siglist[SIGCLD] = "Child status changed";
2238 # endif
2239 # ifdef SIGCHLD
2240 sys_siglist[SIGCHLD] = "Child status changed";
2241 # endif
2242 # ifdef SIGCONT
2243 sys_siglist[SIGCONT] = "Continued";
2244 # endif
2245 # ifdef SIGDANGER
2246 sys_siglist[SIGDANGER] = "Swap space dangerously low";
2247 # endif
2248 # ifdef SIGDGNOTIFY
2249 sys_siglist[SIGDGNOTIFY] = "Notification message in queue";
2250 # endif
2251 # ifdef SIGEMT
2252 sys_siglist[SIGEMT] = "Emulation trap";
2253 # endif
2254 # ifdef SIGFPE
2255 sys_siglist[SIGFPE] = "Arithmetic exception";
2256 # endif
2257 # ifdef SIGFREEZE
2258 sys_siglist[SIGFREEZE] = "SIGFREEZE";
2259 # endif
2260 # ifdef SIGGRANT
2261 sys_siglist[SIGGRANT] = "Monitor mode granted";
2262 # endif
2263 # ifdef SIGHUP
2264 sys_siglist[SIGHUP] = "Hangup";
2265 # endif
2266 # ifdef SIGILL
2267 sys_siglist[SIGILL] = "Illegal instruction";
2268 # endif
2269 # ifdef SIGINT
2270 sys_siglist[SIGINT] = "Interrupt";
2271 # endif
2272 # ifdef SIGIO
2273 sys_siglist[SIGIO] = "I/O possible";
2274 # endif
2275 # ifdef SIGIOINT
2276 sys_siglist[SIGIOINT] = "I/O intervention required";
2277 # endif
2278 # ifdef SIGIOT
2279 sys_siglist[SIGIOT] = "IOT trap";
2280 # endif
2281 # ifdef SIGKILL
2282 sys_siglist[SIGKILL] = "Killed";
2283 # endif
2284 # ifdef SIGLOST
2285 sys_siglist[SIGLOST] = "Resource lost";
2286 # endif
2287 # ifdef SIGLWP
2288 sys_siglist[SIGLWP] = "SIGLWP";
2289 # endif
2290 # ifdef SIGMSG
2291 sys_siglist[SIGMSG] = "Monitor mode data available";
2292 # endif
2293 # ifdef SIGPHONE
2294 sys_siglist[SIGWIND] = "SIGPHONE";
2295 # endif
2296 # ifdef SIGPIPE
2297 sys_siglist[SIGPIPE] = "Broken pipe";
2298 # endif
2299 # ifdef SIGPOLL
2300 sys_siglist[SIGPOLL] = "Pollable event occurred";
2301 # endif
2302 # ifdef SIGPROF
2303 sys_siglist[SIGPROF] = "Profiling timer expired";
2304 # endif
2305 # ifdef SIGPTY
2306 sys_siglist[SIGPTY] = "PTY I/O interrupt";
2307 # endif
2308 # ifdef SIGPWR
2309 sys_siglist[SIGPWR] = "Power-fail restart";
2310 # endif
2311 # ifdef SIGQUIT
2312 sys_siglist[SIGQUIT] = "Quit";
2313 # endif
2314 # ifdef SIGRETRACT
2315 sys_siglist[SIGRETRACT] = "Need to relinguish monitor mode";
2316 # endif
2317 # ifdef SIGSAK
2318 sys_siglist[SIGSAK] = "Secure attention";
2319 # endif
2320 # ifdef SIGSEGV
2321 sys_siglist[SIGSEGV] = "Segmentation violation";
2322 # endif
2323 # ifdef SIGSOUND
2324 sys_siglist[SIGSOUND] = "Sound completed";
2325 # endif
2326 # ifdef SIGSTOP
2327 sys_siglist[SIGSTOP] = "Stopped (signal)";
2328 # endif
2329 # ifdef SIGSTP
2330 sys_siglist[SIGSTP] = "Stopped (user)";
2331 # endif
2332 # ifdef SIGSYS
2333 sys_siglist[SIGSYS] = "Bad argument to system call";
2334 # endif
2335 # ifdef SIGTERM
2336 sys_siglist[SIGTERM] = "Terminated";
2337 # endif
2338 # ifdef SIGTHAW
2339 sys_siglist[SIGTHAW] = "SIGTHAW";
2340 # endif
2341 # ifdef SIGTRAP
2342 sys_siglist[SIGTRAP] = "Trace/breakpoint trap";
2343 # endif
2344 # ifdef SIGTSTP
2345 sys_siglist[SIGTSTP] = "Stopped (user)";
2346 # endif
2347 # ifdef SIGTTIN
2348 sys_siglist[SIGTTIN] = "Stopped (tty input)";
2349 # endif
2350 # ifdef SIGTTOU
2351 sys_siglist[SIGTTOU] = "Stopped (tty output)";
2352 # endif
2353 # ifdef SIGURG
2354 sys_siglist[SIGURG] = "Urgent I/O condition";
2355 # endif
2356 # ifdef SIGUSR1
2357 sys_siglist[SIGUSR1] = "User defined signal 1";
2358 # endif
2359 # ifdef SIGUSR2
2360 sys_siglist[SIGUSR2] = "User defined signal 2";
2361 # endif
2362 # ifdef SIGVTALRM
2363 sys_siglist[SIGVTALRM] = "Virtual timer expired";
2364 # endif
2365 # ifdef SIGWAITING
2366 sys_siglist[SIGWAITING] = "Process's LWPs are blocked";
2367 # endif
2368 # ifdef SIGWINCH
2369 sys_siglist[SIGWINCH] = "Window size changed";
2370 # endif
2371 # ifdef SIGWIND
2372 sys_siglist[SIGWIND] = "SIGWIND";
2373 # endif
2374 # ifdef SIGXCPU
2375 sys_siglist[SIGXCPU] = "CPU time limit exceeded";
2376 # endif
2377 # ifdef SIGXFSZ
2378 sys_siglist[SIGXFSZ] = "File size limit exceeded";
2379 # endif
2381 #endif /* !defined HAVE_STRSIGNAL && !defined HAVE_DECL_SYS_SIGLIST */
2384 #ifndef HAVE_RANDOM
2385 #ifdef random
2386 #define HAVE_RANDOM
2387 #endif
2388 #endif
2390 /* Figure out how many bits the system's random number generator uses.
2391 `random' and `lrand48' are assumed to return 31 usable bits.
2392 BSD `rand' returns a 31 bit value but the low order bits are unusable;
2393 so we'll shift it and treat it like the 15-bit USG `rand'. */
2395 #ifndef RAND_BITS
2396 # ifdef HAVE_RANDOM
2397 # define RAND_BITS 31
2398 # else /* !HAVE_RANDOM */
2399 # ifdef HAVE_LRAND48
2400 # define RAND_BITS 31
2401 # define random lrand48
2402 # else /* !HAVE_LRAND48 */
2403 # define RAND_BITS 15
2404 # if RAND_MAX == 32767
2405 # define random rand
2406 # else /* RAND_MAX != 32767 */
2407 # if RAND_MAX == 2147483647
2408 # define random() (rand () >> 16)
2409 # else /* RAND_MAX != 2147483647 */
2410 # ifdef USG
2411 # define random rand
2412 # else
2413 # define random() (rand () >> 16)
2414 # endif /* !USG */
2415 # endif /* RAND_MAX != 2147483647 */
2416 # endif /* RAND_MAX != 32767 */
2417 # endif /* !HAVE_LRAND48 */
2418 # endif /* !HAVE_RANDOM */
2419 #endif /* !RAND_BITS */
2421 void
2422 seed_random (arg)
2423 long arg;
2425 #ifdef HAVE_RANDOM
2426 srandom ((unsigned int)arg);
2427 #else
2428 # ifdef HAVE_LRAND48
2429 srand48 (arg);
2430 # else
2431 srand ((unsigned int)arg);
2432 # endif
2433 #endif
2437 * Build a full Emacs-sized word out of whatever we've got.
2438 * This suffices even for a 64-bit architecture with a 15-bit rand.
2440 long
2441 get_random ()
2443 long val = random ();
2444 #if VALBITS > RAND_BITS
2445 val = (val << RAND_BITS) ^ random ();
2446 #if VALBITS > 2*RAND_BITS
2447 val = (val << RAND_BITS) ^ random ();
2448 #if VALBITS > 3*RAND_BITS
2449 val = (val << RAND_BITS) ^ random ();
2450 #if VALBITS > 4*RAND_BITS
2451 val = (val << RAND_BITS) ^ random ();
2452 #endif /* need at least 5 */
2453 #endif /* need at least 4 */
2454 #endif /* need at least 3 */
2455 #endif /* need at least 2 */
2456 return val & ((1L << VALBITS) - 1);
2459 #ifndef HAVE_STRERROR
2460 #ifndef WINDOWSNT
2461 char *
2462 strerror (errnum)
2463 int errnum;
2465 extern char *sys_errlist[];
2466 extern int sys_nerr;
2468 if (errnum >= 0 && errnum < sys_nerr)
2469 return sys_errlist[errnum];
2470 return (char *) "Unknown error";
2472 #endif /* not WINDOWSNT */
2473 #endif /* ! HAVE_STRERROR */
2476 emacs_open (path, oflag, mode)
2477 const char *path;
2478 int oflag, mode;
2480 register int rtnval;
2482 while ((rtnval = open (path, oflag, mode)) == -1
2483 && (errno == EINTR))
2484 QUIT;
2485 return (rtnval);
2489 emacs_close (fd)
2490 int fd;
2492 int did_retry = 0;
2493 register int rtnval;
2495 while ((rtnval = close (fd)) == -1
2496 && (errno == EINTR))
2497 did_retry = 1;
2499 /* If close is interrupted SunOS 4.1 may or may not have closed the
2500 file descriptor. If it did the second close will fail with
2501 errno = EBADF. That means we have succeeded. */
2502 if (rtnval == -1 && did_retry && errno == EBADF)
2503 return 0;
2505 return rtnval;
2509 emacs_read (fildes, buf, nbyte)
2510 int fildes;
2511 char *buf;
2512 unsigned int nbyte;
2514 register int rtnval;
2516 while ((rtnval = read (fildes, buf, nbyte)) == -1
2517 && (errno == EINTR))
2518 QUIT;
2519 return (rtnval);
2523 emacs_write (fildes, buf, nbyte)
2524 int fildes;
2525 const char *buf;
2526 unsigned int nbyte;
2528 register int rtnval, bytes_written;
2530 bytes_written = 0;
2532 while (nbyte > 0)
2534 rtnval = write (fildes, buf, nbyte);
2536 if (rtnval == -1)
2538 if (errno == EINTR)
2540 #ifdef SYNC_INPUT
2541 /* I originally used `QUIT' but that might causes files to
2542 be truncated if you hit C-g in the middle of it. --Stef */
2543 process_pending_signals ();
2544 #endif
2545 continue;
2547 else
2548 return (bytes_written ? bytes_written : -1);
2551 buf += rtnval;
2552 nbyte -= rtnval;
2553 bytes_written += rtnval;
2555 return (bytes_written);
2558 #ifdef USG
2560 * All of the following are for USG.
2562 * On USG systems the system calls are INTERRUPTIBLE by signals
2563 * that the user program has elected to catch. Thus the system call
2564 * must be retried in these cases. To handle this without massive
2565 * changes in the source code, we remap the standard system call names
2566 * to names for our own functions in sysdep.c that do the system call
2567 * with retries. Actually, for portability reasons, it is good
2568 * programming practice, as this example shows, to limit all actual
2569 * system calls to a single occurrence in the source. Sure, this
2570 * adds an extra level of function call overhead but it is almost
2571 * always negligible. Fred Fish, Unisoft Systems Inc.
2575 * Warning, this function may not duplicate 4.2 action properly
2576 * under error conditions.
2579 #ifndef MAXPATHLEN
2580 /* In 4.1, param.h fails to define this. */
2581 #define MAXPATHLEN 1024
2582 #endif
2584 #ifndef HAVE_GETWD
2586 char *
2587 getwd (pathname)
2588 char *pathname;
2590 char *npath, *spath;
2591 extern char *getcwd ();
2593 BLOCK_INPUT; /* getcwd uses malloc */
2594 spath = npath = getcwd ((char *) 0, MAXPATHLEN);
2595 if (spath == 0)
2597 UNBLOCK_INPUT;
2598 return spath;
2600 /* On Altos 3068, getcwd can return @hostname/dir, so discard
2601 up to first slash. Should be harmless on other systems. */
2602 while (*npath && *npath != '/')
2603 npath++;
2604 strcpy (pathname, npath);
2605 free (spath); /* getcwd uses malloc */
2606 UNBLOCK_INPUT;
2607 return pathname;
2610 #endif /* HAVE_GETWD */
2613 * Emulate rename using unlink/link. Note that this is
2614 * only partially correct. Also, doesn't enforce restriction
2615 * that files be of same type (regular->regular, dir->dir, etc).
2618 #ifndef HAVE_RENAME
2620 rename (from, to)
2621 const char *from;
2622 const char *to;
2624 if (access (from, 0) == 0)
2626 unlink (to);
2627 if (link (from, to) == 0)
2628 if (unlink (from) == 0)
2629 return (0);
2631 return (-1);
2634 #endif
2637 #if defined(HPUX) && !defined(HAVE_PERROR)
2639 /* HPUX curses library references perror, but as far as we know
2640 it won't be called. Anyway this definition will do for now. */
2642 perror ()
2645 #endif /* HPUX and not HAVE_PERROR */
2647 #ifndef HAVE_DUP2
2650 * Emulate BSD dup2. First close newd if it already exists.
2651 * Then, attempt to dup oldd. If not successful, call dup2 recursively
2652 * until we are, then close the unsuccessful ones.
2655 dup2 (oldd, newd)
2656 int oldd;
2657 int newd;
2659 register int fd, ret;
2661 emacs_close (newd);
2663 #ifdef F_DUPFD
2664 return fcntl (oldd, F_DUPFD, newd);
2665 #else
2666 fd = dup (old);
2667 if (fd == -1)
2668 return -1;
2669 if (fd == new)
2670 return new;
2671 ret = dup2 (old,new);
2672 emacs_close (fd);
2673 return ret;
2674 #endif
2677 #endif /* not HAVE_DUP2 */
2680 * Gettimeofday. Simulate as much as possible. Only accurate
2681 * to nearest second. Emacs doesn't use tzp so ignore it for now.
2682 * Only needed when subprocesses are defined.
2685 #ifdef subprocesses
2686 #ifndef HAVE_GETTIMEOFDAY
2687 #ifdef HAVE_TIMEVAL
2689 /* ARGSUSED */
2691 gettimeofday (tp, tzp)
2692 struct timeval *tp;
2693 struct timezone *tzp;
2695 extern long time ();
2697 tp->tv_sec = time ((long *)0);
2698 tp->tv_usec = 0;
2699 if (tzp != 0)
2700 tzp->tz_minuteswest = -1;
2701 return 0;
2704 #endif
2705 #endif
2706 #endif /* subprocess && !HAVE_GETTIMEOFDAY && HAVE_TIMEVAL */
2709 * This function will go away as soon as all the stubs fixed. (fnf)
2712 void
2713 croak (badfunc)
2714 char *badfunc;
2716 printf ("%s not yet implemented\r\n", badfunc);
2717 reset_all_sys_modes ();
2718 exit (1);
2721 #endif /* USG */
2723 /* Directory routines for systems that don't have them. */
2725 #ifdef SYSV_SYSTEM_DIR
2727 #include <dirent.h>
2729 #if !defined (HAVE_CLOSEDIR)
2732 closedir (DIR *dirp /* stream from opendir */)
2734 int rtnval;
2736 rtnval = emacs_close (dirp->dd_fd);
2738 /* Some systems (like Solaris) allocate the buffer and the DIR all
2739 in one block. Why in the world are we freeing this ourselves
2740 anyway? */
2741 #if ! defined (SOLARIS2)
2742 xfree ((char *) dirp->dd_buf); /* directory block defined in <dirent.h> */
2743 #endif
2744 xfree ((char *) dirp);
2746 return rtnval;
2748 #endif /* not HAVE_CLOSEDIR */
2749 #endif /* SYSV_SYSTEM_DIR */
2753 set_file_times (filename, atime, mtime)
2754 const char *filename;
2755 EMACS_TIME atime, mtime;
2757 #ifdef HAVE_UTIMES
2758 struct timeval tv[2];
2759 tv[0] = atime;
2760 tv[1] = mtime;
2761 return utimes (filename, tv);
2762 #else /* not HAVE_UTIMES */
2763 struct utimbuf utb;
2764 utb.actime = EMACS_SECS (atime);
2765 utb.modtime = EMACS_SECS (mtime);
2766 return utime (filename, &utb);
2767 #endif /* not HAVE_UTIMES */
2770 /* mkdir and rmdir functions, for systems which don't have them. */
2772 #ifndef HAVE_MKDIR
2774 * Written by Robert Rother, Mariah Corporation, August 1985.
2776 * If you want it, it's yours. All I ask in return is that if you
2777 * figure out how to do this in a Bourne Shell script you send me
2778 * a copy.
2779 * sdcsvax!rmr or rmr@uscd
2781 * Severely hacked over by John Gilmore to make a 4.2BSD compatible
2782 * subroutine. 11Mar86; hoptoad!gnu
2784 * Modified by rmtodd@uokmax 6-28-87 -- when making an already existing dir,
2785 * subroutine didn't return EEXIST. It does now.
2789 * Make a directory.
2791 #ifdef MKDIR_PROTOTYPE
2792 MKDIR_PROTOTYPE
2793 #else
2795 mkdir (dpath, dmode)
2796 char *dpath;
2797 int dmode;
2798 #endif
2800 int cpid, status, fd;
2801 struct stat statbuf;
2803 if (stat (dpath, &statbuf) == 0)
2805 errno = EEXIST; /* Stat worked, so it already exists */
2806 return -1;
2809 /* If stat fails for a reason other than non-existence, return error */
2810 if (errno != ENOENT)
2811 return -1;
2813 synch_process_alive = 1;
2814 switch (cpid = fork ())
2817 case -1: /* Error in fork */
2818 return (-1); /* Errno is set already */
2820 case 0: /* Child process */
2822 * Cheap hack to set mode of new directory. Since this
2823 * child process is going away anyway, we zap its umask.
2824 * FIXME, this won't suffice to set SUID, SGID, etc. on this
2825 * directory. Does anybody care?
2827 status = umask (0); /* Get current umask */
2828 status = umask (status | (0777 & ~dmode)); /* Set for mkdir */
2829 fd = emacs_open ("/dev/null", O_RDWR, 0);
2830 if (fd >= 0)
2832 dup2 (fd, 0);
2833 dup2 (fd, 1);
2834 dup2 (fd, 2);
2836 execl ("/bin/mkdir", "mkdir", dpath, (char *) 0);
2837 _exit (-1); /* Can't exec /bin/mkdir */
2839 default: /* Parent process */
2840 wait_for_termination (cpid);
2843 if (synch_process_death != 0 || synch_process_retcode != 0
2844 || synch_process_termsig != 0)
2846 errno = EIO; /* We don't know why, but */
2847 return -1; /* /bin/mkdir failed */
2850 return 0;
2852 #endif /* not HAVE_MKDIR */
2854 #ifndef HAVE_RMDIR
2856 rmdir (dpath)
2857 char *dpath;
2859 int cpid, status, fd;
2860 struct stat statbuf;
2862 if (stat (dpath, &statbuf) != 0)
2864 /* Stat just set errno. We don't have to */
2865 return -1;
2868 synch_process_alive = 1;
2869 switch (cpid = fork ())
2872 case -1: /* Error in fork */
2873 return (-1); /* Errno is set already */
2875 case 0: /* Child process */
2876 fd = emacs_open ("/dev/null", O_RDWR, 0);
2877 if (fd >= 0)
2879 dup2 (fd, 0);
2880 dup2 (fd, 1);
2881 dup2 (fd, 2);
2883 execl ("/bin/rmdir", "rmdir", dpath, (char *) 0);
2884 _exit (-1); /* Can't exec /bin/rmdir */
2886 default: /* Parent process */
2887 wait_for_termination (cpid);
2890 if (synch_process_death != 0 || synch_process_retcode != 0
2891 || synch_process_termsig != 0)
2893 errno = EIO; /* We don't know why, but */
2894 return -1; /* /bin/rmdir failed */
2897 return 0;
2899 #endif /* !HAVE_RMDIR */
2902 #ifndef BSTRING
2904 #ifndef bzero
2906 void
2907 bzero (b, length)
2908 register char *b;
2909 register int length;
2911 while (length-- > 0)
2912 *b++ = 0;
2915 #endif /* no bzero */
2916 #endif /* BSTRING */
2918 #if (!defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY)
2919 #undef bcopy
2921 /* Saying `void' requires a declaration, above, where bcopy is used
2922 and that declaration causes pain for systems where bcopy is a macro. */
2923 bcopy (b1, b2, length)
2924 register char *b1;
2925 register char *b2;
2926 register int length;
2928 while (length-- > 0)
2929 *b2++ = *b1++;
2931 #endif /* (!defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY) */
2933 #ifndef BSTRING
2934 #ifndef bcmp
2936 bcmp (b1, b2, length) /* This could be a macro! */
2937 register char *b1;
2938 register char *b2;
2939 register int length;
2941 while (length-- > 0)
2942 if (*b1++ != *b2++)
2943 return 1;
2945 return 0;
2947 #endif /* no bcmp */
2948 #endif /* not BSTRING */
2950 #ifndef HAVE_STRSIGNAL
2951 char *
2952 strsignal (code)
2953 int code;
2955 char *signame = 0;
2957 if (0 <= code && code < NSIG)
2959 /* Cast to suppress warning if the table has const char *. */
2960 signame = (char *) sys_siglist[code];
2963 return signame;
2965 #endif /* HAVE_STRSIGNAL */
2967 #ifdef HAVE_TERMIOS
2968 /* For make-serial-process */
2969 int serial_open (char *port)
2971 int fd = -1;
2973 fd = emacs_open ((char*) port,
2974 O_RDWR
2975 #ifdef O_NONBLOCK
2976 | O_NONBLOCK
2977 #else
2978 | O_NDELAY
2979 #endif
2980 #ifdef O_NOCTTY
2981 | O_NOCTTY
2982 #endif
2983 , 0);
2984 if (fd < 0)
2986 error ("Could not open %s: %s",
2987 port, emacs_strerror (errno));
2989 #ifdef TIOCEXCL
2990 ioctl (fd, TIOCEXCL, (char *) 0);
2991 #endif
2993 return fd;
2995 #endif /* TERMIOS */
2997 #ifdef HAVE_TERMIOS
2999 #if !defined (HAVE_CFMAKERAW)
3000 /* Workaround for targets which are missing cfmakeraw. */
3001 /* Pasted from man page. */
3002 static void cfmakeraw (struct termios *termios_p)
3004 termios_p->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
3005 termios_p->c_oflag &= ~OPOST;
3006 termios_p->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
3007 termios_p->c_cflag &= ~(CSIZE|PARENB);
3008 termios_p->c_cflag |= CS8;
3010 #endif /* !defined (HAVE_CFMAKERAW */
3012 #if !defined (HAVE_CFSETSPEED)
3013 /* Workaround for targets which are missing cfsetspeed. */
3014 static int cfsetspeed (struct termios *termios_p, speed_t vitesse)
3016 return (cfsetispeed (termios_p, vitesse)
3017 + cfsetospeed (termios_p, vitesse));
3019 #endif
3021 /* For serial-process-configure */
3022 void
3023 serial_configure (struct Lisp_Process *p,
3024 Lisp_Object contact)
3026 Lisp_Object childp2 = Qnil;
3027 Lisp_Object tem = Qnil;
3028 struct termios attr;
3029 int err = -1;
3030 char summary[4] = "???"; /* This usually becomes "8N1". */
3032 childp2 = Fcopy_sequence (p->childp);
3034 /* Read port attributes and prepare default configuration. */
3035 err = tcgetattr (p->outfd, &attr);
3036 if (err != 0)
3037 error ("tcgetattr() failed: %s", emacs_strerror (errno));
3038 cfmakeraw (&attr);
3039 #if defined (CLOCAL)
3040 attr.c_cflag |= CLOCAL;
3041 #endif
3042 #if defined (CREAD)
3043 attr.c_cflag |= CREAD;
3044 #endif
3046 /* Configure speed. */
3047 if (!NILP (Fplist_member (contact, QCspeed)))
3048 tem = Fplist_get (contact, QCspeed);
3049 else
3050 tem = Fplist_get (p->childp, QCspeed);
3051 CHECK_NUMBER (tem);
3052 err = cfsetspeed (&attr, XINT (tem));
3053 if (err != 0)
3054 error ("cfsetspeed(%d) failed: %s", XINT (tem), emacs_strerror (errno));
3055 childp2 = Fplist_put (childp2, QCspeed, tem);
3057 /* Configure bytesize. */
3058 if (!NILP (Fplist_member (contact, QCbytesize)))
3059 tem = Fplist_get (contact, QCbytesize);
3060 else
3061 tem = Fplist_get (p->childp, QCbytesize);
3062 if (NILP (tem))
3063 tem = make_number (8);
3064 CHECK_NUMBER (tem);
3065 if (XINT (tem) != 7 && XINT (tem) != 8)
3066 error (":bytesize must be nil (8), 7, or 8");
3067 summary[0] = XINT(tem) + '0';
3068 #if defined (CSIZE) && defined (CS7) && defined (CS8)
3069 attr.c_cflag &= ~CSIZE;
3070 attr.c_cflag |= ((XINT (tem) == 7) ? CS7 : CS8);
3071 #else
3072 /* Don't error on bytesize 8, which should be set by cfmakeraw. */
3073 if (XINT (tem) != 8)
3074 error ("Bytesize cannot be changed");
3075 #endif
3076 childp2 = Fplist_put (childp2, QCbytesize, tem);
3078 /* Configure parity. */
3079 if (!NILP (Fplist_member (contact, QCparity)))
3080 tem = Fplist_get (contact, QCparity);
3081 else
3082 tem = Fplist_get (p->childp, QCparity);
3083 if (!NILP (tem) && !EQ (tem, Qeven) && !EQ (tem, Qodd))
3084 error (":parity must be nil (no parity), `even', or `odd'");
3085 #if defined (PARENB) && defined (PARODD) && defined (IGNPAR) && defined (INPCK)
3086 attr.c_cflag &= ~(PARENB | PARODD);
3087 attr.c_iflag &= ~(IGNPAR | INPCK);
3088 if (NILP (tem))
3090 summary[1] = 'N';
3092 else if (EQ (tem, Qeven))
3094 summary[1] = 'E';
3095 attr.c_cflag |= PARENB;
3096 attr.c_iflag |= (IGNPAR | INPCK);
3098 else if (EQ (tem, Qodd))
3100 summary[1] = 'O';
3101 attr.c_cflag |= (PARENB | PARODD);
3102 attr.c_iflag |= (IGNPAR | INPCK);
3104 #else
3105 /* Don't error on no parity, which should be set by cfmakeraw. */
3106 if (!NILP (tem))
3107 error ("Parity cannot be configured");
3108 #endif
3109 childp2 = Fplist_put (childp2, QCparity, tem);
3111 /* Configure stopbits. */
3112 if (!NILP (Fplist_member (contact, QCstopbits)))
3113 tem = Fplist_get (contact, QCstopbits);
3114 else
3115 tem = Fplist_get (p->childp, QCstopbits);
3116 if (NILP (tem))
3117 tem = make_number (1);
3118 CHECK_NUMBER (tem);
3119 if (XINT (tem) != 1 && XINT (tem) != 2)
3120 error (":stopbits must be nil (1 stopbit), 1, or 2");
3121 summary[2] = XINT (tem) + '0';
3122 #if defined (CSTOPB)
3123 attr.c_cflag &= ~CSTOPB;
3124 if (XINT (tem) == 2)
3125 attr.c_cflag |= CSTOPB;
3126 #else
3127 /* Don't error on 1 stopbit, which should be set by cfmakeraw. */
3128 if (XINT (tem) != 1)
3129 error ("Stopbits cannot be configured");
3130 #endif
3131 childp2 = Fplist_put (childp2, QCstopbits, tem);
3133 /* Configure flowcontrol. */
3134 if (!NILP (Fplist_member (contact, QCflowcontrol)))
3135 tem = Fplist_get (contact, QCflowcontrol);
3136 else
3137 tem = Fplist_get (p->childp, QCflowcontrol);
3138 if (!NILP (tem) && !EQ (tem, Qhw) && !EQ (tem, Qsw))
3139 error (":flowcontrol must be nil (no flowcontrol), `hw', or `sw'");
3140 #if defined (CRTSCTS)
3141 attr.c_cflag &= ~CRTSCTS;
3142 #endif
3143 #if defined (CNEW_RTSCTS)
3144 attr.c_cflag &= ~CNEW_RTSCTS;
3145 #endif
3146 #if defined (IXON) && defined (IXOFF)
3147 attr.c_iflag &= ~(IXON | IXOFF);
3148 #endif
3149 if (NILP (tem))
3151 /* Already configured. */
3153 else if (EQ (tem, Qhw))
3155 #if defined (CRTSCTS)
3156 attr.c_cflag |= CRTSCTS;
3157 #elif defined (CNEW_RTSCTS)
3158 attr.c_cflag |= CNEW_RTSCTS;
3159 #else
3160 error ("Hardware flowcontrol (RTS/CTS) not supported");
3161 #endif
3163 else if (EQ (tem, Qsw))
3165 #if defined (IXON) && defined (IXOFF)
3166 attr.c_iflag |= (IXON | IXOFF);
3167 #else
3168 error ("Software flowcontrol (XON/XOFF) not supported");
3169 #endif
3171 childp2 = Fplist_put (childp2, QCflowcontrol, tem);
3173 /* Activate configuration. */
3174 err = tcsetattr (p->outfd, TCSANOW, &attr);
3175 if (err != 0)
3176 error ("tcsetattr() failed: %s", emacs_strerror (errno));
3178 childp2 = Fplist_put (childp2, QCsummary, build_string (summary));
3179 p->childp = childp2;
3182 #endif /* TERMIOS */
3184 /* System depended enumeration of and access to system processes a-la ps(1). */
3186 #ifdef HAVE_PROCFS
3188 /* Process enumeration and access via /proc. */
3190 Lisp_Object
3191 list_system_processes ()
3193 Lisp_Object procdir, match, proclist, next;
3194 struct gcpro gcpro1, gcpro2;
3195 register Lisp_Object tail;
3197 GCPRO2 (procdir, match);
3198 /* For every process on the system, there's a directory in the
3199 "/proc" pseudo-directory whose name is the numeric ID of that
3200 process. */
3201 procdir = build_string ("/proc");
3202 match = build_string ("[0-9]+");
3203 proclist = directory_files_internal (procdir, Qnil, match, Qt, 0, Qnil);
3205 /* `proclist' gives process IDs as strings. Destructively convert
3206 each string into a number. */
3207 for (tail = proclist; CONSP (tail); tail = next)
3209 next = XCDR (tail);
3210 XSETCAR (tail, Fstring_to_number (XCAR (tail), Qnil));
3212 UNGCPRO;
3214 /* directory_files_internal returns the files in reverse order; undo
3215 that. */
3216 proclist = Fnreverse (proclist);
3217 return proclist;
3220 /* The WINDOWSNT implementation is on w32.c.
3221 The MSDOS implementation is on dosfns.c. */
3222 #elif !defined (WINDOWSNT) && !defined (MSDOS)
3224 Lisp_Object
3225 list_system_processes ()
3227 return Qnil;
3230 #endif /* !defined (WINDOWSNT) */
3232 #ifdef GNU_LINUX
3233 static void
3234 time_from_jiffies (unsigned long long tval, long hz,
3235 time_t *sec, unsigned *usec)
3237 unsigned long long ullsec;
3239 *sec = tval / hz;
3240 ullsec = *sec;
3241 tval -= ullsec * hz;
3242 /* Careful: if HZ > 1 million, then integer division by it yields zero. */
3243 if (hz <= 1000000)
3244 *usec = tval * 1000000 / hz;
3245 else
3246 *usec = tval / (hz / 1000000);
3249 static Lisp_Object
3250 ltime_from_jiffies (unsigned long long tval, long hz)
3252 time_t sec;
3253 unsigned usec;
3255 time_from_jiffies (tval, hz, &sec, &usec);
3257 return list3 (make_number ((sec >> 16) & 0xffff),
3258 make_number (sec & 0xffff),
3259 make_number (usec));
3262 static void
3263 get_up_time (time_t *sec, unsigned *usec)
3265 FILE *fup;
3267 *sec = *usec = 0;
3269 BLOCK_INPUT;
3270 fup = fopen ("/proc/uptime", "r");
3272 if (fup)
3274 double uptime, idletime;
3276 /* The numbers in /proc/uptime use C-locale decimal point, but
3277 we already set ourselves to the C locale (see `fixup_locale'
3278 in emacs.c). */
3279 if (2 <= fscanf (fup, "%lf %lf", &uptime, &idletime))
3281 *sec = uptime;
3282 *usec = (uptime - *sec) * 1000000;
3284 fclose (fup);
3286 UNBLOCK_INPUT;
3289 #define MAJOR(d) (((unsigned)(d) >> 8) & 0xfff)
3290 #define MINOR(d) (((unsigned)(d) & 0xff) | (((unsigned)(d) & 0xfff00000) >> 12))
3292 static Lisp_Object
3293 procfs_ttyname (int rdev)
3295 FILE *fdev = NULL;
3296 char name[PATH_MAX];
3298 BLOCK_INPUT;
3299 fdev = fopen ("/proc/tty/drivers", "r");
3301 if (fdev)
3303 unsigned major;
3304 unsigned long minor_beg, minor_end;
3305 char minor[25]; /* 2 32-bit numbers + dash */
3306 char *endp;
3308 while (!feof (fdev) && !ferror (fdev))
3310 if (3 <= fscanf (fdev, "%*s %s %u %s %*s\n", name, &major, minor)
3311 && major == MAJOR (rdev))
3313 minor_beg = strtoul (minor, &endp, 0);
3314 if (*endp == '\0')
3315 minor_end = minor_beg;
3316 else if (*endp == '-')
3317 minor_end = strtoul (endp + 1, &endp, 0);
3318 else
3319 continue;
3321 if (MINOR (rdev) >= minor_beg && MINOR (rdev) <= minor_end)
3323 sprintf (name + strlen (name), "%lu", MINOR (rdev));
3324 break;
3328 fclose (fdev);
3330 UNBLOCK_INPUT;
3331 return build_string (name);
3334 static unsigned long
3335 procfs_get_total_memory (void)
3337 FILE *fmem = NULL;
3338 unsigned long retval = 2 * 1024 * 1024; /* default: 2GB */
3340 BLOCK_INPUT;
3341 fmem = fopen ("/proc/meminfo", "r");
3343 if (fmem)
3345 unsigned long entry_value;
3346 char entry_name[20]; /* the longest I saw is 13+1 */
3348 while (!feof (fmem) && !ferror (fmem))
3350 if (2 <= fscanf (fmem, "%s %lu kB\n", entry_name, &entry_value)
3351 && strcmp (entry_name, "MemTotal:") == 0)
3353 retval = entry_value;
3354 break;
3357 fclose (fmem);
3359 UNBLOCK_INPUT;
3360 return retval;
3363 Lisp_Object
3364 system_process_attributes (Lisp_Object pid)
3366 char procfn[PATH_MAX], fn[PATH_MAX];
3367 struct stat st;
3368 struct passwd *pw;
3369 struct group *gr;
3370 long clocks_per_sec;
3371 char *procfn_end;
3372 char procbuf[1025], *p, *q;
3373 int fd;
3374 ssize_t nread;
3375 const char *cmd = NULL;
3376 char *cmdline = NULL;
3377 size_t cmdsize = 0, cmdline_size;
3378 unsigned char c;
3379 int proc_id, ppid, uid, gid, pgrp, sess, tty, tpgid, thcount;
3380 unsigned long long utime, stime, cutime, cstime, start;
3381 long priority, nice, rss;
3382 unsigned long minflt, majflt, cminflt, cmajflt, vsize;
3383 time_t sec;
3384 unsigned usec;
3385 EMACS_TIME tnow, tstart, tboot, telapsed,ttotal;
3386 double pcpu, pmem;
3387 Lisp_Object attrs = Qnil;
3388 Lisp_Object cmd_str, decoded_cmd, tem;
3389 struct gcpro gcpro1, gcpro2;
3390 EMACS_INT uid_eint, gid_eint;
3392 CHECK_NUMBER_OR_FLOAT (pid);
3393 proc_id = FLOATP (pid) ? XFLOAT_DATA (pid) : XINT (pid);
3394 sprintf (procfn, "/proc/%lu", proc_id);
3395 if (stat (procfn, &st) < 0)
3396 return attrs;
3398 GCPRO2 (attrs, decoded_cmd);
3400 /* euid egid */
3401 uid = st.st_uid;
3402 /* Use of EMACS_INT stops GCC whining about limited range of data type. */
3403 uid_eint = uid;
3404 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid_eint)), attrs);
3405 BLOCK_INPUT;
3406 pw = getpwuid (uid);
3407 UNBLOCK_INPUT;
3408 if (pw)
3409 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3411 gid = st.st_gid;
3412 gid_eint = gid;
3413 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid_eint)), attrs);
3414 BLOCK_INPUT;
3415 gr = getgrgid (gid);
3416 UNBLOCK_INPUT;
3417 if (gr)
3418 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3420 strcpy (fn, procfn);
3421 procfn_end = fn + strlen (fn);
3422 strcpy (procfn_end, "/stat");
3423 fd = emacs_open (fn, O_RDONLY, 0);
3424 if (fd >= 0 && (nread = emacs_read (fd, procbuf, sizeof(procbuf) - 1)) > 0)
3426 procbuf[nread] = '\0';
3427 p = procbuf;
3429 p = strchr (p, '(');
3430 if (p != NULL)
3432 q = strrchr (p + 1, ')');
3433 /* comm */
3434 if (q != NULL)
3436 cmd = p + 1;
3437 cmdsize = q - cmd;
3440 else
3441 q = NULL;
3442 if (cmd == NULL)
3444 cmd = "???";
3445 cmdsize = 3;
3447 /* Command name is encoded in locale-coding-system; decode it. */
3448 cmd_str = make_unibyte_string (cmd, cmdsize);
3449 decoded_cmd = code_convert_string_norecord (cmd_str,
3450 Vlocale_coding_system, 0);
3451 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
3453 if (q)
3455 EMACS_INT ppid_eint, pgrp_eint, sess_eint, tpgid_eint, thcount_eint;
3456 p = q + 2;
3457 /* state ppid pgrp sess tty tpgid . minflt cminflt majflt cmajflt utime stime cutime cstime priority nice thcount . start vsize rss */
3458 sscanf (p, "%c %d %d %d %d %d %*u %lu %lu %lu %lu %Lu %Lu %Lu %Lu %ld %ld %d %*d %Lu %lu %ld",
3459 &c, &ppid, &pgrp, &sess, &tty, &tpgid,
3460 &minflt, &cminflt, &majflt, &cmajflt,
3461 &utime, &stime, &cutime, &cstime,
3462 &priority, &nice, &thcount, &start, &vsize, &rss);
3464 char state_str[2];
3466 state_str[0] = c;
3467 state_str[1] = '\0';
3468 tem = build_string (state_str);
3469 attrs = Fcons (Fcons (Qstate, tem), attrs);
3471 /* Stops GCC whining about limited range of data type. */
3472 ppid_eint = ppid;
3473 pgrp_eint = pgrp;
3474 sess_eint = sess;
3475 tpgid_eint = tpgid;
3476 thcount_eint = thcount;
3477 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (ppid_eint)), attrs);
3478 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pgrp_eint)), attrs);
3479 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (sess_eint)), attrs);
3480 attrs = Fcons (Fcons (Qttname, procfs_ttyname (tty)), attrs);
3481 attrs = Fcons (Fcons (Qtpgid, make_fixnum_or_float (tpgid_eint)), attrs);
3482 attrs = Fcons (Fcons (Qminflt, make_fixnum_or_float (minflt)), attrs);
3483 attrs = Fcons (Fcons (Qmajflt, make_fixnum_or_float (majflt)), attrs);
3484 attrs = Fcons (Fcons (Qcminflt, make_fixnum_or_float (cminflt)), attrs);
3485 attrs = Fcons (Fcons (Qcmajflt, make_fixnum_or_float (cmajflt)), attrs);
3486 clocks_per_sec = sysconf (_SC_CLK_TCK);
3487 if (clocks_per_sec < 0)
3488 clocks_per_sec = 100;
3489 attrs = Fcons (Fcons (Qutime,
3490 ltime_from_jiffies (utime, clocks_per_sec)),
3491 attrs);
3492 attrs = Fcons (Fcons (Qstime,
3493 ltime_from_jiffies (stime, clocks_per_sec)),
3494 attrs);
3495 attrs = Fcons (Fcons (Qtime,
3496 ltime_from_jiffies (stime+utime, clocks_per_sec)),
3497 attrs);
3498 attrs = Fcons (Fcons (Qcutime,
3499 ltime_from_jiffies (cutime, clocks_per_sec)),
3500 attrs);
3501 attrs = Fcons (Fcons (Qcstime,
3502 ltime_from_jiffies (cstime, clocks_per_sec)),
3503 attrs);
3504 attrs = Fcons (Fcons (Qctime,
3505 ltime_from_jiffies (cstime+cutime, clocks_per_sec)),
3506 attrs);
3507 attrs = Fcons (Fcons (Qpri, make_number (priority)), attrs);
3508 attrs = Fcons (Fcons (Qnice, make_number (nice)), attrs);
3509 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (thcount_eint)), attrs);
3510 EMACS_GET_TIME (tnow);
3511 get_up_time (&sec, &usec);
3512 EMACS_SET_SECS (telapsed, sec);
3513 EMACS_SET_USECS (telapsed, usec);
3514 EMACS_SUB_TIME (tboot, tnow, telapsed);
3515 time_from_jiffies (start, clocks_per_sec, &sec, &usec);
3516 EMACS_SET_SECS (tstart, sec);
3517 EMACS_SET_USECS (tstart, usec);
3518 EMACS_ADD_TIME (tstart, tboot, tstart);
3519 attrs = Fcons (Fcons (Qstart,
3520 list3 (make_number
3521 ((EMACS_SECS (tstart) >> 16) & 0xffff),
3522 make_number
3523 (EMACS_SECS (tstart) & 0xffff),
3524 make_number
3525 (EMACS_USECS (tstart)))),
3526 attrs);
3527 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (vsize/1024)), attrs);
3528 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (4*rss)), attrs);
3529 EMACS_SUB_TIME (telapsed, tnow, tstart);
3530 attrs = Fcons (Fcons (Qetime,
3531 list3 (make_number
3532 ((EMACS_SECS (telapsed) >> 16) & 0xffff),
3533 make_number
3534 (EMACS_SECS (telapsed) & 0xffff),
3535 make_number
3536 (EMACS_USECS (telapsed)))),
3537 attrs);
3538 time_from_jiffies (utime + stime, clocks_per_sec, &sec, &usec);
3539 pcpu = (sec + usec / 1000000.0) / (EMACS_SECS (telapsed) + EMACS_USECS (telapsed) / 1000000.0);
3540 if (pcpu > 1.0)
3541 pcpu = 1.0;
3542 attrs = Fcons (Fcons (Qpcpu, make_float (100 * pcpu)), attrs);
3543 pmem = 4.0 * 100 * rss / procfs_get_total_memory ();
3544 if (pmem > 100)
3545 pmem = 100;
3546 attrs = Fcons (Fcons (Qpmem, make_float (pmem)), attrs);
3549 if (fd >= 0)
3550 emacs_close (fd);
3552 /* args */
3553 strcpy (procfn_end, "/cmdline");
3554 fd = emacs_open (fn, O_RDONLY, 0);
3555 if (fd >= 0)
3557 for (cmdline_size = 0; emacs_read (fd, &c, 1) == 1; cmdline_size++)
3559 if (isspace (c) || c == '\\')
3560 cmdline_size++; /* for later quoting, see below */
3562 if (cmdline_size)
3564 cmdline = xmalloc (cmdline_size + 1);
3565 lseek (fd, 0L, SEEK_SET);
3566 cmdline[0] = '\0';
3567 if ((nread = read (fd, cmdline, cmdline_size)) >= 0)
3568 cmdline[nread++] = '\0';
3569 else
3571 /* Assigning zero to `nread' makes us skip the following
3572 two loops, assign zero to cmdline_size, and enter the
3573 following `if' clause that handles unknown command
3574 lines. */
3575 nread = 0;
3577 /* We don't want trailing null characters. */
3578 for (p = cmdline + nread - 1; p > cmdline && !*p; p--)
3579 nread--;
3580 for (p = cmdline; p < cmdline + nread; p++)
3582 /* Escape-quote whitespace and backslashes. */
3583 if (isspace (*p) || *p == '\\')
3585 memmove (p + 1, p, nread - (p - cmdline));
3586 nread++;
3587 *p++ = '\\';
3589 else if (*p == '\0')
3590 *p = ' ';
3592 cmdline_size = nread;
3594 if (!cmdline_size)
3596 if (!cmd)
3597 cmd = "???";
3598 if (!cmdsize)
3599 cmdsize = strlen (cmd);
3600 cmdline_size = cmdsize + 2;
3601 cmdline = xmalloc (cmdline_size + 1);
3602 strcpy (cmdline, "[");
3603 strcat (strncat (cmdline, cmd, cmdsize), "]");
3605 emacs_close (fd);
3606 /* Command line is encoded in locale-coding-system; decode it. */
3607 cmd_str = make_unibyte_string (cmdline, cmdline_size);
3608 decoded_cmd = code_convert_string_norecord (cmd_str,
3609 Vlocale_coding_system, 0);
3610 xfree (cmdline);
3611 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
3614 UNGCPRO;
3615 return attrs;
3618 #elif defined (SOLARIS2) && defined (HAVE_PROCFS)
3620 /* The <procfs.h> header does not like to be included if _LP64 is defined and
3621 __FILE_OFFSET_BITS == 64. This is an ugly workaround that. */
3622 #if !defined (_LP64) && defined (_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)
3623 #define PROCFS_FILE_OFFSET_BITS_HACK 1
3624 #undef _FILE_OFFSET_BITS
3625 #else
3626 #define PROCFS_FILE_OFFSET_BITS_HACK 0
3627 #endif
3629 #include <procfs.h>
3631 #if PROCFS_FILE_OFFSET_BITS_HACK == 1
3632 #define _FILE_OFFSET_BITS 64
3633 #endif /* PROCFS_FILE_OFFSET_BITS_HACK == 1 */
3635 Lisp_Object
3636 system_process_attributes (Lisp_Object pid)
3638 char procfn[PATH_MAX], fn[PATH_MAX];
3639 struct stat st;
3640 struct passwd *pw;
3641 struct group *gr;
3642 char *procfn_end;
3643 struct psinfo pinfo;
3644 int fd;
3645 ssize_t nread;
3646 int proc_id, uid, gid;
3647 Lisp_Object attrs = Qnil;
3648 Lisp_Object decoded_cmd, tem;
3649 struct gcpro gcpro1, gcpro2;
3650 EMACS_INT uid_eint, gid_eint;
3652 CHECK_NUMBER_OR_FLOAT (pid);
3653 proc_id = FLOATP (pid) ? XFLOAT_DATA (pid) : XINT (pid);
3654 sprintf (procfn, "/proc/%u", proc_id);
3655 if (stat (procfn, &st) < 0)
3656 return attrs;
3658 GCPRO2 (attrs, decoded_cmd);
3660 /* euid egid */
3661 uid = st.st_uid;
3662 /* Use of EMACS_INT stops GCC whining about limited range of data type. */
3663 uid_eint = uid;
3664 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid_eint)), attrs);
3665 BLOCK_INPUT;
3666 pw = getpwuid (uid);
3667 UNBLOCK_INPUT;
3668 if (pw)
3669 attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs);
3671 gid = st.st_gid;
3672 gid_eint = gid;
3673 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid_eint)), attrs);
3674 BLOCK_INPUT;
3675 gr = getgrgid (gid);
3676 UNBLOCK_INPUT;
3677 if (gr)
3678 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs);
3680 strcpy (fn, procfn);
3681 procfn_end = fn + strlen (fn);
3682 strcpy (procfn_end, "/psinfo");
3683 fd = emacs_open (fn, O_RDONLY, 0);
3684 if (fd >= 0
3685 && (nread = read (fd, (char*)&pinfo, sizeof(struct psinfo)) > 0))
3687 attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (pinfo.pr_ppid)), attrs);
3688 attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (pinfo.pr_pgid)), attrs);
3689 attrs = Fcons (Fcons (Qsess, make_fixnum_or_float (pinfo.pr_sid)), attrs);
3692 char state_str[2];
3693 state_str[0] = pinfo.pr_lwp.pr_sname;
3694 state_str[1] = '\0';
3695 tem = build_string (state_str);
3696 attrs = Fcons (Fcons (Qstate, tem), attrs);
3699 /* FIXME: missing Qttyname. psinfo.pr_ttydev is a dev_t,
3700 need to get a string from it. */
3702 /* FIXME: missing: Qtpgid */
3704 /* FIXME: missing:
3705 Qminflt
3706 Qmajflt
3707 Qcminflt
3708 Qcmajflt
3710 Qutime
3711 Qcutime
3712 Qstime
3713 Qcstime
3714 Are they available? */
3716 attrs = Fcons (Fcons (Qtime,
3717 list3 (make_number (pinfo.pr_time.tv_sec >> 16),
3718 make_number (pinfo.pr_time.tv_sec & 0xffff),
3719 make_number (pinfo.pr_time.tv_nsec))),
3720 attrs);
3722 attrs = Fcons (Fcons (Qctime,
3723 list3 (make_number (pinfo.pr_ctime.tv_sec >> 16),
3724 make_number (pinfo.pr_ctime.tv_sec & 0xffff),
3725 make_number (pinfo.pr_ctime.tv_nsec))),
3726 attrs);
3728 attrs = Fcons (Fcons (Qpri, make_number (pinfo.pr_lwp.pr_pri)), attrs);
3729 attrs = Fcons (Fcons (Qnice, make_number (pinfo.pr_lwp.pr_nice)), attrs);
3730 attrs = Fcons (Fcons (Qthcount, make_fixnum_or_float (pinfo.pr_nlwp)), attrs);
3732 attrs = Fcons (Fcons (Qstart,
3733 list3 (make_number (pinfo.pr_start.tv_sec >> 16),
3734 make_number (pinfo.pr_start.tv_sec & 0xffff),
3735 make_number (pinfo.pr_start.tv_nsec))),
3736 attrs);
3737 attrs = Fcons (Fcons (Qvsize, make_fixnum_or_float (pinfo.pr_size)), attrs);
3738 attrs = Fcons (Fcons (Qrss, make_fixnum_or_float (pinfo.pr_rssize)), attrs);
3740 /* pr_pctcpu and pr_pctmem are encoded as a fixed point 16 bit number in [0 ... 1]. */
3741 attrs = Fcons (Fcons (Qpcpu, (pinfo.pr_pctcpu * 100.0) / (double)0x8000), attrs);
3742 attrs = Fcons (Fcons (Qpmem, (pinfo.pr_pctmem * 100.0) / (double)0x8000), attrs);
3744 decoded_cmd
3745 = code_convert_string_norecord (make_unibyte_string (pinfo.pr_fname,
3746 strlen (pinfo.pr_fname)),
3747 Vlocale_coding_system, 0);
3748 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs);
3749 decoded_cmd
3750 = code_convert_string_norecord (make_unibyte_string (pinfo.pr_psargs,
3751 strlen (pinfo.pr_psargs)),
3752 Vlocale_coding_system, 0);
3753 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs);
3756 if (fd >= 0)
3757 emacs_close (fd);
3759 UNGCPRO;
3760 return attrs;
3763 /* The WINDOWSNT implementation is on w32.c.
3764 The MSDOS implementation is on dosfns.c. */
3765 #elif !defined (WINDOWSNT) && !defined (MSDOS)
3767 Lisp_Object
3768 system_process_attributes (Lisp_Object pid)
3770 return Qnil;
3773 #endif /* !defined (WINDOWSNT) */
3776 /* arch-tag: edb43589-4e09-4544-b325-978b5b121dcf
3777 (do not change this comment) */