1 /* Interfaces to system-dependent kernel and library entries.
2 Copyright (C) 1985-1988, 1993-1995, 1999-2011
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
28 #endif /* HAVE_PWD_H */
31 #endif /* HAVE_LIMITS_H */
34 #include <ignore-value.h>
37 #include "sysselect.h"
38 #include "blockinput.h"
42 #define write sys_write
47 #endif /* not WINDOWSNT */
49 #include <sys/types.h>
56 #define setpgrp setpgid
60 /* Get SI_SRPC_DOMAIN, if it is available. */
61 #ifdef HAVE_SYS_SYSTEMINFO_H
62 #include <sys/systeminfo.h>
65 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
69 #include <sys/param.h>
78 #ifdef HAVE_SYS_UTSNAME_H
79 #include <sys/utsname.h>
81 #endif /* HAVE_SYS_UTSNAME_H */
86 #include "termhooks.h"
89 #include "dispextern.h"
91 #include "cm.h" /* for reset_sys_modes */
95 /* In process.h which conflicts with the local copy. */
97 int _cdecl
_spawnlp (int, const char *, const char *, ...);
98 int _cdecl
_getpid (void);
99 extern char *getwd (char *);
102 #include "syssignal.h"
109 #ifndef HAVE_STRUCT_UTIMBUF
110 /* We want to use utime rather than utimes, but we couldn't find the
111 structure declaration. We'll use the traditional one. */
119 /* Declare here, including term.h is problematic on some systems. */
120 extern void tputs (const char *, int, int (*)(int));
122 static const int baud_convert
[] =
124 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
125 1800, 2400, 4800, 9600, 19200, 38400
128 void croak (char *) NO_RETURN
;
130 /* Temporary used by `sigblock' when defined in terms of signprocmask. */
132 SIGMASKTYPE sigprocmask_set
;
135 #if !defined (HAVE_GET_CURRENT_DIR_NAME) || defined (BROKEN_GET_CURRENT_DIR_NAME)
137 /* Return the current working directory. Returns NULL on errors.
138 Any other returned value must be freed with free. This is used
139 only when get_current_dir_name is not defined on the system. */
141 get_current_dir_name (void)
145 struct stat dotstat
, pwdstat
;
146 /* If PWD is accurate, use it instead of calling getwd. PWD is
147 sometimes a nicer name, and using it may avoid a fatal error if a
148 parent directory is searchable but not readable. */
149 if ((pwd
= getenv ("PWD")) != 0
150 && (IS_DIRECTORY_SEP (*pwd
) || (*pwd
&& IS_DEVICE_SEP (pwd
[1])))
151 && stat (pwd
, &pwdstat
) == 0
152 && stat (".", &dotstat
) == 0
153 && dotstat
.st_ino
== pwdstat
.st_ino
154 && dotstat
.st_dev
== pwdstat
.st_dev
156 && strlen (pwd
) < MAXPATHLEN
160 buf
= (char *) malloc (strlen (pwd
) + 1);
168 size_t buf_size
= 1024;
169 buf
= (char *) malloc (buf_size
);
174 if (getcwd (buf
, buf_size
) == buf
)
178 int tmp_errno
= errno
;
184 buf
= (char *) realloc (buf
, buf_size
);
192 /* We need MAXPATHLEN here. */
193 buf
= (char *) malloc (MAXPATHLEN
+ 1);
196 if (getwd (buf
) == NULL
)
198 int tmp_errno
= errno
;
210 /* Discard pending input on all input descriptors. */
213 discard_tty_input (void)
216 struct emacs_tty buf
;
221 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
222 while (dos_keyread () != -1)
224 #else /* not MSDOS */
226 struct tty_display_info
*tty
;
227 for (tty
= tty_list
; tty
; tty
= tty
->next
)
229 if (tty
->input
) /* Is the device suspended? */
231 emacs_get_tty (fileno (tty
->input
), &buf
);
232 emacs_set_tty (fileno (tty
->input
), &buf
, 0);
236 #endif /* not MSDOS */
237 #endif /* not WINDOWSNT */
243 /* Arrange for character C to be read as the next input from
245 XXX What if we have multiple ttys?
251 if (! FRAME_TERMCAP_P (SELECTED_FRAME ()))
254 /* Should perhaps error if in batch mode */
256 ioctl (fileno (CURTTY()->input
), TIOCSTI
, &c
);
257 #else /* no TIOCSTI */
258 error ("Cannot stuff terminal input characters in this version of Unix");
259 #endif /* no TIOCSTI */
265 init_baud_rate (int fd
)
275 #else /* not DOS_NT */
280 emacs_ospeed
= cfgetospeed (&sg
);
281 #endif /* not DOS_NT */
284 baud_rate
= (emacs_ospeed
< sizeof baud_convert
/ sizeof baud_convert
[0]
285 ? baud_convert
[emacs_ospeed
] : 9600);
292 int wait_debugging
; /* Set nonzero to make following function work under dbx
293 (at least for bsd). */
296 wait_for_termination_signal (void)
300 /* Wait for subprocess with process id `pid' to terminate and
301 make sure it will get eliminated (not remain forever as a zombie) */
304 wait_for_termination (int pid
)
308 #if defined (BSD_SYSTEM) || defined (HPUX)
309 /* Note that kill returns -1 even if the process is just a zombie now.
310 But inevitably a SIGCHLD interrupt should be generated
311 and child_sig will do wait3 and make the process go away. */
312 /* There is some indication that there is a bug involved with
313 termination of subprocesses, perhaps involving a kernel bug too,
314 but no idea what it is. Just as a hunch we signal SIGCHLD to see
315 if that causes the problem to go away or get worse. */
316 sigsetmask (sigmask (SIGCHLD
));
317 if (0 > kill (pid
, 0))
319 sigsetmask (SIGEMPTYMASK
);
320 kill (getpid (), SIGCHLD
);
326 sigpause (SIGEMPTYMASK
);
327 #else /* not BSD_SYSTEM, and not HPUX version >= 6 */
331 #else /* not WINDOWSNT */
332 sigblock (sigmask (SIGCHLD
));
334 if (kill (pid
, 0) == -1 && errno
== ESRCH
)
336 sigunblock (sigmask (SIGCHLD
));
340 sigsuspend (&empty_mask
);
341 #endif /* not WINDOWSNT */
342 #endif /* not BSD_SYSTEM, and not HPUX version >= 6 */
347 * flush any pending output
348 * (may flush input as well; it does not matter the way we use it)
352 flush_pending_output (int channel
)
354 /* FIXME: maybe this function should be removed */
357 /* Set up the terminal at the other end of a pseudo-terminal that
358 we will be controlling an inferior through.
359 It should not echo or do line-editing, since that is done
360 in Emacs. No padding needed for insertion into an Emacs buffer. */
363 child_setup_tty (int out
)
368 emacs_get_tty (out
, &s
);
369 s
.main
.c_oflag
|= OPOST
; /* Enable output postprocessing */
370 s
.main
.c_oflag
&= ~ONLCR
; /* Disable map of NL to CR-NL on output */
372 /* http://lists.gnu.org/archive/html/emacs-devel/2008-05/msg00406.html
373 Some versions of GNU Hurd do not have FFDLY? */
375 s
.main
.c_oflag
&= ~(NLDLY
|CRDLY
|TABDLY
|BSDLY
|VTDLY
|FFDLY
);
376 /* No output delays */
378 s
.main
.c_oflag
&= ~(NLDLY
|CRDLY
|TABDLY
|BSDLY
|VTDLY
);
379 /* No output delays */
382 s
.main
.c_lflag
&= ~ECHO
; /* Disable echo */
383 s
.main
.c_lflag
|= ISIG
; /* Enable signals */
385 s
.main
.c_iflag
&= ~IUCLC
; /* Disable downcasing on input. */
388 s
.main
.c_iflag
&= ~ISTRIP
; /* don't strip 8th bit on input */
391 s
.main
.c_oflag
&= ~OLCUC
; /* Disable upcasing on output. */
393 s
.main
.c_oflag
&= ~TAB3
; /* Disable tab expansion */
394 s
.main
.c_cflag
= (s
.main
.c_cflag
& ~CSIZE
) | CS8
; /* Don't strip 8th bit */
395 s
.main
.c_cc
[VERASE
] = CDISABLE
; /* disable erase processing */
396 s
.main
.c_cc
[VKILL
] = CDISABLE
; /* disable kill processing */
399 s
.main
.c_cflag
= (s
.main
.c_cflag
& ~CBAUD
) | B9600
; /* baud rate sanity */
402 #ifdef SIGNALS_VIA_CHARACTERS
403 /* the QUIT and INTR character are used in process_send_signal
404 so set them here to something useful. */
405 if (s
.main
.c_cc
[VQUIT
] == CDISABLE
)
406 s
.main
.c_cc
[VQUIT
] = '\\'&037; /* Control-\ */
407 if (s
.main
.c_cc
[VINTR
] == CDISABLE
)
408 s
.main
.c_cc
[VINTR
] = 'C'&037; /* Control-C */
409 #endif /* not SIGNALS_VIA_CHARACTERS */
412 /* Also, PTY overloads NUL and BREAK.
413 don't ignore break, but don't signal either, so it looks like NUL. */
414 s
.main
.c_iflag
&= ~IGNBRK
;
415 s
.main
.c_iflag
&= ~BRKINT
;
416 /* rms: Formerly it set s.main.c_cc[VINTR] to 0377 here
417 unconditionally. Then a SIGNALS_VIA_CHARACTERS conditional
418 would force it to 0377. That looks like duplicated code. */
419 s
.main
.c_cflag
= (s
.main
.c_cflag
& ~CBAUD
) | B9600
; /* baud rate sanity */
422 /* We originally enabled ICANON (and set VEOF to 04), and then had
423 proces.c send additional EOF chars to flush the output when faced
424 with long lines, but this leads to weird effects when the
425 subprocess has disabled ICANON and ends up seeing those spurious
426 extra EOFs. So we don't send EOFs any more in
427 process.c:send_process. First we tried to disable ICANON by
428 default, so if a subsprocess sets up ICANON, it's his problem (or
429 the Elisp package that talks to it) to deal with lines that are
430 too long. But this disables some features, such as the ability
431 to send EOF signals. So we re-enabled ICANON but there is no
432 more "send eof to flush" going on (which is wrong and unportable
433 in itself). The correct way to handle too much output is to
434 buffer what could not be written and then write it again when
435 select returns ok for writing. This has it own set of
436 problems. Write is now asynchronous, is that a problem? How much
437 do we buffer, and what do we do when that limit is reached? */
439 s
.main
.c_lflag
|= ICANON
; /* Enable line editing and eof processing */
440 s
.main
.c_cc
[VEOF
] = 'D'&037; /* Control-D */
441 #if 0 /* These settings only apply to non-ICANON mode. */
442 s
.main
.c_cc
[VMIN
] = 1;
443 s
.main
.c_cc
[VTIME
] = 0;
446 emacs_set_tty (out
, &s
, 0);
447 #endif /* not WINDOWSNT */
449 #endif /* not MSDOS */
452 /* Record a signal code and the handler for it. */
456 SIGTYPE (*handler
) (int);
459 static void save_signal_handlers (struct save_signal
*);
460 static void restore_signal_handlers (struct save_signal
*);
462 /* Suspend the Emacs process; give terminal to its superior. */
467 #if defined (SIGTSTP) && !defined (MSDOS)
470 int pgrp
= EMACS_GETPGRP (0);
471 EMACS_KILLPG (pgrp
, SIGTSTP
);
474 #else /* No SIGTSTP */
475 /* On a system where suspending is not implemented,
476 instead fork a subshell and let it talk directly to the terminal
480 #endif /* no SIGTSTP */
483 /* Fork a subshell. */
488 #ifdef DOS_NT /* Demacs 1.1.2 91/10/20 Manabu Higashida */
490 char oldwd
[MAXPATHLEN
+1]; /* Fixed length is safe on MSDOS. */
493 struct save_signal saved_handlers
[5];
495 unsigned char *str
= 0;
498 saved_handlers
[0].code
= SIGINT
;
499 saved_handlers
[1].code
= SIGQUIT
;
500 saved_handlers
[2].code
= SIGTERM
;
502 saved_handlers
[3].code
= SIGIO
;
503 saved_handlers
[4].code
= 0;
505 saved_handlers
[3].code
= 0;
508 /* Mentioning current_buffer->buffer would mean including buffer.h,
509 which somehow wedges the hp compiler. So instead... */
511 dir
= intern ("default-directory");
512 if (NILP (Fboundp (dir
)))
514 dir
= Fsymbol_value (dir
);
518 dir
= expand_and_dir_to_file (Funhandled_file_name_directory (dir
), Qnil
);
519 str
= (unsigned char *) alloca (SCHARS (dir
) + 2);
521 memcpy (str
, SDATA (dir
), len
);
522 if (str
[len
- 1] != '/') str
[len
++] = '/';
528 save_signal_handlers (saved_handlers
);
529 synch_process_alive
= 1;
533 error ("Can't spawn subshell");
540 #ifdef DOS_NT /* MW, Aug 1993 */
543 sh
= (char *) egetenv ("SUSPEND"); /* KFS, 1994-12-14 */
546 sh
= (char *) egetenv ("SHELL");
550 /* Use our buffer's default directory for the subshell. */
552 chdir ((char *) str
);
554 close_process_descs (); /* Close Emacs's pipes/ptys */
556 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
558 char *epwd
= getenv ("PWD");
559 char old_pwd
[MAXPATHLEN
+1+4];
561 /* If PWD is set, pass it with corrected value. */
564 strcpy (old_pwd
, epwd
);
565 if (str
[len
- 1] == '/')
567 setenv ("PWD", str
, 1);
572 putenv (old_pwd
); /* restore previous value */
574 #else /* not MSDOS */
576 /* Waits for process completion */
577 pid
= _spawnlp (_P_WAIT
, sh
, sh
, NULL
);
580 write (1, "Can't execute subshell", 22);
581 #else /* not WINDOWSNT */
582 execlp (sh
, sh
, (char *) 0);
583 ignore_value (write (1, "Can't execute subshell", 22));
585 #endif /* not WINDOWSNT */
586 #endif /* not MSDOS */
589 /* Do this now if we did not do it before. */
591 save_signal_handlers (saved_handlers
);
592 synch_process_alive
= 1;
596 wait_for_termination (pid
);
598 restore_signal_handlers (saved_handlers
);
599 synch_process_alive
= 0;
603 save_signal_handlers (struct save_signal
*saved_handlers
)
605 while (saved_handlers
->code
)
607 saved_handlers
->handler
608 = (SIGTYPE (*) (int)) signal (saved_handlers
->code
, SIG_IGN
);
614 restore_signal_handlers (struct save_signal
*saved_handlers
)
616 while (saved_handlers
->code
)
618 signal (saved_handlers
->code
, saved_handlers
->handler
);
624 /* If SIGIO is broken, don't do anything. */
641 unrequest_sigio (void)
648 int old_fcntl_flags
[MAXDESC
];
654 old_fcntl_flags
[fd
] = fcntl (fd
, F_GETFL
, 0) & ~FASYNC
;
655 fcntl (fd
, F_SETFL
, old_fcntl_flags
[fd
] | FASYNC
);
657 interrupts_deferred
= 0;
664 fcntl (fd
, F_SETFL
, old_fcntl_flags
[fd
]);
668 #ifdef FASYNC /* F_SETFL does not imply existence of FASYNC */
669 /* XXX Uhm, FASYNC is not used anymore here. */
670 /* XXX Yeah, but you need it for SIGIO, don't you? */
679 sigunblock (sigmask (SIGWINCH
));
681 sigunblock (sigmask (SIGIO
));
683 interrupts_deferred
= 0;
687 unrequest_sigio (void)
692 #if 0 /* XXX What's wrong with blocking SIGIO under X? */
698 sigblock (sigmask (SIGWINCH
));
700 sigblock (sigmask (SIGIO
));
701 interrupts_deferred
= 1;
704 #else /* no FASYNC */
710 if (noninteractive
|| read_socket_hook
)
713 croak ("request_sigio");
717 unrequest_sigio (void)
719 if (noninteractive
|| read_socket_hook
)
722 croak ("unrequest_sigio");
731 /* Getting and setting emacs_tty structures. */
733 /* Set *TC to the parameters associated with the terminal FD.
734 Return zero if all's well, or -1 if we ran into an error we
735 couldn't deal with. */
737 emacs_get_tty (int fd
, struct emacs_tty
*settings
)
739 /* Retrieve the primary parameters - baud rate, character size, etcetera. */
741 /* We have those nifty POSIX tcmumbleattr functions. */
742 memset (&settings
->main
, 0, sizeof (settings
->main
));
743 if (tcgetattr (fd
, &settings
->main
) < 0)
747 /* We have survived the tempest. */
752 /* Set the parameters of the tty on FD according to the contents of
753 *SETTINGS. If FLUSHP is non-zero, we discard input.
754 Return 0 if all went well, and -1 if anything failed. */
757 emacs_set_tty (int fd
, struct emacs_tty
*settings
, int flushp
)
759 /* Set the primary parameters - baud rate, character size, etcetera. */
762 /* We have those nifty POSIX tcmumbleattr functions.
763 William J. Smith <wjs@wiis.wang.com> writes:
764 "POSIX 1003.1 defines tcsetattr to return success if it was
765 able to perform any of the requested actions, even if some
766 of the requested actions could not be performed.
767 We must read settings back to ensure tty setup properly.
768 AIX requires this to keep tty from hanging occasionally." */
769 /* This make sure that we don't loop indefinitely in here. */
770 for (i
= 0 ; i
< 10 ; i
++)
771 if (tcsetattr (fd
, flushp
? TCSAFLUSH
: TCSADRAIN
, &settings
->main
) < 0)
782 memset (&new, 0, sizeof (new));
783 /* Get the current settings, and see if they're what we asked for. */
784 tcgetattr (fd
, &new);
785 /* We cannot use memcmp on the whole structure here because under
786 * aix386 the termios structure has some reserved field that may
789 if ( new.c_iflag
== settings
->main
.c_iflag
790 && new.c_oflag
== settings
->main
.c_oflag
791 && new.c_cflag
== settings
->main
.c_cflag
792 && new.c_lflag
== settings
->main
.c_lflag
793 && memcmp (new.c_cc
, settings
->main
.c_cc
, NCCS
) == 0)
800 /* We have survived the tempest. */
807 int old_fcntl_owner
[MAXDESC
];
808 #endif /* F_SETOWN */
810 /* This may also be defined in stdio,
811 but if so, this does no harm,
812 and using the same name avoids wasting the other one's space. */
815 unsigned char _sobuf
[BUFSIZ
+8];
820 /* Initialize the terminal mode on all tty devices that are currently
824 init_all_sys_modes (void)
826 struct tty_display_info
*tty
;
827 for (tty
= tty_list
; tty
; tty
= tty
->next
)
828 init_sys_modes (tty
);
831 /* Initialize the terminal mode on the given tty device. */
834 init_sys_modes (struct tty_display_info
*tty_out
)
836 struct emacs_tty tty
;
838 Vtty_erase_char
= Qnil
;
843 if (!tty_out
->output
)
844 return; /* The tty is suspended. */
846 if (! tty_out
->old_tty
)
847 tty_out
->old_tty
= (struct emacs_tty
*) xmalloc (sizeof (struct emacs_tty
));
849 emacs_get_tty (fileno (tty_out
->input
), tty_out
->old_tty
);
851 tty
= *tty_out
->old_tty
;
853 #if !defined (DOS_NT)
854 XSETINT (Vtty_erase_char
, tty
.main
.c_cc
[VERASE
]);
856 tty
.main
.c_iflag
|= (IGNBRK
); /* Ignore break condition */
857 tty
.main
.c_iflag
&= ~ICRNL
; /* Disable map of CR to NL on input */
858 #ifdef INLCR /* I'm just being cautious,
859 since I can't check how widespread INLCR is--rms. */
860 tty
.main
.c_iflag
&= ~INLCR
; /* Disable map of NL to CR on input */
863 tty
.main
.c_iflag
&= ~ISTRIP
; /* don't strip 8th bit on input */
865 tty
.main
.c_lflag
&= ~ECHO
; /* Disable echo */
866 tty
.main
.c_lflag
&= ~ICANON
; /* Disable erase/kill processing */
868 tty
.main
.c_lflag
&= ~IEXTEN
; /* Disable other editing characters. */
870 tty
.main
.c_lflag
|= ISIG
; /* Enable signals */
871 if (tty_out
->flow_control
)
873 tty
.main
.c_iflag
|= IXON
; /* Enable start/stop output control */
875 tty
.main
.c_iflag
&= ~IXANY
;
879 tty
.main
.c_iflag
&= ~IXON
; /* Disable start/stop output control */
880 tty
.main
.c_oflag
&= ~ONLCR
; /* Disable map of NL to CR-NL
882 tty
.main
.c_oflag
&= ~TAB3
; /* Disable tab expansion */
884 if (tty_out
->meta_key
)
886 tty
.main
.c_cflag
|= CS8
; /* allow 8th bit on input */
887 tty
.main
.c_cflag
&= ~PARENB
;/* Don't check parity */
890 if (tty_out
->input
== stdin
)
892 tty
.main
.c_cc
[VINTR
] = quit_char
; /* C-g (usually) gives SIGINT */
893 /* Set up C-g for both SIGQUIT and SIGINT.
894 We don't know which we will get, but we handle both alike
895 so which one it really gives us does not matter. */
896 tty
.main
.c_cc
[VQUIT
] = quit_char
;
900 /* We normally don't get interrupt or quit signals from tty
901 devices other than our controlling terminal; therefore,
902 we must handle C-g as normal input. Unfortunately, this
903 means that the interrupt and quit feature must be
904 disabled on secondary ttys, or we would not even see the
907 Note that even though emacsclient could have special code
908 to pass SIGINT to Emacs, we should _not_ enable
909 interrupt/quit keys for emacsclient frames. This means
910 that we can't break out of loops in C code from a
911 secondary tty frame, but we can always decide what
912 display the C-g came from, which is more important from a
913 usability point of view. (Consider the case when two
914 people work together using the same Emacs instance.) */
915 tty
.main
.c_cc
[VINTR
] = CDISABLE
;
916 tty
.main
.c_cc
[VQUIT
] = CDISABLE
;
918 tty
.main
.c_cc
[VMIN
] = 1; /* Input should wait for at least 1 char */
919 tty
.main
.c_cc
[VTIME
] = 0; /* no matter how long that takes. */
921 tty
.main
.c_cc
[VSWTCH
] = CDISABLE
; /* Turn off shell layering use
926 tty
.main
.c_cc
[VSUSP
] = CDISABLE
; /* Turn off handling of C-z. */
929 tty
.main
.c_cc
[V_DSUSP
] = CDISABLE
; /* Turn off handling of C-y. */
931 #ifdef VDSUSP /* Some systems have VDSUSP, some have V_DSUSP. */
932 tty
.main
.c_cc
[VDSUSP
] = CDISABLE
;
935 tty
.main
.c_cc
[VLNEXT
] = CDISABLE
;
938 tty
.main
.c_cc
[VREPRINT
] = CDISABLE
;
939 #endif /* VREPRINT */
941 tty
.main
.c_cc
[VWERASE
] = CDISABLE
;
944 tty
.main
.c_cc
[VDISCARD
] = CDISABLE
;
945 #endif /* VDISCARD */
947 if (tty_out
->flow_control
)
950 tty
.main
.c_cc
[VSTART
] = '\021';
953 tty
.main
.c_cc
[VSTOP
] = '\023';
959 tty
.main
.c_cc
[VSTART
] = CDISABLE
;
962 tty
.main
.c_cc
[VSTOP
] = CDISABLE
;
967 tty
.main
.c_cc
[VSTRT
] = CDISABLE
;
968 tty
.main
.c_cc
[VSTOP
] = CDISABLE
;
969 tty
.main
.c_cc
[VSUSP
] = CDISABLE
;
970 tty
.main
.c_cc
[VDSUSP
] = CDISABLE
;
971 if (tty_out
->flow_control
)
974 tty
.main
.c_cc
[VSTART
] = '\021';
977 tty
.main
.c_cc
[VSTOP
] = '\023';
980 /* Also, PTY overloads NUL and BREAK.
981 don't ignore break, but don't signal either, so it looks like NUL.
982 This really serves a purpose only if running in an XTERM window
983 or via TELNET or the like, but does no harm elsewhere. */
984 tty
.main
.c_iflag
&= ~IGNBRK
;
985 tty
.main
.c_iflag
&= ~BRKINT
;
987 #endif /* not DOS_NT */
989 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
990 if (!tty_out
->term_initted
)
991 internal_terminal_init ();
995 emacs_set_tty (fileno (tty_out
->input
), &tty
, 0);
997 /* This code added to insure that, if flow-control is not to be used,
998 we have an unlocked terminal at the start. */
1001 if (!tty_out
->flow_control
) ioctl (fileno (tty_out
->input
), TCXONC
, 1);
1004 if (!tty_out
->flow_control
) ioctl (fileno (tty_out
->input
), TIOCSTART
, 0);
1007 #if !defined (DOS_NT)
1009 if (!tty_out
->flow_control
) tcflow (fileno (tty_out
->input
), TCOON
);
1014 #ifdef F_GETOWN /* F_SETFL does not imply existence of F_GETOWN */
1015 if (interrupt_input
)
1017 old_fcntl_owner
[fileno (tty_out
->input
)] =
1018 fcntl (fileno (tty_out
->input
), F_GETOWN
, 0);
1019 fcntl (fileno (tty_out
->input
), F_SETOWN
, getpid ());
1020 init_sigio (fileno (tty_out
->input
));
1022 if (gpm_tty
== tty_out
)
1024 /* Arrange for mouse events to give us SIGIO signals. */
1025 fcntl (gpm_fd
, F_SETOWN
, getpid ());
1026 fcntl (gpm_fd
, F_SETFL
, fcntl (gpm_fd
, F_GETFL
, 0) | O_NONBLOCK
);
1027 init_sigio (gpm_fd
);
1029 #endif /* HAVE_GPM */
1031 #endif /* F_GETOWN */
1032 #endif /* F_SETFL */
1035 /* This symbol is defined on recent USG systems.
1036 Someone says without this call USG won't really buffer the file
1037 even with a call to setbuf. */
1038 setvbuf (tty_out
->output
, (char *) _sobuf
, _IOFBF
, sizeof _sobuf
);
1040 setbuf (tty_out
->output
, (char *) _sobuf
);
1043 if (tty_out
->terminal
->set_terminal_modes_hook
)
1044 tty_out
->terminal
->set_terminal_modes_hook (tty_out
->terminal
);
1046 if (!tty_out
->term_initted
)
1048 Lisp_Object tail
, frame
;
1049 FOR_EACH_FRAME (tail
, frame
)
1051 /* XXX This needs to be revised. */
1052 if (FRAME_TERMCAP_P (XFRAME (frame
))
1053 && FRAME_TTY (XFRAME (frame
)) == tty_out
)
1054 init_frame_faces (XFRAME (frame
));
1058 if (tty_out
->term_initted
&& no_redraw_on_reenter
)
1060 /* We used to call "direct_output_forward_char(0)" here,
1061 but it's not clear why, since it may not do anything anyway. */
1065 Lisp_Object tail
, frame
;
1067 FOR_EACH_FRAME (tail
, frame
)
1069 if ((FRAME_TERMCAP_P (XFRAME (frame
))
1070 || FRAME_MSDOS_P (XFRAME (frame
)))
1071 && FRAME_TTY (XFRAME (frame
)) == tty_out
)
1072 FRAME_GARBAGED_P (XFRAME (frame
)) = 1;
1076 tty_out
->term_initted
= 1;
1079 /* Return nonzero if safe to use tabs in output.
1080 At the time this is called, init_sys_modes has not been done yet. */
1083 tabs_safe_p (int fd
)
1085 struct emacs_tty etty
;
1087 emacs_get_tty (fd
, &etty
);
1090 return ((etty
.main
.c_oflag
& TABDLY
) != TAB3
);
1091 #else /* not TABDLY */
1093 #endif /* not TABDLY */
1099 /* Get terminal size from system.
1100 Store number of lines into *HEIGHTP and width into *WIDTHP.
1101 We store 0 if there's no valid information. */
1104 get_tty_size (int fd
, int *widthp
, int *heightp
)
1110 struct winsize size
;
1112 if (ioctl (fd
, TIOCGWINSZ
, &size
) == -1)
1113 *widthp
= *heightp
= 0;
1116 *widthp
= size
.ws_col
;
1117 *heightp
= size
.ws_row
;
1123 /* SunOS - style. */
1124 struct ttysize size
;
1126 if (ioctl (fd
, TIOCGSIZE
, &size
) == -1)
1127 *widthp
= *heightp
= 0;
1130 *widthp
= size
.ts_cols
;
1131 *heightp
= size
.ts_lines
;
1136 *widthp
= ScreenCols ();
1137 *heightp
= ScreenRows ();
1138 #else /* system doesn't know size */
1142 #endif /* not SunOS-style */
1143 #endif /* not BSD-style */
1146 /* Set the logical window size associated with descriptor FD
1147 to HEIGHT and WIDTH. This is used mainly with ptys. */
1150 set_window_size (int fd
, int height
, int width
)
1155 struct winsize size
;
1156 size
.ws_row
= height
;
1157 size
.ws_col
= width
;
1159 if (ioctl (fd
, TIOCSWINSZ
, &size
) == -1)
1160 return 0; /* error */
1167 /* SunOS - style. */
1168 struct ttysize size
;
1169 size
.ts_lines
= height
;
1170 size
.ts_cols
= width
;
1172 if (ioctl (fd
, TIOCGSIZE
, &size
) == -1)
1178 #endif /* not SunOS-style */
1179 #endif /* not BSD-style */
1184 /* Prepare all terminal devices for exiting Emacs. */
1187 reset_all_sys_modes (void)
1189 struct tty_display_info
*tty
;
1190 for (tty
= tty_list
; tty
; tty
= tty
->next
)
1191 reset_sys_modes (tty
);
1194 /* Prepare the terminal for closing it; move the cursor to the
1195 bottom of the frame, turn off interrupt-driven I/O, etc. */
1198 reset_sys_modes (struct tty_display_info
*tty_out
)
1205 if (!tty_out
->term_initted
)
1208 if (!tty_out
->output
)
1209 return; /* The tty is suspended. */
1211 /* Go to and clear the last line of the terminal. */
1213 cmgoto (tty_out
, FrameRows (tty_out
) - 1, 0);
1215 /* Code adapted from tty_clear_end_of_line. */
1216 if (tty_out
->TS_clr_line
)
1218 emacs_tputs (tty_out
, tty_out
->TS_clr_line
, 1, cmputc
);
1221 { /* have to do it the hard way */
1223 tty_turn_off_insert (tty_out
);
1225 for (i
= curX (tty_out
); i
< FrameCols (tty_out
) - 1; i
++)
1227 fputc (' ', tty_out
->output
);
1231 cmgoto (tty_out
, FrameRows (tty_out
) - 1, 0);
1232 fflush (tty_out
->output
);
1234 if (tty_out
->terminal
->reset_terminal_modes_hook
)
1235 tty_out
->terminal
->reset_terminal_modes_hook (tty_out
->terminal
);
1238 /* Avoid possible loss of output when changing terminal modes. */
1239 fsync (fileno (tty_out
->output
));
1243 #ifdef F_SETOWN /* F_SETFL does not imply existence of F_SETOWN */
1244 if (interrupt_input
)
1246 reset_sigio (fileno (tty_out
->input
));
1247 fcntl (fileno (tty_out
->input
), F_SETOWN
,
1248 old_fcntl_owner
[fileno (tty_out
->input
)]);
1250 #endif /* F_SETOWN */
1252 fcntl (fileno (tty_out
->input
), F_SETFL
,
1253 fcntl (fileno (tty_out
->input
), F_GETFL
, 0) & ~O_NDELAY
);
1255 #endif /* F_SETFL */
1257 if (tty_out
->old_tty
)
1258 while (emacs_set_tty (fileno (tty_out
->input
),
1259 tty_out
->old_tty
, 0) < 0 && errno
== EINTR
)
1262 #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida */
1270 /* Set up the proper status flags for use of a pty. */
1275 /* I'm told that TOICREMOTE does not mean control chars
1276 "can't be sent" but rather that they don't have
1277 input-editing or signaling effects.
1278 That should be good, because we have other ways
1279 to do those things in Emacs.
1280 However, telnet mode seems not to work on 4.2.
1281 So TIOCREMOTE is turned off now. */
1283 /* Under hp-ux, if TIOCREMOTE is turned on, some calls
1284 will hang. In particular, the "timeout" feature (which
1285 causes a read to return if there is no data available)
1286 does this. Also it is known that telnet mode will hang
1287 in such a way that Emacs must be stopped (perhaps this
1288 is the same problem).
1290 If TIOCREMOTE is turned off, then there is a bug in
1291 hp-ux which sometimes loses data. Apparently the
1292 code which blocks the master process when the internal
1293 buffer fills up does not work. Other than this,
1294 though, everything else seems to work fine.
1296 Since the latter lossage is more benign, we may as well
1297 lose that way. -- cph */
1299 #if defined(UNIX98_PTYS)
1302 ioctl (fd
, FIONBIO
, &on
);
1307 #endif /* HAVE_PTYS */
1310 #include <sys/socket.h>
1312 #endif /* HAVE_SOCKETS */
1315 #ifndef HAVE_H_ERRNO
1318 #endif /* TRY_AGAIN */
1321 init_system_name (void)
1323 #ifndef HAVE_GETHOSTNAME
1326 Vsystem_name
= build_string (uts
.nodename
);
1327 #else /* HAVE_GETHOSTNAME */
1328 unsigned int hostname_size
= 256;
1329 char *hostname
= (char *) alloca (hostname_size
);
1331 /* Try to get the host name; if the buffer is too short, try
1332 again. Apparently, the only indication gethostname gives of
1333 whether the buffer was large enough is the presence or absence
1334 of a '\0' in the string. Eech. */
1337 gethostname (hostname
, hostname_size
- 1);
1338 hostname
[hostname_size
- 1] = '\0';
1340 /* Was the buffer large enough for the '\0'? */
1341 if (strlen (hostname
) < hostname_size
- 1)
1344 hostname_size
<<= 1;
1345 hostname
= (char *) alloca (hostname_size
);
1348 /* Turn the hostname into the official, fully-qualified hostname.
1349 Don't do this if we're going to dump; this can confuse system
1350 libraries on some machines and make the dumped emacs core dump. */
1353 #endif /* not CANNOT_DUMP */
1354 if (! strchr (hostname
, '.'))
1357 #ifdef HAVE_GETADDRINFO
1358 struct addrinfo
*res
;
1359 struct addrinfo hints
;
1362 memset (&hints
, 0, sizeof (hints
));
1363 hints
.ai_socktype
= SOCK_STREAM
;
1364 hints
.ai_flags
= AI_CANONNAME
;
1366 for (count
= 0;; count
++)
1368 if ((ret
= getaddrinfo (hostname
, NULL
, &hints
, &res
)) == 0
1369 || ret
!= EAI_AGAIN
)
1374 Fsleep_for (make_number (1), Qnil
);
1379 struct addrinfo
*it
= res
;
1382 char *fqdn
= it
->ai_canonname
;
1383 if (fqdn
&& strchr (fqdn
, '.')
1384 && strcmp (fqdn
, "localhost.localdomain") != 0)
1390 hostname
= alloca (strlen (it
->ai_canonname
) + 1);
1391 strcpy (hostname
, it
->ai_canonname
);
1395 #else /* !HAVE_GETADDRINFO */
1397 for (count
= 0;; count
++)
1403 hp
= gethostbyname (hostname
);
1405 if (! (hp
== 0 && h_errno
== TRY_AGAIN
))
1412 Fsleep_for (make_number (1), Qnil
);
1417 char *fqdn
= (char *) hp
->h_name
;
1419 if (!strchr (fqdn
, '.'))
1421 /* We still don't have a fully qualified domain name.
1422 Try to find one in the list of alternate names */
1423 char **alias
= hp
->h_aliases
;
1425 && (!strchr (*alias
, '.')
1426 || !strcmp (*alias
, "localhost.localdomain")))
1433 #endif /* !HAVE_GETADDRINFO */
1435 #endif /* HAVE_SOCKETS */
1436 Vsystem_name
= build_string (hostname
);
1437 #endif /* HAVE_GETHOSTNAME */
1440 for (p
= SDATA (Vsystem_name
); *p
; p
++)
1441 if (*p
== ' ' || *p
== '\t')
1446 /* POSIX signals support - DJB */
1447 /* Anyone with POSIX signals should have ANSI C declarations */
1449 sigset_t empty_mask
, full_mask
;
1454 sys_signal (int signal_number
, signal_handler_t action
)
1456 struct sigaction new_action
, old_action
;
1457 sigemptyset (&new_action
.sa_mask
);
1458 new_action
.sa_handler
= action
;
1459 new_action
.sa_flags
= 0;
1460 #if defined (SA_RESTART)
1461 /* Emacs mostly works better with restartable system services. If this
1462 flag exists, we probably want to turn it on here.
1463 However, on some systems this resets the timeout of `select'
1464 which means that `select' never finishes if it keeps getting signals.
1465 BROKEN_SA_RESTART is defined on those systems. */
1466 /* It's not clear why the comment above says "mostly works better". --Stef
1467 When SYNC_INPUT is set, we don't want SA_RESTART because we need to poll
1468 for pending input so we need long-running syscalls to be interrupted
1469 after a signal that sets the interrupt_input_pending flag. */
1470 /* Non-interactive keyboard input goes through stdio, where we always
1471 want restartable system calls. */
1472 # if defined (BROKEN_SA_RESTART) || defined(SYNC_INPUT)
1475 new_action
.sa_flags
= SA_RESTART
;
1477 sigaction (signal_number
, &new_action
, &old_action
);
1478 return (old_action
.sa_handler
);
1481 #endif /* WINDOWSNT */
1484 /* If we're compiling with GCC, we don't need this function, since it
1485 can be written as a macro. */
1487 sys_sigmask (int sig
)
1490 sigemptyset (&mask
);
1491 sigaddset (&mask
, sig
);
1496 /* I'd like to have these guys return pointers to the mask storage in here,
1497 but there'd be trouble if the code was saving multiple masks. I'll be
1498 safe and pass the structure. It normally won't be more than 2 bytes
1502 sys_sigblock (sigset_t new_mask
)
1505 sigprocmask (SIG_BLOCK
, &new_mask
, &old_mask
);
1510 sys_sigunblock (sigset_t new_mask
)
1513 sigprocmask (SIG_UNBLOCK
, &new_mask
, &old_mask
);
1518 sys_sigsetmask (sigset_t new_mask
)
1521 sigprocmask (SIG_SETMASK
, &new_mask
, &old_mask
);
1526 #if !defined HAVE_STRSIGNAL && !HAVE_DECL_SYS_SIGLIST
1527 static char *my_sys_siglist
[NSIG
];
1531 # define sys_siglist my_sys_siglist
1537 sigemptyset (&empty_mask
);
1538 sigfillset (&full_mask
);
1540 #if !defined HAVE_STRSIGNAL && !HAVE_DECL_SYS_SIGLIST
1544 sys_siglist
[SIGABRT
] = "Aborted";
1547 sys_siglist
[SIGAIO
] = "LAN I/O interrupt";
1550 sys_siglist
[SIGALRM
] = "Alarm clock";
1553 sys_siglist
[SIGBUS
] = "Bus error";
1556 sys_siglist
[SIGCLD
] = "Child status changed";
1559 sys_siglist
[SIGCHLD
] = "Child status changed";
1562 sys_siglist
[SIGCONT
] = "Continued";
1565 sys_siglist
[SIGDANGER
] = "Swap space dangerously low";
1568 sys_siglist
[SIGDGNOTIFY
] = "Notification message in queue";
1571 sys_siglist
[SIGEMT
] = "Emulation trap";
1574 sys_siglist
[SIGFPE
] = "Arithmetic exception";
1577 sys_siglist
[SIGFREEZE
] = "SIGFREEZE";
1580 sys_siglist
[SIGGRANT
] = "Monitor mode granted";
1583 sys_siglist
[SIGHUP
] = "Hangup";
1586 sys_siglist
[SIGILL
] = "Illegal instruction";
1589 sys_siglist
[SIGINT
] = "Interrupt";
1592 sys_siglist
[SIGIO
] = "I/O possible";
1595 sys_siglist
[SIGIOINT
] = "I/O intervention required";
1598 sys_siglist
[SIGIOT
] = "IOT trap";
1601 sys_siglist
[SIGKILL
] = "Killed";
1604 sys_siglist
[SIGLOST
] = "Resource lost";
1607 sys_siglist
[SIGLWP
] = "SIGLWP";
1610 sys_siglist
[SIGMSG
] = "Monitor mode data available";
1613 sys_siglist
[SIGWIND
] = "SIGPHONE";
1616 sys_siglist
[SIGPIPE
] = "Broken pipe";
1619 sys_siglist
[SIGPOLL
] = "Pollable event occurred";
1622 sys_siglist
[SIGPROF
] = "Profiling timer expired";
1625 sys_siglist
[SIGPTY
] = "PTY I/O interrupt";
1628 sys_siglist
[SIGPWR
] = "Power-fail restart";
1631 sys_siglist
[SIGQUIT
] = "Quit";
1634 sys_siglist
[SIGRETRACT
] = "Need to relinguish monitor mode";
1637 sys_siglist
[SIGSAK
] = "Secure attention";
1640 sys_siglist
[SIGSEGV
] = "Segmentation violation";
1643 sys_siglist
[SIGSOUND
] = "Sound completed";
1646 sys_siglist
[SIGSTOP
] = "Stopped (signal)";
1649 sys_siglist
[SIGSTP
] = "Stopped (user)";
1652 sys_siglist
[SIGSYS
] = "Bad argument to system call";
1655 sys_siglist
[SIGTERM
] = "Terminated";
1658 sys_siglist
[SIGTHAW
] = "SIGTHAW";
1661 sys_siglist
[SIGTRAP
] = "Trace/breakpoint trap";
1664 sys_siglist
[SIGTSTP
] = "Stopped (user)";
1667 sys_siglist
[SIGTTIN
] = "Stopped (tty input)";
1670 sys_siglist
[SIGTTOU
] = "Stopped (tty output)";
1673 sys_siglist
[SIGURG
] = "Urgent I/O condition";
1676 sys_siglist
[SIGUSR1
] = "User defined signal 1";
1679 sys_siglist
[SIGUSR2
] = "User defined signal 2";
1682 sys_siglist
[SIGVTALRM
] = "Virtual timer expired";
1685 sys_siglist
[SIGWAITING
] = "Process's LWPs are blocked";
1688 sys_siglist
[SIGWINCH
] = "Window size changed";
1691 sys_siglist
[SIGWIND
] = "SIGWIND";
1694 sys_siglist
[SIGXCPU
] = "CPU time limit exceeded";
1697 sys_siglist
[SIGXFSZ
] = "File size limit exceeded";
1700 #endif /* !defined HAVE_STRSIGNAL && !defined HAVE_DECL_SYS_SIGLIST */
1709 /* Figure out how many bits the system's random number generator uses.
1710 `random' and `lrand48' are assumed to return 31 usable bits.
1711 BSD `rand' returns a 31 bit value but the low order bits are unusable;
1712 so we'll shift it and treat it like the 15-bit USG `rand'. */
1716 # define RAND_BITS 31
1717 # else /* !HAVE_RANDOM */
1718 # ifdef HAVE_LRAND48
1719 # define RAND_BITS 31
1720 # define random lrand48
1721 # else /* !HAVE_LRAND48 */
1722 # define RAND_BITS 15
1723 # if RAND_MAX == 32767
1724 # define random rand
1725 # else /* RAND_MAX != 32767 */
1726 # if RAND_MAX == 2147483647
1727 # define random() (rand () >> 16)
1728 # else /* RAND_MAX != 2147483647 */
1730 # define random rand
1732 # define random() (rand () >> 16)
1734 # endif /* RAND_MAX != 2147483647 */
1735 # endif /* RAND_MAX != 32767 */
1736 # endif /* !HAVE_LRAND48 */
1737 # endif /* !HAVE_RANDOM */
1738 #endif /* !RAND_BITS */
1741 seed_random (long int arg
)
1744 srandom ((unsigned int)arg
);
1746 # ifdef HAVE_LRAND48
1749 srand ((unsigned int)arg
);
1755 * Build a full Emacs-sized word out of whatever we've got.
1756 * This suffices even for a 64-bit architecture with a 15-bit rand.
1761 long val
= random ();
1762 #if VALBITS > RAND_BITS
1763 val
= (val
<< RAND_BITS
) ^ random ();
1764 #if VALBITS > 2*RAND_BITS
1765 val
= (val
<< RAND_BITS
) ^ random ();
1766 #if VALBITS > 3*RAND_BITS
1767 val
= (val
<< RAND_BITS
) ^ random ();
1768 #if VALBITS > 4*RAND_BITS
1769 val
= (val
<< RAND_BITS
) ^ random ();
1770 #endif /* need at least 5 */
1771 #endif /* need at least 4 */
1772 #endif /* need at least 3 */
1773 #endif /* need at least 2 */
1774 return val
& ((1L << VALBITS
) - 1);
1777 #ifndef HAVE_STRERROR
1783 extern char *sys_errlist
[];
1784 extern int sys_nerr
;
1786 if (errnum
>= 0 && errnum
< sys_nerr
)
1787 return sys_errlist
[errnum
];
1788 return (char *) "Unknown error";
1790 #endif /* not WINDOWSNT */
1791 #endif /* ! HAVE_STRERROR */
1794 emacs_open (const char *path
, int oflag
, int mode
)
1796 register int rtnval
;
1798 while ((rtnval
= open (path
, oflag
, mode
)) == -1
1799 && (errno
== EINTR
))
1805 emacs_close (int fd
)
1808 register int rtnval
;
1810 while ((rtnval
= close (fd
)) == -1
1811 && (errno
== EINTR
))
1814 /* If close is interrupted SunOS 4.1 may or may not have closed the
1815 file descriptor. If it did the second close will fail with
1816 errno = EBADF. That means we have succeeded. */
1817 if (rtnval
== -1 && did_retry
&& errno
== EBADF
)
1824 emacs_read (int fildes
, char *buf
, unsigned int nbyte
)
1826 register int rtnval
;
1828 while ((rtnval
= read (fildes
, buf
, nbyte
)) == -1
1829 && (errno
== EINTR
))
1835 emacs_write (int fildes
, const char *buf
, unsigned int nbyte
)
1837 register int rtnval
, bytes_written
;
1843 rtnval
= write (fildes
, buf
, nbyte
);
1850 /* I originally used `QUIT' but that might causes files to
1851 be truncated if you hit C-g in the middle of it. --Stef */
1852 process_pending_signals ();
1857 return (bytes_written
? bytes_written
: -1);
1862 bytes_written
+= rtnval
;
1864 return (bytes_written
);
1869 * All of the following are for USG.
1871 * On USG systems the system calls are INTERRUPTIBLE by signals
1872 * that the user program has elected to catch. Thus the system call
1873 * must be retried in these cases. To handle this without massive
1874 * changes in the source code, we remap the standard system call names
1875 * to names for our own functions in sysdep.c that do the system call
1876 * with retries. Actually, for portability reasons, it is good
1877 * programming practice, as this example shows, to limit all actual
1878 * system calls to a single occurrence in the source. Sure, this
1879 * adds an extra level of function call overhead but it is almost
1880 * always negligible. Fred Fish, Unisoft Systems Inc.
1884 * Warning, this function may not duplicate 4.2 action properly
1885 * under error conditions.
1889 /* In 4.1, param.h fails to define this. */
1890 #define MAXPATHLEN 1024
1896 getwd (char *pathname
)
1898 char *npath
, *spath
;
1899 extern char *getcwd (char *, size_t);
1901 BLOCK_INPUT
; /* getcwd uses malloc */
1902 spath
= npath
= getcwd ((char *) 0, MAXPATHLEN
);
1908 /* On Altos 3068, getcwd can return @hostname/dir, so discard
1909 up to first slash. Should be harmless on other systems. */
1910 while (*npath
&& *npath
!= '/')
1912 strcpy (pathname
, npath
);
1913 free (spath
); /* getcwd uses malloc */
1918 #endif /* HAVE_GETWD */
1921 * Emulate rename using unlink/link. Note that this is
1922 * only partially correct. Also, doesn't enforce restriction
1923 * that files be of same type (regular->regular, dir->dir, etc).
1929 rename (const char *from
, const char *to
)
1931 if (access (from
, 0) == 0)
1934 if (link (from
, to
) == 0)
1935 if (unlink (from
) == 0)
1944 #if defined(HPUX) && !defined(HAVE_PERROR)
1946 /* HPUX curses library references perror, but as far as we know
1947 it won't be called. Anyway this definition will do for now. */
1953 #endif /* HPUX and not HAVE_PERROR */
1958 * Emulate BSD dup2. First close newd if it already exists.
1959 * Then, attempt to dup oldd. If not successful, call dup2 recursively
1960 * until we are, then close the unsuccessful ones.
1964 dup2 (int oldd
, int newd
)
1966 register int fd
, ret
;
1971 return fcntl (oldd
, F_DUPFD
, newd
);
1978 ret
= dup2 (old
,new);
1984 #endif /* not HAVE_DUP2 */
1987 * Gettimeofday. Simulate as much as possible. Only accurate
1988 * to nearest second. Emacs doesn't use tzp so ignore it for now.
1989 * Only needed when subprocesses are defined.
1992 #ifndef HAVE_GETTIMEOFDAY
1996 gettimeofday (struct timeval
*tp
, struct timezone
*tzp
)
1998 extern long time (long);
2000 tp
->tv_sec
= time ((long *)0);
2003 tzp
->tz_minuteswest
= -1;
2008 #endif /* !HAVE_GETTIMEOFDAY && HAVE_TIMEVAL */
2011 * This function will go away as soon as all the stubs fixed. (fnf)
2015 croak (char *badfunc
)
2017 printf ("%s not yet implemented\r\n", badfunc
);
2018 reset_all_sys_modes ();
2024 /* Directory routines for systems that don't have them. */
2026 #ifdef HAVE_DIRENT_H
2030 #if !defined (HAVE_CLOSEDIR)
2033 closedir (DIR *dirp
/* stream from opendir */)
2037 rtnval
= emacs_close (dirp
->dd_fd
);
2038 xfree ((char *) dirp
);
2042 #endif /* not HAVE_CLOSEDIR */
2043 #endif /* HAVE_DIRENT_H */
2047 set_file_times (const char *filename
, EMACS_TIME atime
, EMACS_TIME mtime
)
2050 struct timeval tv
[2];
2053 return utimes (filename
, tv
);
2054 #else /* not HAVE_UTIMES */
2056 utb
.actime
= EMACS_SECS (atime
);
2057 utb
.modtime
= EMACS_SECS (mtime
);
2058 return utime (filename
, &utb
);
2059 #endif /* not HAVE_UTIMES */
2062 /* mkdir and rmdir functions, for systems which don't have them. */
2066 * Written by Robert Rother, Mariah Corporation, August 1985.
2068 * If you want it, it's yours. All I ask in return is that if you
2069 * figure out how to do this in a Bourne Shell script you send me
2071 * sdcsvax!rmr or rmr@uscd
2073 * Severely hacked over by John Gilmore to make a 4.2BSD compatible
2074 * subroutine. 11Mar86; hoptoad!gnu
2076 * Modified by rmtodd@uokmax 6-28-87 -- when making an already existing dir,
2077 * subroutine didn't return EEXIST. It does now.
2084 mkdir (char *dpath
, int dmode
)
2086 int cpid
, status
, fd
;
2087 struct stat statbuf
;
2089 if (stat (dpath
, &statbuf
) == 0)
2091 errno
= EEXIST
; /* Stat worked, so it already exists */
2095 /* If stat fails for a reason other than non-existence, return error */
2096 if (errno
!= ENOENT
)
2099 synch_process_alive
= 1;
2100 switch (cpid
= fork ())
2103 case -1: /* Error in fork */
2104 return (-1); /* Errno is set already */
2106 case 0: /* Child process */
2108 * Cheap hack to set mode of new directory. Since this
2109 * child process is going away anyway, we zap its umask.
2110 * FIXME, this won't suffice to set SUID, SGID, etc. on this
2111 * directory. Does anybody care?
2113 status
= umask (0); /* Get current umask */
2114 status
= umask (status
| (0777 & ~dmode
)); /* Set for mkdir */
2115 fd
= emacs_open ("/dev/null", O_RDWR
, 0);
2122 execl ("/bin/mkdir", "mkdir", dpath
, (char *) 0);
2123 _exit (-1); /* Can't exec /bin/mkdir */
2125 default: /* Parent process */
2126 wait_for_termination (cpid
);
2129 if (synch_process_death
!= 0 || synch_process_retcode
!= 0
2130 || synch_process_termsig
!= 0)
2132 errno
= EIO
; /* We don't know why, but */
2133 return -1; /* /bin/mkdir failed */
2138 #endif /* not HAVE_MKDIR */
2144 int cpid
, status
, fd
;
2145 struct stat statbuf
;
2147 if (stat (dpath
, &statbuf
) != 0)
2149 /* Stat just set errno. We don't have to */
2153 synch_process_alive
= 1;
2154 switch (cpid
= fork ())
2157 case -1: /* Error in fork */
2158 return (-1); /* Errno is set already */
2160 case 0: /* Child process */
2161 fd
= emacs_open ("/dev/null", O_RDWR
, 0);
2168 execl ("/bin/rmdir", "rmdir", dpath
, (char *) 0);
2169 _exit (-1); /* Can't exec /bin/rmdir */
2171 default: /* Parent process */
2172 wait_for_termination (cpid
);
2175 if (synch_process_death
!= 0 || synch_process_retcode
!= 0
2176 || synch_process_termsig
!= 0)
2178 errno
= EIO
; /* We don't know why, but */
2179 return -1; /* /bin/rmdir failed */
2184 #endif /* !HAVE_RMDIR */
2189 memset (void *b
, int n
, size_t length
)
2191 unsigned char *p
= b
;
2192 while (length
-- > 0)
2196 #endif /* !HAVE_MEMSET */
2200 memcpy (void *b1
, void *b2
, size_t length
)
2202 unsigned char *p1
= b1
, *p2
= b2
;
2203 while (length
-- > 0)
2207 #endif /* !HAVE_MEMCPY */
2209 #ifndef HAVE_MEMMOVE
2211 memmove (void *b1
, void *b2
, size_t length
)
2213 unsigned char *p1
= b1
, *p2
= b2
;
2214 if (p1
< p2
|| p1
>= p2
+ length
)
2215 while (length
-- > 0)
2221 while (length
-- > 0)
2226 #endif /* !HAVE_MEMCPY */
2230 memcmp (void *b1
, void *b2
, size_t length
)
2232 unsigned char *p1
= b1
, *p2
= b2
;
2233 while (length
-- > 0)
2235 return p1
[-1] < p2
[-1] ? -1 : 1;
2238 #endif /* !HAVE_MEMCMP */
2240 #ifndef HAVE_STRSIGNAL
2242 strsignal (int code
)
2246 if (0 <= code
&& code
< NSIG
)
2248 /* Cast to suppress warning if the table has const char *. */
2249 signame
= (char *) sys_siglist
[code
];
2254 #endif /* HAVE_STRSIGNAL */
2257 /* For make-serial-process */
2259 serial_open (char *port
)
2263 fd
= emacs_open ((char*) port
,
2276 error ("Could not open %s: %s",
2277 port
, emacs_strerror (errno
));
2280 ioctl (fd
, TIOCEXCL
, (char *) 0);
2286 #if !defined (HAVE_CFMAKERAW)
2287 /* Workaround for targets which are missing cfmakeraw. */
2288 /* Pasted from man page. */
2290 cfmakeraw (struct termios
*termios_p
)
2292 termios_p
->c_iflag
&= ~(IGNBRK
|BRKINT
|PARMRK
|ISTRIP
|INLCR
|IGNCR
|ICRNL
|IXON
);
2293 termios_p
->c_oflag
&= ~OPOST
;
2294 termios_p
->c_lflag
&= ~(ECHO
|ECHONL
|ICANON
|ISIG
|IEXTEN
);
2295 termios_p
->c_cflag
&= ~(CSIZE
|PARENB
);
2296 termios_p
->c_cflag
|= CS8
;
2298 #endif /* !defined (HAVE_CFMAKERAW */
2300 #if !defined (HAVE_CFSETSPEED)
2301 /* Workaround for targets which are missing cfsetspeed. */
2303 cfsetspeed (struct termios
*termios_p
, speed_t vitesse
)
2305 return (cfsetispeed (termios_p
, vitesse
)
2306 + cfsetospeed (termios_p
, vitesse
));
2310 /* For serial-process-configure */
2312 serial_configure (struct Lisp_Process
*p
,
2313 Lisp_Object contact
)
2315 Lisp_Object childp2
= Qnil
;
2316 Lisp_Object tem
= Qnil
;
2317 struct termios attr
;
2319 char summary
[4] = "???"; /* This usually becomes "8N1". */
2321 childp2
= Fcopy_sequence (p
->childp
);
2323 /* Read port attributes and prepare default configuration. */
2324 err
= tcgetattr (p
->outfd
, &attr
);
2326 error ("tcgetattr() failed: %s", emacs_strerror (errno
));
2328 #if defined (CLOCAL)
2329 attr
.c_cflag
|= CLOCAL
;
2332 attr
.c_cflag
|= CREAD
;
2335 /* Configure speed. */
2336 if (!NILP (Fplist_member (contact
, QCspeed
)))
2337 tem
= Fplist_get (contact
, QCspeed
);
2339 tem
= Fplist_get (p
->childp
, QCspeed
);
2341 err
= cfsetspeed (&attr
, XINT (tem
));
2343 error ("cfsetspeed(%d) failed: %s", XINT (tem
), emacs_strerror (errno
));
2344 childp2
= Fplist_put (childp2
, QCspeed
, tem
);
2346 /* Configure bytesize. */
2347 if (!NILP (Fplist_member (contact
, QCbytesize
)))
2348 tem
= Fplist_get (contact
, QCbytesize
);
2350 tem
= Fplist_get (p
->childp
, QCbytesize
);
2352 tem
= make_number (8);
2354 if (XINT (tem
) != 7 && XINT (tem
) != 8)
2355 error (":bytesize must be nil (8), 7, or 8");
2356 summary
[0] = XINT (tem
) + '0';
2357 #if defined (CSIZE) && defined (CS7) && defined (CS8)
2358 attr
.c_cflag
&= ~CSIZE
;
2359 attr
.c_cflag
|= ((XINT (tem
) == 7) ? CS7
: CS8
);
2361 /* Don't error on bytesize 8, which should be set by cfmakeraw. */
2362 if (XINT (tem
) != 8)
2363 error ("Bytesize cannot be changed");
2365 childp2
= Fplist_put (childp2
, QCbytesize
, tem
);
2367 /* Configure parity. */
2368 if (!NILP (Fplist_member (contact
, QCparity
)))
2369 tem
= Fplist_get (contact
, QCparity
);
2371 tem
= Fplist_get (p
->childp
, QCparity
);
2372 if (!NILP (tem
) && !EQ (tem
, Qeven
) && !EQ (tem
, Qodd
))
2373 error (":parity must be nil (no parity), `even', or `odd'");
2374 #if defined (PARENB) && defined (PARODD) && defined (IGNPAR) && defined (INPCK)
2375 attr
.c_cflag
&= ~(PARENB
| PARODD
);
2376 attr
.c_iflag
&= ~(IGNPAR
| INPCK
);
2381 else if (EQ (tem
, Qeven
))
2384 attr
.c_cflag
|= PARENB
;
2385 attr
.c_iflag
|= (IGNPAR
| INPCK
);
2387 else if (EQ (tem
, Qodd
))
2390 attr
.c_cflag
|= (PARENB
| PARODD
);
2391 attr
.c_iflag
|= (IGNPAR
| INPCK
);
2394 /* Don't error on no parity, which should be set by cfmakeraw. */
2396 error ("Parity cannot be configured");
2398 childp2
= Fplist_put (childp2
, QCparity
, tem
);
2400 /* Configure stopbits. */
2401 if (!NILP (Fplist_member (contact
, QCstopbits
)))
2402 tem
= Fplist_get (contact
, QCstopbits
);
2404 tem
= Fplist_get (p
->childp
, QCstopbits
);
2406 tem
= make_number (1);
2408 if (XINT (tem
) != 1 && XINT (tem
) != 2)
2409 error (":stopbits must be nil (1 stopbit), 1, or 2");
2410 summary
[2] = XINT (tem
) + '0';
2411 #if defined (CSTOPB)
2412 attr
.c_cflag
&= ~CSTOPB
;
2413 if (XINT (tem
) == 2)
2414 attr
.c_cflag
|= CSTOPB
;
2416 /* Don't error on 1 stopbit, which should be set by cfmakeraw. */
2417 if (XINT (tem
) != 1)
2418 error ("Stopbits cannot be configured");
2420 childp2
= Fplist_put (childp2
, QCstopbits
, tem
);
2422 /* Configure flowcontrol. */
2423 if (!NILP (Fplist_member (contact
, QCflowcontrol
)))
2424 tem
= Fplist_get (contact
, QCflowcontrol
);
2426 tem
= Fplist_get (p
->childp
, QCflowcontrol
);
2427 if (!NILP (tem
) && !EQ (tem
, Qhw
) && !EQ (tem
, Qsw
))
2428 error (":flowcontrol must be nil (no flowcontrol), `hw', or `sw'");
2429 #if defined (CRTSCTS)
2430 attr
.c_cflag
&= ~CRTSCTS
;
2432 #if defined (CNEW_RTSCTS)
2433 attr
.c_cflag
&= ~CNEW_RTSCTS
;
2435 #if defined (IXON) && defined (IXOFF)
2436 attr
.c_iflag
&= ~(IXON
| IXOFF
);
2440 /* Already configured. */
2442 else if (EQ (tem
, Qhw
))
2444 #if defined (CRTSCTS)
2445 attr
.c_cflag
|= CRTSCTS
;
2446 #elif defined (CNEW_RTSCTS)
2447 attr
.c_cflag
|= CNEW_RTSCTS
;
2449 error ("Hardware flowcontrol (RTS/CTS) not supported");
2452 else if (EQ (tem
, Qsw
))
2454 #if defined (IXON) && defined (IXOFF)
2455 attr
.c_iflag
|= (IXON
| IXOFF
);
2457 error ("Software flowcontrol (XON/XOFF) not supported");
2460 childp2
= Fplist_put (childp2
, QCflowcontrol
, tem
);
2462 /* Activate configuration. */
2463 err
= tcsetattr (p
->outfd
, TCSANOW
, &attr
);
2465 error ("tcsetattr() failed: %s", emacs_strerror (errno
));
2467 childp2
= Fplist_put (childp2
, QCsummary
, build_string (summary
));
2468 p
->childp
= childp2
;
2471 #endif /* not DOS_NT */
2473 /* System depended enumeration of and access to system processes a-la ps(1). */
2477 /* Process enumeration and access via /proc. */
2480 list_system_processes (void)
2482 Lisp_Object procdir
, match
, proclist
, next
;
2483 struct gcpro gcpro1
, gcpro2
;
2484 register Lisp_Object tail
;
2486 GCPRO2 (procdir
, match
);
2487 /* For every process on the system, there's a directory in the
2488 "/proc" pseudo-directory whose name is the numeric ID of that
2490 procdir
= build_string ("/proc");
2491 match
= build_string ("[0-9]+");
2492 proclist
= directory_files_internal (procdir
, Qnil
, match
, Qt
, 0, Qnil
);
2494 /* `proclist' gives process IDs as strings. Destructively convert
2495 each string into a number. */
2496 for (tail
= proclist
; CONSP (tail
); tail
= next
)
2499 XSETCAR (tail
, Fstring_to_number (XCAR (tail
), Qnil
));
2503 /* directory_files_internal returns the files in reverse order; undo
2505 proclist
= Fnreverse (proclist
);
2509 /* The WINDOWSNT implementation is in w32.c.
2510 The MSDOS implementation is in dosfns.c. */
2511 #elif !defined (WINDOWSNT) && !defined (MSDOS)
2514 list_system_processes (void)
2519 #endif /* !defined (WINDOWSNT) */
2523 time_from_jiffies (unsigned long long tval
, long hz
,
2524 time_t *sec
, unsigned *usec
)
2526 unsigned long long ullsec
;
2530 tval
-= ullsec
* hz
;
2531 /* Careful: if HZ > 1 million, then integer division by it yields zero. */
2533 *usec
= tval
* 1000000 / hz
;
2535 *usec
= tval
/ (hz
/ 1000000);
2539 ltime_from_jiffies (unsigned long long tval
, long hz
)
2544 time_from_jiffies (tval
, hz
, &sec
, &usec
);
2546 return list3 (make_number ((sec
>> 16) & 0xffff),
2547 make_number (sec
& 0xffff),
2548 make_number (usec
));
2552 get_up_time (time_t *sec
, unsigned *usec
)
2559 fup
= fopen ("/proc/uptime", "r");
2563 double uptime
, idletime
;
2565 /* The numbers in /proc/uptime use C-locale decimal point, but
2566 we already set ourselves to the C locale (see `fixup_locale'
2568 if (2 <= fscanf (fup
, "%lf %lf", &uptime
, &idletime
))
2571 *usec
= (uptime
- *sec
) * 1000000;
2578 #define MAJOR(d) (((unsigned)(d) >> 8) & 0xfff)
2579 #define MINOR(d) (((unsigned)(d) & 0xff) | (((unsigned)(d) & 0xfff00000) >> 12))
2582 procfs_ttyname (int rdev
)
2585 char name
[PATH_MAX
];
2588 fdev
= fopen ("/proc/tty/drivers", "r");
2593 unsigned long minor_beg
, minor_end
;
2594 char minor
[25]; /* 2 32-bit numbers + dash */
2597 while (!feof (fdev
) && !ferror (fdev
))
2599 if (3 <= fscanf (fdev
, "%*s %s %u %s %*s\n", name
, &major
, minor
)
2600 && major
== MAJOR (rdev
))
2602 minor_beg
= strtoul (minor
, &endp
, 0);
2604 minor_end
= minor_beg
;
2605 else if (*endp
== '-')
2606 minor_end
= strtoul (endp
+ 1, &endp
, 0);
2610 if (MINOR (rdev
) >= minor_beg
&& MINOR (rdev
) <= minor_end
)
2612 sprintf (name
+ strlen (name
), "%u", MINOR (rdev
));
2620 return build_string (name
);
2623 static unsigned long
2624 procfs_get_total_memory (void)
2627 unsigned long retval
= 2 * 1024 * 1024; /* default: 2GB */
2630 fmem
= fopen ("/proc/meminfo", "r");
2634 unsigned long entry_value
;
2635 char entry_name
[20]; /* the longest I saw is 13+1 */
2637 while (!feof (fmem
) && !ferror (fmem
))
2639 if (2 <= fscanf (fmem
, "%s %lu kB\n", entry_name
, &entry_value
)
2640 && strcmp (entry_name
, "MemTotal:") == 0)
2642 retval
= entry_value
;
2653 system_process_attributes (Lisp_Object pid
)
2655 char procfn
[PATH_MAX
], fn
[PATH_MAX
];
2659 long clocks_per_sec
;
2661 char procbuf
[1025], *p
, *q
;
2664 const char *cmd
= NULL
;
2665 char *cmdline
= NULL
;
2666 size_t cmdsize
= 0, cmdline_size
;
2668 int proc_id
, ppid
, uid
, gid
, pgrp
, sess
, tty
, tpgid
, thcount
;
2669 unsigned long long utime
, stime
, cutime
, cstime
, start
;
2670 long priority
, nice
, rss
;
2671 unsigned long minflt
, majflt
, cminflt
, cmajflt
, vsize
;
2674 EMACS_TIME tnow
, tstart
, tboot
, telapsed
;
2676 Lisp_Object attrs
= Qnil
;
2677 Lisp_Object cmd_str
, decoded_cmd
, tem
;
2678 struct gcpro gcpro1
, gcpro2
;
2679 EMACS_INT uid_eint
, gid_eint
;
2681 CHECK_NUMBER_OR_FLOAT (pid
);
2682 proc_id
= FLOATP (pid
) ? XFLOAT_DATA (pid
) : XINT (pid
);
2683 sprintf (procfn
, "/proc/%u", proc_id
);
2684 if (stat (procfn
, &st
) < 0)
2687 GCPRO2 (attrs
, decoded_cmd
);
2691 /* Use of EMACS_INT stops GCC whining about limited range of data type. */
2693 attrs
= Fcons (Fcons (Qeuid
, make_fixnum_or_float (uid_eint
)), attrs
);
2695 pw
= getpwuid (uid
);
2698 attrs
= Fcons (Fcons (Quser
, build_string (pw
->pw_name
)), attrs
);
2702 attrs
= Fcons (Fcons (Qegid
, make_fixnum_or_float (gid_eint
)), attrs
);
2704 gr
= getgrgid (gid
);
2707 attrs
= Fcons (Fcons (Qgroup
, build_string (gr
->gr_name
)), attrs
);
2709 strcpy (fn
, procfn
);
2710 procfn_end
= fn
+ strlen (fn
);
2711 strcpy (procfn_end
, "/stat");
2712 fd
= emacs_open (fn
, O_RDONLY
, 0);
2713 if (fd
>= 0 && (nread
= emacs_read (fd
, procbuf
, sizeof (procbuf
) - 1)) > 0)
2715 procbuf
[nread
] = '\0';
2718 p
= strchr (p
, '(');
2721 q
= strrchr (p
+ 1, ')');
2736 /* Command name is encoded in locale-coding-system; decode it. */
2737 cmd_str
= make_unibyte_string (cmd
, cmdsize
);
2738 decoded_cmd
= code_convert_string_norecord (cmd_str
,
2739 Vlocale_coding_system
, 0);
2740 attrs
= Fcons (Fcons (Qcomm
, decoded_cmd
), attrs
);
2744 EMACS_INT ppid_eint
, pgrp_eint
, sess_eint
, tpgid_eint
, thcount_eint
;
2746 /* state ppid pgrp sess tty tpgid . minflt cminflt majflt cmajflt utime stime cutime cstime priority nice thcount . start vsize rss */
2747 sscanf (p
, "%c %d %d %d %d %d %*u %lu %lu %lu %lu %Lu %Lu %Lu %Lu %ld %ld %d %*d %Lu %lu %ld",
2748 &c
, &ppid
, &pgrp
, &sess
, &tty
, &tpgid
,
2749 &minflt
, &cminflt
, &majflt
, &cmajflt
,
2750 &utime
, &stime
, &cutime
, &cstime
,
2751 &priority
, &nice
, &thcount
, &start
, &vsize
, &rss
);
2756 state_str
[1] = '\0';
2757 tem
= build_string (state_str
);
2758 attrs
= Fcons (Fcons (Qstate
, tem
), attrs
);
2760 /* Stops GCC whining about limited range of data type. */
2765 thcount_eint
= thcount
;
2766 attrs
= Fcons (Fcons (Qppid
, make_fixnum_or_float (ppid_eint
)), attrs
);
2767 attrs
= Fcons (Fcons (Qpgrp
, make_fixnum_or_float (pgrp_eint
)), attrs
);
2768 attrs
= Fcons (Fcons (Qsess
, make_fixnum_or_float (sess_eint
)), attrs
);
2769 attrs
= Fcons (Fcons (Qttname
, procfs_ttyname (tty
)), attrs
);
2770 attrs
= Fcons (Fcons (Qtpgid
, make_fixnum_or_float (tpgid_eint
)), attrs
);
2771 attrs
= Fcons (Fcons (Qminflt
, make_fixnum_or_float (minflt
)), attrs
);
2772 attrs
= Fcons (Fcons (Qmajflt
, make_fixnum_or_float (majflt
)), attrs
);
2773 attrs
= Fcons (Fcons (Qcminflt
, make_fixnum_or_float (cminflt
)), attrs
);
2774 attrs
= Fcons (Fcons (Qcmajflt
, make_fixnum_or_float (cmajflt
)), attrs
);
2775 clocks_per_sec
= sysconf (_SC_CLK_TCK
);
2776 if (clocks_per_sec
< 0)
2777 clocks_per_sec
= 100;
2778 attrs
= Fcons (Fcons (Qutime
,
2779 ltime_from_jiffies (utime
, clocks_per_sec
)),
2781 attrs
= Fcons (Fcons (Qstime
,
2782 ltime_from_jiffies (stime
, clocks_per_sec
)),
2784 attrs
= Fcons (Fcons (Qtime
,
2785 ltime_from_jiffies (stime
+utime
, clocks_per_sec
)),
2787 attrs
= Fcons (Fcons (Qcutime
,
2788 ltime_from_jiffies (cutime
, clocks_per_sec
)),
2790 attrs
= Fcons (Fcons (Qcstime
,
2791 ltime_from_jiffies (cstime
, clocks_per_sec
)),
2793 attrs
= Fcons (Fcons (Qctime
,
2794 ltime_from_jiffies (cstime
+cutime
, clocks_per_sec
)),
2796 attrs
= Fcons (Fcons (Qpri
, make_number (priority
)), attrs
);
2797 attrs
= Fcons (Fcons (Qnice
, make_number (nice
)), attrs
);
2798 attrs
= Fcons (Fcons (Qthcount
, make_fixnum_or_float (thcount_eint
)), attrs
);
2799 EMACS_GET_TIME (tnow
);
2800 get_up_time (&sec
, &usec
);
2801 EMACS_SET_SECS (telapsed
, sec
);
2802 EMACS_SET_USECS (telapsed
, usec
);
2803 EMACS_SUB_TIME (tboot
, tnow
, telapsed
);
2804 time_from_jiffies (start
, clocks_per_sec
, &sec
, &usec
);
2805 EMACS_SET_SECS (tstart
, sec
);
2806 EMACS_SET_USECS (tstart
, usec
);
2807 EMACS_ADD_TIME (tstart
, tboot
, tstart
);
2808 attrs
= Fcons (Fcons (Qstart
,
2810 ((EMACS_SECS (tstart
) >> 16) & 0xffff),
2812 (EMACS_SECS (tstart
) & 0xffff),
2814 (EMACS_USECS (tstart
)))),
2816 attrs
= Fcons (Fcons (Qvsize
, make_fixnum_or_float (vsize
/1024)), attrs
);
2817 attrs
= Fcons (Fcons (Qrss
, make_fixnum_or_float (4*rss
)), attrs
);
2818 EMACS_SUB_TIME (telapsed
, tnow
, tstart
);
2819 attrs
= Fcons (Fcons (Qetime
,
2821 ((EMACS_SECS (telapsed
) >> 16) & 0xffff),
2823 (EMACS_SECS (telapsed
) & 0xffff),
2825 (EMACS_USECS (telapsed
)))),
2827 time_from_jiffies (utime
+ stime
, clocks_per_sec
, &sec
, &usec
);
2828 pcpu
= (sec
+ usec
/ 1000000.0) / (EMACS_SECS (telapsed
) + EMACS_USECS (telapsed
) / 1000000.0);
2831 attrs
= Fcons (Fcons (Qpcpu
, make_float (100 * pcpu
)), attrs
);
2832 pmem
= 4.0 * 100 * rss
/ procfs_get_total_memory ();
2835 attrs
= Fcons (Fcons (Qpmem
, make_float (pmem
)), attrs
);
2842 strcpy (procfn_end
, "/cmdline");
2843 fd
= emacs_open (fn
, O_RDONLY
, 0);
2846 for (cmdline_size
= 0; emacs_read (fd
, &c
, 1) == 1; cmdline_size
++)
2848 if (isspace (c
) || c
== '\\')
2849 cmdline_size
++; /* for later quoting, see below */
2853 cmdline
= xmalloc (cmdline_size
+ 1);
2854 lseek (fd
, 0L, SEEK_SET
);
2856 if ((nread
= read (fd
, cmdline
, cmdline_size
)) >= 0)
2857 cmdline
[nread
++] = '\0';
2860 /* Assigning zero to `nread' makes us skip the following
2861 two loops, assign zero to cmdline_size, and enter the
2862 following `if' clause that handles unknown command
2866 /* We don't want trailing null characters. */
2867 for (p
= cmdline
+ nread
- 1; p
> cmdline
&& !*p
; p
--)
2869 for (p
= cmdline
; p
< cmdline
+ nread
; p
++)
2871 /* Escape-quote whitespace and backslashes. */
2872 if (isspace (*p
) || *p
== '\\')
2874 memmove (p
+ 1, p
, nread
- (p
- cmdline
));
2878 else if (*p
== '\0')
2881 cmdline_size
= nread
;
2888 cmdsize
= strlen (cmd
);
2889 cmdline_size
= cmdsize
+ 2;
2890 cmdline
= xmalloc (cmdline_size
+ 1);
2891 strcpy (cmdline
, "[");
2892 strcat (strncat (cmdline
, cmd
, cmdsize
), "]");
2895 /* Command line is encoded in locale-coding-system; decode it. */
2896 cmd_str
= make_unibyte_string (cmdline
, cmdline_size
);
2897 decoded_cmd
= code_convert_string_norecord (cmd_str
,
2898 Vlocale_coding_system
, 0);
2900 attrs
= Fcons (Fcons (Qargs
, decoded_cmd
), attrs
);
2907 #elif defined (SOLARIS2) && defined (HAVE_PROCFS)
2909 /* The <procfs.h> header does not like to be included if _LP64 is defined and
2910 __FILE_OFFSET_BITS == 64. This is an ugly workaround that. */
2911 #if !defined (_LP64) && defined (_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)
2912 #define PROCFS_FILE_OFFSET_BITS_HACK 1
2913 #undef _FILE_OFFSET_BITS
2915 #define PROCFS_FILE_OFFSET_BITS_HACK 0
2920 #if PROCFS_FILE_OFFSET_BITS_HACK == 1
2921 #define _FILE_OFFSET_BITS 64
2922 #endif /* PROCFS_FILE_OFFSET_BITS_HACK == 1 */
2925 system_process_attributes (Lisp_Object pid
)
2927 char procfn
[PATH_MAX
], fn
[PATH_MAX
];
2932 struct psinfo pinfo
;
2935 int proc_id
, uid
, gid
;
2936 Lisp_Object attrs
= Qnil
;
2937 Lisp_Object decoded_cmd
, tem
;
2938 struct gcpro gcpro1
, gcpro2
;
2939 EMACS_INT uid_eint
, gid_eint
;
2941 CHECK_NUMBER_OR_FLOAT (pid
);
2942 proc_id
= FLOATP (pid
) ? XFLOAT_DATA (pid
) : XINT (pid
);
2943 sprintf (procfn
, "/proc/%u", proc_id
);
2944 if (stat (procfn
, &st
) < 0)
2947 GCPRO2 (attrs
, decoded_cmd
);
2951 /* Use of EMACS_INT stops GCC whining about limited range of data type. */
2953 attrs
= Fcons (Fcons (Qeuid
, make_fixnum_or_float (uid_eint
)), attrs
);
2955 pw
= getpwuid (uid
);
2958 attrs
= Fcons (Fcons (Quser
, build_string (pw
->pw_name
)), attrs
);
2962 attrs
= Fcons (Fcons (Qegid
, make_fixnum_or_float (gid_eint
)), attrs
);
2964 gr
= getgrgid (gid
);
2967 attrs
= Fcons (Fcons (Qgroup
, build_string (gr
->gr_name
)), attrs
);
2969 strcpy (fn
, procfn
);
2970 procfn_end
= fn
+ strlen (fn
);
2971 strcpy (procfn_end
, "/psinfo");
2972 fd
= emacs_open (fn
, O_RDONLY
, 0);
2974 && (nread
= read (fd
, (char*)&pinfo
, sizeof (struct psinfo
)) > 0))
2976 attrs
= Fcons (Fcons (Qppid
, make_fixnum_or_float (pinfo
.pr_ppid
)), attrs
);
2977 attrs
= Fcons (Fcons (Qpgrp
, make_fixnum_or_float (pinfo
.pr_pgid
)), attrs
);
2978 attrs
= Fcons (Fcons (Qsess
, make_fixnum_or_float (pinfo
.pr_sid
)), attrs
);
2982 state_str
[0] = pinfo
.pr_lwp
.pr_sname
;
2983 state_str
[1] = '\0';
2984 tem
= build_string (state_str
);
2985 attrs
= Fcons (Fcons (Qstate
, tem
), attrs
);
2988 /* FIXME: missing Qttyname. psinfo.pr_ttydev is a dev_t,
2989 need to get a string from it. */
2991 /* FIXME: missing: Qtpgid */
3003 Are they available? */
3005 attrs
= Fcons (Fcons (Qtime
,
3006 list3 (make_number (pinfo
.pr_time
.tv_sec
>> 16),
3007 make_number (pinfo
.pr_time
.tv_sec
& 0xffff),
3008 make_number (pinfo
.pr_time
.tv_nsec
))),
3011 attrs
= Fcons (Fcons (Qctime
,
3012 list3 (make_number (pinfo
.pr_ctime
.tv_sec
>> 16),
3013 make_number (pinfo
.pr_ctime
.tv_sec
& 0xffff),
3014 make_number (pinfo
.pr_ctime
.tv_nsec
))),
3017 attrs
= Fcons (Fcons (Qpri
, make_number (pinfo
.pr_lwp
.pr_pri
)), attrs
);
3018 attrs
= Fcons (Fcons (Qnice
, make_number (pinfo
.pr_lwp
.pr_nice
)), attrs
);
3019 attrs
= Fcons (Fcons (Qthcount
, make_fixnum_or_float (pinfo
.pr_nlwp
)), attrs
);
3021 attrs
= Fcons (Fcons (Qstart
,
3022 list3 (make_number (pinfo
.pr_start
.tv_sec
>> 16),
3023 make_number (pinfo
.pr_start
.tv_sec
& 0xffff),
3024 make_number (pinfo
.pr_start
.tv_nsec
))),
3026 attrs
= Fcons (Fcons (Qvsize
, make_fixnum_or_float (pinfo
.pr_size
)), attrs
);
3027 attrs
= Fcons (Fcons (Qrss
, make_fixnum_or_float (pinfo
.pr_rssize
)), attrs
);
3029 /* pr_pctcpu and pr_pctmem are encoded as a fixed point 16 bit number in [0 ... 1]. */
3030 attrs
= Fcons (Fcons (Qpcpu
, (pinfo
.pr_pctcpu
* 100.0) / (double)0x8000), attrs
);
3031 attrs
= Fcons (Fcons (Qpmem
, (pinfo
.pr_pctmem
* 100.0) / (double)0x8000), attrs
);
3034 = code_convert_string_norecord (make_unibyte_string (pinfo
.pr_fname
,
3035 strlen (pinfo
.pr_fname
)),
3036 Vlocale_coding_system
, 0);
3037 attrs
= Fcons (Fcons (Qcomm
, decoded_cmd
), attrs
);
3039 = code_convert_string_norecord (make_unibyte_string (pinfo
.pr_psargs
,
3040 strlen (pinfo
.pr_psargs
)),
3041 Vlocale_coding_system
, 0);
3042 attrs
= Fcons (Fcons (Qargs
, decoded_cmd
), attrs
);
3052 /* The WINDOWSNT implementation is in w32.c.
3053 The MSDOS implementation is in dosfns.c. */
3054 #elif !defined (WINDOWSNT) && !defined (MSDOS)
3057 system_process_attributes (Lisp_Object pid
)
3062 #endif /* !defined (WINDOWSNT) */