1 /* Asynchronous subprocess control for GNU Emacs.
2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 96, 98, 1999
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 2, or (at your option)
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; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
23 #define _GNU_SOURCE /* to get strsignal declared with glibc 2 */
27 /* This file is split into two parts by the following preprocessor
28 conditional. The 'then' clause contains all of the support for
29 asynchronous subprocesses. The 'else' clause contains stub
30 versions of some of the asynchronous subprocess routines that are
31 often called elsewhere in Emacs, so we don't have to #ifdef the
32 sections that call them. */
40 #include <sys/types.h> /* some typedefs are used in sys/file.h */
47 #if defined(WINDOWSNT) || defined(UNIX98_PTYS)
50 #endif /* not WINDOWSNT */
52 #ifdef HAVE_SOCKETS /* TCP connection support, if kernel can do it */
53 #include <sys/socket.h>
55 #include <netinet/in.h>
56 #include <arpa/inet.h>
57 #ifdef NEED_NET_ERRNO_H
58 #include <net/errno.h>
59 #endif /* NEED_NET_ERRNO_H */
60 #endif /* HAVE_SOCKETS */
62 /* TERM is a poor-man's SLIP, used on GNU/Linux. */
67 /* On some systems, e.g. DGUX, inet_addr returns a 'struct in_addr'. */
68 #ifdef HAVE_BROKEN_INET_ADDR
69 #define IN_ADDR struct in_addr
70 #define NUMERIC_ADDR_ERROR (numeric_addr.s_addr == -1)
72 #define IN_ADDR unsigned long
73 #define NUMERIC_ADDR_ERROR (numeric_addr == -1)
76 #if defined(BSD_SYSTEM) || defined(STRIDE)
77 #include <sys/ioctl.h>
78 #if !defined (O_NDELAY) && defined (HAVE_PTYS) && !defined(USG5)
80 #endif /* HAVE_PTYS and no O_NDELAY */
81 #endif /* BSD_SYSTEM || STRIDE */
83 #ifdef BROKEN_O_NONBLOCK
85 #endif /* BROKEN_O_NONBLOCK */
92 #include <sys/sysmacros.h> /* for "minor" */
104 #include "termhooks.h"
105 #include "termopts.h"
106 #include "commands.h"
108 #include "blockinput.h"
109 #include "keyboard.h"
110 #include "dispextern.h"
111 #include "composite.h"
114 #define max(a, b) ((a) > (b) ? (a) : (b))
116 Lisp_Object Qprocessp
;
117 Lisp_Object Qrun
, Qstop
, Qsignal
, Qopen
, Qclosed
;
118 Lisp_Object Qlast_nonmenu_event
;
119 /* Qexit is declared and initialized in eval.c. */
121 /* a process object is a network connection when its childp field is neither
122 Qt nor Qnil but is instead a cons cell (HOSTNAME PORTNUM). */
125 #define NETCONN_P(p) (GC_CONSP (XPROCESS (p)->childp))
127 #define NETCONN_P(p) 0
128 #endif /* HAVE_SOCKETS */
130 /* Define first descriptor number available for subprocesses. */
132 #define FIRST_PROC_DESC 1
134 #define FIRST_PROC_DESC 3
137 /* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
140 #if !defined (SIGCHLD) && defined (SIGCLD)
141 #define SIGCHLD SIGCLD
144 #include "syssignal.h"
148 extern void set_waiting_for_input
P_ ((EMACS_TIME
*));
152 extern char *sys_errlist
[];
159 /* t means use pty, nil means use a pipe,
160 maybe other values to come. */
161 static Lisp_Object Vprocess_connection_type
;
165 #include <sys/socket.h>
169 /* These next two vars are non-static since sysdep.c uses them in the
170 emulation of `select'. */
171 /* Number of events of change of status of a process. */
173 /* Number of events for which the user or sentinel has been notified. */
176 #include "sysselect.h"
178 extern int keyboard_bit_set
P_ ((SELECT_TYPE
*));
180 /* If we support a window system, turn on the code to poll periodically
181 to detect C-g. It isn't actually used when doing interrupt input. */
182 #ifdef HAVE_WINDOW_SYSTEM
183 #define POLL_FOR_INPUT
186 /* Mask of bits indicating the descriptors that we wait for input on. */
188 static SELECT_TYPE input_wait_mask
;
190 /* Mask that excludes keyboard input descriptor (s). */
192 static SELECT_TYPE non_keyboard_wait_mask
;
194 /* Mask that excludes process input descriptor (s). */
196 static SELECT_TYPE non_process_wait_mask
;
198 /* The largest descriptor currently in use for a process object. */
199 static int max_process_desc
;
201 /* The largest descriptor currently in use for keyboard input. */
202 static int max_keyboard_desc
;
204 /* Nonzero means delete a process right away if it exits. */
205 static int delete_exited_processes
;
207 /* Indexed by descriptor, gives the process (if any) for that descriptor */
208 Lisp_Object chan_process
[MAXDESC
];
210 /* Alist of elements (NAME . PROCESS) */
211 Lisp_Object Vprocess_alist
;
213 /* Buffered-ahead input char from process, indexed by channel.
214 -1 means empty (no char is buffered).
215 Used on sys V where the only way to tell if there is any
216 output from the process is to read at least one char.
217 Always -1 on systems that support FIONREAD. */
219 /* Don't make static; need to access externally. */
220 int proc_buffered_char
[MAXDESC
];
222 /* Table of `struct coding-system' for each process. */
223 static struct coding_system
*proc_decode_coding_system
[MAXDESC
];
224 static struct coding_system
*proc_encode_coding_system
[MAXDESC
];
226 static Lisp_Object
get_process ();
228 extern EMACS_TIME
timer_check ();
229 extern int timers_run
;
231 /* Maximum number of bytes to send to a pty without an eof. */
232 static int pty_max_bytes
;
234 extern Lisp_Object Vfile_name_coding_system
, Vdefault_file_name_coding_system
;
237 /* The file name of the pty opened by allocate_pty. */
239 static char pty_name
[24];
242 /* Compute the Lisp form of the process status, p->status, from
243 the numeric status that was returned by `wait'. */
245 Lisp_Object
status_convert ();
249 struct Lisp_Process
*p
;
251 union { int i
; WAITTYPE wt
; } u
;
252 u
.i
= XFASTINT (p
->raw_status_low
) + (XFASTINT (p
->raw_status_high
) << 16);
253 p
->status
= status_convert (u
.wt
);
254 p
->raw_status_low
= Qnil
;
255 p
->raw_status_high
= Qnil
;
258 /* Convert a process status word in Unix format to
259 the list that we use internally. */
266 return Fcons (Qstop
, Fcons (make_number (WSTOPSIG (w
)), Qnil
));
267 else if (WIFEXITED (w
))
268 return Fcons (Qexit
, Fcons (make_number (WRETCODE (w
)),
269 WCOREDUMP (w
) ? Qt
: Qnil
));
270 else if (WIFSIGNALED (w
))
271 return Fcons (Qsignal
, Fcons (make_number (WTERMSIG (w
)),
272 WCOREDUMP (w
) ? Qt
: Qnil
));
277 /* Given a status-list, extract the three pieces of information
278 and store them individually through the three pointers. */
281 decode_status (l
, symbol
, code
, coredump
)
299 *code
= XFASTINT (XCAR (tem
));
301 *coredump
= !NILP (tem
);
305 /* Return a string describing a process status list. */
308 status_message (status
)
313 Lisp_Object string
, string2
;
315 decode_status (status
, &symbol
, &code
, &coredump
);
317 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qstop
))
320 synchronize_system_messages_locale ();
321 signame
= strsignal (code
);
324 string
= build_string (signame
);
325 string2
= build_string (coredump
? " (core dumped)\n" : "\n");
326 XSTRING (string
)->data
[0] = DOWNCASE (XSTRING (string
)->data
[0]);
327 return concat2 (string
, string2
);
329 else if (EQ (symbol
, Qexit
))
332 return build_string ("finished\n");
333 string
= Fnumber_to_string (make_number (code
));
334 string2
= build_string (coredump
? " (core dumped)\n" : "\n");
335 return concat2 (build_string ("exited abnormally with code "),
336 concat2 (string
, string2
));
339 return Fcopy_sequence (Fsymbol_name (symbol
));
344 /* Open an available pty, returning a file descriptor.
345 Return -1 on failure.
346 The file name of the terminal corresponding to the pty
347 is left in the variable pty_name. */
356 /* Some systems name their pseudoterminals so that there are gaps in
357 the usual sequence - for example, on HP9000/S700 systems, there
358 are no pseudoterminals with names ending in 'f'. So we wait for
359 three failures in a row before deciding that we've reached the
361 int failed_count
= 0;
366 for (c
= FIRST_PTY_LETTER
; c
<= 'z'; c
++)
367 for (i
= 0; i
< 16; i
++)
370 #ifdef PTY_NAME_SPRINTF
373 sprintf (pty_name
, "/dev/pty%c%x", c
, i
);
374 #endif /* no PTY_NAME_SPRINTF */
378 #else /* no PTY_OPEN */
380 /* Unusual IRIS code */
381 *ptyv
= emacs_open ("/dev/ptc", O_RDWR
| O_NDELAY
, 0);
384 if (fstat (fd
, &stb
) < 0)
387 if (stat (pty_name
, &stb
) < 0)
390 if (failed_count
>= 3)
396 fd
= emacs_open (pty_name
, O_RDWR
| O_NONBLOCK
, 0);
398 fd
= emacs_open (pty_name
, O_RDWR
| O_NDELAY
, 0);
400 #endif /* not IRIS */
401 #endif /* no PTY_OPEN */
405 /* check to make certain that both sides are available
406 this avoids a nasty yet stupid bug in rlogins */
407 #ifdef PTY_TTY_NAME_SPRINTF
410 sprintf (pty_name
, "/dev/tty%c%x", c
, i
);
411 #endif /* no PTY_TTY_NAME_SPRINTF */
413 if (access (pty_name
, 6) != 0)
416 #if !defined(IRIS) && !defined(__sgi)
422 #endif /* not UNIPLUS */
429 #endif /* HAVE_PTYS */
435 struct Lisp_Vector
*vec
;
436 register Lisp_Object val
, tem
, name1
;
437 register struct Lisp_Process
*p
;
441 vec
= allocate_vectorlike ((EMACS_INT
) VECSIZE (struct Lisp_Process
));
442 for (i
= 0; i
< VECSIZE (struct Lisp_Process
); i
++)
443 vec
->contents
[i
] = Qnil
;
444 vec
->size
= VECSIZE (struct Lisp_Process
);
445 p
= (struct Lisp_Process
*)vec
;
447 XSETINT (p
->infd
, -1);
448 XSETINT (p
->outfd
, -1);
449 XSETFASTINT (p
->pid
, 0);
450 XSETFASTINT (p
->tick
, 0);
451 XSETFASTINT (p
->update_tick
, 0);
452 p
->raw_status_low
= Qnil
;
453 p
->raw_status_high
= Qnil
;
455 p
->mark
= Fmake_marker ();
457 /* If name is already in use, modify it until it is unused. */
462 tem
= Fget_process (name1
);
463 if (NILP (tem
)) break;
464 sprintf (suffix
, "<%d>", i
);
465 name1
= concat2 (name
, build_string (suffix
));
469 XSETPROCESS (val
, p
);
470 Vprocess_alist
= Fcons (Fcons (name
, val
), Vprocess_alist
);
475 remove_process (proc
)
476 register Lisp_Object proc
;
478 register Lisp_Object pair
;
480 pair
= Frassq (proc
, Vprocess_alist
);
481 Vprocess_alist
= Fdelq (pair
, Vprocess_alist
);
483 deactivate_process (proc
);
486 DEFUN ("processp", Fprocessp
, Sprocessp
, 1, 1, 0,
487 "Return t if OBJECT is a process.")
491 return PROCESSP (object
) ? Qt
: Qnil
;
494 DEFUN ("get-process", Fget_process
, Sget_process
, 1, 1, 0,
495 "Return the process named NAME, or nil if there is none.")
497 register Lisp_Object name
;
501 CHECK_STRING (name
, 0);
502 return Fcdr (Fassoc (name
, Vprocess_alist
));
505 DEFUN ("get-buffer-process", Fget_buffer_process
, Sget_buffer_process
, 1, 1, 0,
506 "Return the (or a) process associated with BUFFER.\n\
507 BUFFER may be a buffer or the name of one.")
509 register Lisp_Object buffer
;
511 register Lisp_Object buf
, tail
, proc
;
513 if (NILP (buffer
)) return Qnil
;
514 buf
= Fget_buffer (buffer
);
515 if (NILP (buf
)) return Qnil
;
517 for (tail
= Vprocess_alist
; !NILP (tail
); tail
= Fcdr (tail
))
519 proc
= Fcdr (Fcar (tail
));
520 if (PROCESSP (proc
) && EQ (XPROCESS (proc
)->buffer
, buf
))
526 /* This is how commands for the user decode process arguments. It
527 accepts a process, a process name, a buffer, a buffer name, or nil.
528 Buffers denote the first process in the buffer, and nil denotes the
533 register Lisp_Object name
;
535 register Lisp_Object proc
, obj
;
538 obj
= Fget_process (name
);
540 obj
= Fget_buffer (name
);
542 error ("Process %s does not exist", XSTRING (name
)->data
);
544 else if (NILP (name
))
545 obj
= Fcurrent_buffer ();
549 /* Now obj should be either a buffer object or a process object.
553 proc
= Fget_buffer_process (obj
);
555 error ("Buffer %s has no process", XSTRING (XBUFFER (obj
)->name
)->data
);
559 CHECK_PROCESS (obj
, 0);
565 DEFUN ("delete-process", Fdelete_process
, Sdelete_process
, 1, 1, 0,
566 "Delete PROCESS: kill it and forget about it immediately.\n\
567 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
568 nil, indicating the current buffer's process.")
570 register Lisp_Object process
;
572 process
= get_process (process
);
573 XPROCESS (process
)->raw_status_low
= Qnil
;
574 XPROCESS (process
)->raw_status_high
= Qnil
;
575 if (NETCONN_P (process
))
577 XPROCESS (process
)->status
= Fcons (Qexit
, Fcons (make_number (0), Qnil
));
578 XSETINT (XPROCESS (process
)->tick
, ++process_tick
);
580 else if (XINT (XPROCESS (process
)->infd
) >= 0)
582 Fkill_process (process
, Qnil
);
583 /* Do this now, since remove_process will make sigchld_handler do nothing. */
584 XPROCESS (process
)->status
585 = Fcons (Qsignal
, Fcons (make_number (SIGKILL
), Qnil
));
586 XSETINT (XPROCESS (process
)->tick
, ++process_tick
);
589 remove_process (process
);
593 DEFUN ("process-status", Fprocess_status
, Sprocess_status
, 1, 1, 0,
594 "Return the status of PROCESS.\n\
595 The returned value is one of the following symbols:\n\
596 run -- for a process that is running.\n\
597 stop -- for a process stopped but continuable.\n\
598 exit -- for a process that has exited.\n\
599 signal -- for a process that has got a fatal signal.\n\
600 open -- for a network stream connection that is open.\n\
601 closed -- for a network stream connection that is closed.\n\
602 nil -- if arg is a process name and no such process exists.\n\
603 PROCESS may be a process, a buffer, the name of a process, or\n\
604 nil, indicating the current buffer's process.")
606 register Lisp_Object process
;
608 register struct Lisp_Process
*p
;
609 register Lisp_Object status
;
611 if (STRINGP (process
))
612 process
= Fget_process (process
);
614 process
= get_process (process
);
619 p
= XPROCESS (process
);
620 if (!NILP (p
->raw_status_low
))
624 status
= XCAR (status
);
625 if (NETCONN_P (process
))
627 if (EQ (status
, Qrun
))
629 else if (EQ (status
, Qexit
))
635 DEFUN ("process-exit-status", Fprocess_exit_status
, Sprocess_exit_status
,
637 "Return the exit status of PROCESS or the signal number that killed it.\n\
638 If PROCESS has not yet exited or died, return 0.")
640 register Lisp_Object process
;
642 CHECK_PROCESS (process
, 0);
643 if (!NILP (XPROCESS (process
)->raw_status_low
))
644 update_status (XPROCESS (process
));
645 if (CONSP (XPROCESS (process
)->status
))
646 return XCAR (XCDR (XPROCESS (process
)->status
));
647 return make_number (0);
650 DEFUN ("process-id", Fprocess_id
, Sprocess_id
, 1, 1, 0,
651 "Return the process id of PROCESS.\n\
652 This is the pid of the Unix process which PROCESS uses or talks to.\n\
653 For a network connection, this value is nil.")
655 register Lisp_Object process
;
657 CHECK_PROCESS (process
, 0);
658 return XPROCESS (process
)->pid
;
661 DEFUN ("process-name", Fprocess_name
, Sprocess_name
, 1, 1, 0,
662 "Return the name of PROCESS, as a string.\n\
663 This is the name of the program invoked in PROCESS,\n\
664 possibly modified to make it unique among process names.")
666 register Lisp_Object process
;
668 CHECK_PROCESS (process
, 0);
669 return XPROCESS (process
)->name
;
672 DEFUN ("process-command", Fprocess_command
, Sprocess_command
, 1, 1, 0,
673 "Return the command that was executed to start PROCESS.\n\
674 This is a list of strings, the first string being the program executed\n\
675 and the rest of the strings being the arguments given to it.\n\
676 For a non-child channel, this is nil.")
678 register Lisp_Object process
;
680 CHECK_PROCESS (process
, 0);
681 return XPROCESS (process
)->command
;
684 DEFUN ("process-tty-name", Fprocess_tty_name
, Sprocess_tty_name
, 1, 1, 0,
685 "Return the name of the terminal PROCESS uses, or nil if none.\n\
686 This is the terminal that the process itself reads and writes on,\n\
687 not the name of the pty that Emacs uses to talk with that terminal.")
689 register Lisp_Object process
;
691 CHECK_PROCESS (process
, 0);
692 return XPROCESS (process
)->tty_name
;
695 DEFUN ("set-process-buffer", Fset_process_buffer
, Sset_process_buffer
,
697 "Set buffer associated with PROCESS to BUFFER (a buffer, or nil).")
699 register Lisp_Object process
, buffer
;
701 CHECK_PROCESS (process
, 0);
703 CHECK_BUFFER (buffer
, 1);
704 XPROCESS (process
)->buffer
= buffer
;
708 DEFUN ("process-buffer", Fprocess_buffer
, Sprocess_buffer
,
710 "Return the buffer PROCESS is associated with.\n\
711 Output from PROCESS is inserted in this buffer unless PROCESS has a filter.")
713 register Lisp_Object process
;
715 CHECK_PROCESS (process
, 0);
716 return XPROCESS (process
)->buffer
;
719 DEFUN ("process-mark", Fprocess_mark
, Sprocess_mark
,
721 "Return the marker for the end of the last output from PROCESS.")
723 register Lisp_Object process
;
725 CHECK_PROCESS (process
, 0);
726 return XPROCESS (process
)->mark
;
729 DEFUN ("set-process-filter", Fset_process_filter
, Sset_process_filter
,
731 "Give PROCESS the filter function FILTER; nil means no filter.\n\
732 t means stop accepting output from the process.\n\
733 When a process has a filter, each time it does output\n\
734 the entire string of output is passed to the filter.\n\
735 The filter gets two arguments: the process and the string of output.\n\
736 If the process has a filter, its buffer is not used for output.")
738 register Lisp_Object process
, filter
;
740 CHECK_PROCESS (process
, 0);
743 FD_CLR (XINT (XPROCESS (process
)->infd
), &input_wait_mask
);
744 FD_CLR (XINT (XPROCESS (process
)->infd
), &non_keyboard_wait_mask
);
746 else if (EQ (XPROCESS (process
)->filter
, Qt
))
748 FD_SET (XINT (XPROCESS (process
)->infd
), &input_wait_mask
);
749 FD_SET (XINT (XPROCESS (process
)->infd
), &non_keyboard_wait_mask
);
751 XPROCESS (process
)->filter
= filter
;
755 DEFUN ("process-filter", Fprocess_filter
, Sprocess_filter
,
757 "Returns the filter function of PROCESS; nil if none.\n\
758 See `set-process-filter' for more info on filter functions.")
760 register Lisp_Object process
;
762 CHECK_PROCESS (process
, 0);
763 return XPROCESS (process
)->filter
;
766 DEFUN ("set-process-sentinel", Fset_process_sentinel
, Sset_process_sentinel
,
768 "Give PROCESS the sentinel SENTINEL; nil for none.\n\
769 The sentinel is called as a function when the process changes state.\n\
770 It gets two arguments: the process, and a string describing the change.")
772 register Lisp_Object process
, sentinel
;
774 CHECK_PROCESS (process
, 0);
775 XPROCESS (process
)->sentinel
= sentinel
;
779 DEFUN ("process-sentinel", Fprocess_sentinel
, Sprocess_sentinel
,
781 "Return the sentinel of PROCESS; nil if none.\n\
782 See `set-process-sentinel' for more info on sentinels.")
784 register Lisp_Object process
;
786 CHECK_PROCESS (process
, 0);
787 return XPROCESS (process
)->sentinel
;
790 DEFUN ("set-process-window-size", Fset_process_window_size
,
791 Sset_process_window_size
, 3, 3, 0,
792 "Tell PROCESS that it has logical window size HEIGHT and WIDTH.")
793 (process
, height
, width
)
794 register Lisp_Object process
, height
, width
;
796 CHECK_PROCESS (process
, 0);
797 CHECK_NATNUM (height
, 0);
798 CHECK_NATNUM (width
, 0);
799 if (set_window_size (XINT (XPROCESS (process
)->infd
),
800 XINT (height
), XINT (width
)) <= 0)
806 DEFUN ("set-process-inherit-coding-system-flag",
807 Fset_process_inherit_coding_system_flag
,
808 Sset_process_inherit_coding_system_flag
, 2, 2, 0,
809 "Determine whether buffer of PROCESS will inherit coding-system.\n\
810 If the second argument FLAG is non-nil, then the variable\n\
811 `buffer-file-coding-system' of the buffer associated with PROCESS\n\
812 will be bound to the value of the coding system used to decode\n\
813 the process output.\n\
815 This is useful when the coding system specified for the process buffer\n\
816 leaves either the character code conversion or the end-of-line conversion\n\
817 unspecified, or if the coding system used to decode the process output\n\
818 is more appropriate for saving the process buffer.\n\
820 Binding the variable `inherit-process-coding-system' to non-nil before\n\
821 starting the process is an alternative way of setting the inherit flag\n\
822 for the process which will run.")
824 register Lisp_Object process
, flag
;
826 CHECK_PROCESS (process
, 0);
827 XPROCESS (process
)->inherit_coding_system_flag
= flag
;
831 DEFUN ("process-inherit-coding-system-flag",
832 Fprocess_inherit_coding_system_flag
, Sprocess_inherit_coding_system_flag
,
834 "Return the value of inherit-coding-system flag for PROCESS.\n\
835 If this flag is t, `buffer-file-coding-system' of the buffer\n\
836 associated with PROCESS will inherit the coding system used to decode\n\
837 the process output.")
839 register Lisp_Object process
;
841 CHECK_PROCESS (process
, 0);
842 return XPROCESS (process
)->inherit_coding_system_flag
;
845 DEFUN ("process-kill-without-query", Fprocess_kill_without_query
,
846 Sprocess_kill_without_query
, 1, 2, 0,
847 "Say no query needed if PROCESS is running when Emacs is exited.\n\
848 Optional second argument if non-nil says to require a query.\n\
849 Value is t if a query was formerly required.")
851 register Lisp_Object process
, value
;
855 CHECK_PROCESS (process
, 0);
856 tem
= XPROCESS (process
)->kill_without_query
;
857 XPROCESS (process
)->kill_without_query
= Fnull (value
);
862 DEFUN ("process-contact", Fprocess_contact
, Sprocess_contact
,
864 "Return the contact info of PROCESS; t for a real child.\n\
865 For a net connection, the value is a cons cell of the form (HOST SERVICE).")
867 register Lisp_Object process
;
869 CHECK_PROCESS (process
, 0);
870 return XPROCESS (process
)->childp
;
873 #if 0 /* Turned off because we don't currently record this info
874 in the process. Perhaps add it. */
875 DEFUN ("process-connection", Fprocess_connection
, Sprocess_connection
, 1, 1, 0,
876 "Return the connection type of PROCESS.\n\
877 The value is nil for a pipe, t or `pty' for a pty, or `stream' for\n\
878 a socket connection.")
882 return XPROCESS (process
)->type
;
889 register Lisp_Object tail
, tem
;
890 Lisp_Object proc
, minspace
, tem1
;
891 register struct Lisp_Process
*p
;
894 XSETFASTINT (minspace
, 1);
896 set_buffer_internal (XBUFFER (Vstandard_output
));
897 Fbuffer_disable_undo (Vstandard_output
);
899 current_buffer
->truncate_lines
= Qt
;
902 Proc Status Buffer Tty Command\n\
903 ---- ------ ------ --- -------\n", -1);
905 for (tail
= Vprocess_alist
; !NILP (tail
); tail
= Fcdr (tail
))
909 proc
= Fcdr (Fcar (tail
));
911 if (NILP (p
->childp
))
914 Finsert (1, &p
->name
);
915 Findent_to (make_number (13), minspace
);
917 if (!NILP (p
->raw_status_low
))
920 if (CONSP (p
->status
))
921 symbol
= XCAR (p
->status
);
924 if (EQ (symbol
, Qsignal
))
927 tem
= Fcar (Fcdr (p
->status
));
929 if (XINT (tem
) < NSIG
)
930 write_string (sys_errlist
[XINT (tem
)], -1);
933 Fprinc (symbol
, Qnil
);
935 else if (NETCONN_P (proc
))
937 if (EQ (symbol
, Qrun
))
938 write_string ("open", -1);
939 else if (EQ (symbol
, Qexit
))
940 write_string ("closed", -1);
942 Fprinc (symbol
, Qnil
);
945 Fprinc (symbol
, Qnil
);
947 if (EQ (symbol
, Qexit
))
950 tem
= Fcar (Fcdr (p
->status
));
953 sprintf (tembuf
, " %d", (int) XFASTINT (tem
));
954 write_string (tembuf
, -1);
958 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qexit
))
959 remove_process (proc
);
961 Findent_to (make_number (22), minspace
);
962 if (NILP (p
->buffer
))
963 insert_string ("(none)");
964 else if (NILP (XBUFFER (p
->buffer
)->name
))
965 insert_string ("(Killed)");
967 Finsert (1, &XBUFFER (p
->buffer
)->name
);
969 Findent_to (make_number (37), minspace
);
971 if (STRINGP (p
->tty_name
))
972 Finsert (1, &p
->tty_name
);
974 insert_string ("(none)");
976 Findent_to (make_number (49), minspace
);
978 if (NETCONN_P (proc
))
980 sprintf (tembuf
, "(network stream connection to %s)\n",
981 XSTRING (XCAR (p
->childp
))->data
);
982 insert_string (tembuf
);
996 insert_string ("\n");
1002 DEFUN ("list-processes", Flist_processes
, Slist_processes
, 0, 0, "",
1003 "Display a list of all processes.\n\
1004 Any process listed as exited or signaled is actually eliminated\n\
1005 after the listing is made.")
1008 internal_with_output_to_temp_buffer ("*Process List*",
1009 list_processes_1
, Qnil
);
1013 DEFUN ("process-list", Fprocess_list
, Sprocess_list
, 0, 0, 0,
1014 "Return a list of all processes.")
1017 return Fmapcar (Qcdr
, Vprocess_alist
);
1020 /* Starting asynchronous inferior processes. */
1022 static Lisp_Object
start_process_unwind ();
1024 DEFUN ("start-process", Fstart_process
, Sstart_process
, 3, MANY
, 0,
1025 "Start a program in a subprocess. Return the process object for it.\n\
1026 NAME is name for process. It is modified if necessary to make it unique.\n\
1027 BUFFER is the buffer or (buffer-name) to associate with the process.\n\
1028 Process output goes at end of that buffer, unless you specify\n\
1029 an output stream or filter function to handle the output.\n\
1030 BUFFER may be also nil, meaning that this process is not associated\n\
1032 Third arg is program file name. It is searched for in PATH.\n\
1033 Remaining arguments are strings to give program as arguments.")
1036 register Lisp_Object
*args
;
1038 Lisp_Object buffer
, name
, program
, proc
, current_dir
, tem
;
1040 register unsigned char *new_argv
;
1043 register unsigned char **new_argv
;
1046 int count
= specpdl_ptr
- specpdl
;
1050 buffer
= Fget_buffer_create (buffer
);
1052 /* Make sure that the child will be able to chdir to the current
1053 buffer's current directory, or its unhandled equivalent. We
1054 can't just have the child check for an error when it does the
1055 chdir, since it's in a vfork.
1057 We have to GCPRO around this because Fexpand_file_name and
1058 Funhandled_file_name_directory might call a file name handling
1059 function. The argument list is protected by the caller, so all
1060 we really have to worry about is buffer. */
1062 struct gcpro gcpro1
, gcpro2
;
1064 current_dir
= current_buffer
->directory
;
1066 GCPRO2 (buffer
, current_dir
);
1069 = expand_and_dir_to_file (Funhandled_file_name_directory (current_dir
),
1071 if (NILP (Ffile_accessible_directory_p (current_dir
)))
1072 report_file_error ("Setting current directory",
1073 Fcons (current_buffer
->directory
, Qnil
));
1079 CHECK_STRING (name
, 0);
1083 CHECK_STRING (program
, 2);
1085 proc
= make_process (name
);
1086 /* If an error occurs and we can't start the process, we want to
1087 remove it from the process list. This means that each error
1088 check in create_process doesn't need to call remove_process
1089 itself; it's all taken care of here. */
1090 record_unwind_protect (start_process_unwind
, proc
);
1092 XPROCESS (proc
)->childp
= Qt
;
1093 XPROCESS (proc
)->command_channel_p
= Qnil
;
1094 XPROCESS (proc
)->buffer
= buffer
;
1095 XPROCESS (proc
)->sentinel
= Qnil
;
1096 XPROCESS (proc
)->filter
= Qnil
;
1097 XPROCESS (proc
)->command
= Flist (nargs
- 2, args
+ 2);
1099 /* Make the process marker point into the process buffer (if any). */
1101 set_marker_both (XPROCESS (proc
)->mark
, buffer
,
1102 BUF_ZV (XBUFFER (buffer
)),
1103 BUF_ZV_BYTE (XBUFFER (buffer
)));
1106 /* Decide coding systems for communicating with the process. Here
1107 we don't setup the structure coding_system nor pay attention to
1108 unibyte mode. They are done in create_process. */
1110 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
1111 Lisp_Object coding_systems
= Qt
;
1112 Lisp_Object val
, *args2
;
1113 struct gcpro gcpro1
, gcpro2
;
1115 val
= Vcoding_system_for_read
;
1118 args2
= (Lisp_Object
*) alloca ((nargs
+ 1) * sizeof *args2
);
1119 args2
[0] = Qstart_process
;
1120 for (i
= 0; i
< nargs
; i
++) args2
[i
+ 1] = args
[i
];
1121 GCPRO2 (proc
, current_dir
);
1122 coding_systems
= Ffind_operation_coding_system (nargs
+ 1, args2
);
1124 if (CONSP (coding_systems
))
1125 val
= XCAR (coding_systems
);
1126 else if (CONSP (Vdefault_process_coding_system
))
1127 val
= XCAR (Vdefault_process_coding_system
);
1129 XPROCESS (proc
)->decode_coding_system
= val
;
1131 val
= Vcoding_system_for_write
;
1134 if (EQ (coding_systems
, Qt
))
1136 args2
= (Lisp_Object
*) alloca ((nargs
+ 1) * sizeof args2
);
1137 args2
[0] = Qstart_process
;
1138 for (i
= 0; i
< nargs
; i
++) args2
[i
+ 1] = args
[i
];
1139 GCPRO2 (proc
, current_dir
);
1140 coding_systems
= Ffind_operation_coding_system (nargs
+ 1, args2
);
1143 if (CONSP (coding_systems
))
1144 val
= XCDR (coding_systems
);
1145 else if (CONSP (Vdefault_process_coding_system
))
1146 val
= XCDR (Vdefault_process_coding_system
);
1148 XPROCESS (proc
)->encode_coding_system
= val
;
1152 /* Make a one member argv with all args concatenated
1153 together separated by a blank. */
1154 len
= STRING_BYTES (XSTRING (program
)) + 2;
1155 for (i
= 3; i
< nargs
; i
++)
1158 CHECK_STRING (tem
, i
);
1159 len
+= STRING_BYTES (XSTRING (tem
)) + 1; /* count the blank */
1161 new_argv
= (unsigned char *) alloca (len
);
1162 strcpy (new_argv
, XSTRING (program
)->data
);
1163 for (i
= 3; i
< nargs
; i
++)
1166 CHECK_STRING (tem
, i
);
1167 strcat (new_argv
, " ");
1168 strcat (new_argv
, XSTRING (tem
)->data
);
1170 /* Need to add code here to check for program existence on VMS */
1173 new_argv
= (unsigned char **) alloca ((nargs
- 1) * sizeof (char *));
1175 /* If program file name is not absolute, search our path for it */
1176 if (!IS_DIRECTORY_SEP (XSTRING (program
)->data
[0])
1177 && !(XSTRING (program
)->size
> 1
1178 && IS_DEVICE_SEP (XSTRING (program
)->data
[1])))
1180 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
1183 GCPRO4 (name
, program
, buffer
, current_dir
);
1184 openp (Vexec_path
, program
, EXEC_SUFFIXES
, &tem
, 1);
1187 report_file_error ("Searching for program", Fcons (program
, Qnil
));
1188 tem
= Fexpand_file_name (tem
, Qnil
);
1189 tem
= ENCODE_FILE (tem
);
1190 new_argv
[0] = XSTRING (tem
)->data
;
1194 if (!NILP (Ffile_directory_p (program
)))
1195 error ("Specified program for new process is a directory");
1197 tem
= ENCODE_FILE (program
);
1198 new_argv
[0] = XSTRING (tem
)->data
;
1201 /* Here we encode arguments by the coding system used for sending
1202 data to the process. We don't support using different coding
1203 systems for encoding arguments and for encoding data sent to the
1206 for (i
= 3; i
< nargs
; i
++)
1209 CHECK_STRING (tem
, i
);
1210 if (STRING_MULTIBYTE (tem
))
1211 tem
= (code_convert_string_norecord
1212 (tem
, XPROCESS (proc
)->encode_coding_system
, 1));
1213 new_argv
[i
- 2] = XSTRING (tem
)->data
;
1215 new_argv
[i
- 2] = 0;
1216 #endif /* not VMS */
1218 XPROCESS (proc
)->decoding_buf
= make_uninit_string (0);
1219 XPROCESS (proc
)->decoding_carryover
= make_number (0);
1220 XPROCESS (proc
)->encoding_buf
= make_uninit_string (0);
1221 XPROCESS (proc
)->encoding_carryover
= make_number (0);
1223 XPROCESS (proc
)->inherit_coding_system_flag
1224 = (NILP (buffer
) || !inherit_process_coding_system
1227 create_process (proc
, (char **) new_argv
, current_dir
);
1229 return unbind_to (count
, proc
);
1232 /* This function is the unwind_protect form for Fstart_process. If
1233 PROC doesn't have its pid set, then we know someone has signaled
1234 an error and the process wasn't started successfully, so we should
1235 remove it from the process list. */
1237 start_process_unwind (proc
)
1240 if (!PROCESSP (proc
))
1243 /* Was PROC started successfully? */
1244 if (XINT (XPROCESS (proc
)->pid
) <= 0)
1245 remove_process (proc
);
1251 create_process_1 (timer
)
1252 struct atimer
*timer
;
1254 /* Nothing to do. */
1258 #if 0 /* This doesn't work; see the note before sigchld_handler. */
1261 /* Mimic blocking of signals on system V, which doesn't really have it. */
1263 /* Nonzero means we got a SIGCHLD when it was supposed to be blocked. */
1264 int sigchld_deferred
;
1267 create_process_sigchld ()
1269 signal (SIGCHLD
, create_process_sigchld
);
1271 sigchld_deferred
= 1;
1277 #ifndef VMS /* VMS version of this function is in vmsproc.c. */
1279 create_process (process
, new_argv
, current_dir
)
1280 Lisp_Object process
;
1282 Lisp_Object current_dir
;
1284 int pid
, inchannel
, outchannel
;
1286 #ifdef POSIX_SIGNALS
1289 struct sigaction sigint_action
;
1290 struct sigaction sigquit_action
;
1292 struct sigaction sighup_action
;
1294 #else /* !POSIX_SIGNALS */
1297 SIGTYPE (*sigchld
)();
1300 #endif /* !POSIX_SIGNALS */
1301 /* Use volatile to protect variables from being clobbered by longjmp. */
1302 volatile int forkin
, forkout
;
1303 volatile int pty_flag
= 0;
1304 extern char **environ
;
1305 Lisp_Object buffer
= XPROCESS (process
)->buffer
;
1307 inchannel
= outchannel
= -1;
1310 if (!NILP (Vprocess_connection_type
))
1311 outchannel
= inchannel
= allocate_pty ();
1316 /* On USG systems it does not work to open the pty's tty here
1317 and then close and reopen it in the child. */
1319 /* Don't let this terminal become our controlling terminal
1320 (in case we don't have one). */
1321 forkout
= forkin
= emacs_open (pty_name
, O_RDWR
| O_NOCTTY
, 0);
1323 forkout
= forkin
= emacs_open (pty_name
, O_RDWR
, 0);
1326 report_file_error ("Opening pty", Qnil
);
1328 forkin
= forkout
= -1;
1329 #endif /* not USG */
1333 #endif /* HAVE_PTYS */
1336 if (socketpair (AF_UNIX
, SOCK_STREAM
, 0, sv
) < 0)
1337 report_file_error ("Opening socketpair", Qnil
);
1338 outchannel
= inchannel
= sv
[0];
1339 forkout
= forkin
= sv
[1];
1341 #else /* not SKTPAIR */
1346 report_file_error ("Creating pipe", Qnil
);
1352 emacs_close (inchannel
);
1353 emacs_close (forkout
);
1354 report_file_error ("Creating pipe", Qnil
);
1359 #endif /* not SKTPAIR */
1362 /* Replaced by close_process_descs */
1363 set_exclusive_use (inchannel
);
1364 set_exclusive_use (outchannel
);
1367 /* Stride people say it's a mystery why this is needed
1368 as well as the O_NDELAY, but that it fails without this. */
1369 #if defined (STRIDE) || (defined (pfa) && defined (HAVE_PTYS))
1372 ioctl (inchannel
, FIONBIO
, &one
);
1377 fcntl (inchannel
, F_SETFL
, O_NONBLOCK
);
1378 fcntl (outchannel
, F_SETFL
, O_NONBLOCK
);
1381 fcntl (inchannel
, F_SETFL
, O_NDELAY
);
1382 fcntl (outchannel
, F_SETFL
, O_NDELAY
);
1386 /* Record this as an active process, with its channels.
1387 As a result, child_setup will close Emacs's side of the pipes. */
1388 chan_process
[inchannel
] = process
;
1389 XSETINT (XPROCESS (process
)->infd
, inchannel
);
1390 XSETINT (XPROCESS (process
)->outfd
, outchannel
);
1391 /* Record the tty descriptor used in the subprocess. */
1393 XPROCESS (process
)->subtty
= Qnil
;
1395 XSETFASTINT (XPROCESS (process
)->subtty
, forkin
);
1396 XPROCESS (process
)->pty_flag
= (pty_flag
? Qt
: Qnil
);
1397 XPROCESS (process
)->status
= Qrun
;
1398 if (!proc_decode_coding_system
[inchannel
])
1399 proc_decode_coding_system
[inchannel
]
1400 = (struct coding_system
*) xmalloc (sizeof (struct coding_system
));
1401 setup_coding_system (XPROCESS (process
)->decode_coding_system
,
1402 proc_decode_coding_system
[inchannel
]);
1403 if (!proc_encode_coding_system
[outchannel
])
1404 proc_encode_coding_system
[outchannel
]
1405 = (struct coding_system
*) xmalloc (sizeof (struct coding_system
));
1406 setup_coding_system (XPROCESS (process
)->encode_coding_system
,
1407 proc_encode_coding_system
[outchannel
]);
1409 if ((!NILP (buffer
) && NILP (XBUFFER (buffer
)->enable_multibyte_characters
))
1410 || (NILP (buffer
) && NILP (buffer_defaults
.enable_multibyte_characters
)))
1412 /* In unibyte mode, character code conversion should not take
1413 place but EOL conversion should. So, setup raw-text or one
1414 of the subsidiary according to the information just setup. */
1415 if (!NILP (XPROCESS (process
)->decode_coding_system
))
1416 setup_raw_text_coding_system (proc_decode_coding_system
[inchannel
]);
1417 if (!NILP (XPROCESS (process
)->encode_coding_system
))
1418 setup_raw_text_coding_system (proc_encode_coding_system
[outchannel
]);
1421 /* Delay interrupts until we have a chance to store
1422 the new fork's pid in its process structure */
1423 #ifdef POSIX_SIGNALS
1424 sigemptyset (&blocked
);
1426 sigaddset (&blocked
, SIGCHLD
);
1429 /* On many hosts (e.g. Solaris 2.4), if a vforked child calls `signal',
1430 this sets the parent's signal handlers as well as the child's.
1431 So delay all interrupts whose handlers the child might munge,
1432 and record the current handlers so they can be restored later. */
1433 sigaddset (&blocked
, SIGINT
); sigaction (SIGINT
, 0, &sigint_action
);
1434 sigaddset (&blocked
, SIGQUIT
); sigaction (SIGQUIT
, 0, &sigquit_action
);
1436 sigaddset (&blocked
, SIGHUP
); sigaction (SIGHUP
, 0, &sighup_action
);
1438 #endif /* HAVE_VFORK */
1439 sigprocmask (SIG_BLOCK
, &blocked
, &procmask
);
1440 #else /* !POSIX_SIGNALS */
1444 #else /* not BSD4_1 */
1445 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
1446 sigsetmask (sigmask (SIGCHLD
));
1447 #else /* ordinary USG */
1449 sigchld_deferred
= 0;
1450 sigchld
= signal (SIGCHLD
, create_process_sigchld
);
1452 #endif /* ordinary USG */
1453 #endif /* not BSD4_1 */
1454 #endif /* SIGCHLD */
1455 #endif /* !POSIX_SIGNALS */
1457 FD_SET (inchannel
, &input_wait_mask
);
1458 FD_SET (inchannel
, &non_keyboard_wait_mask
);
1459 if (inchannel
> max_process_desc
)
1460 max_process_desc
= inchannel
;
1462 /* Until we store the proper pid, enable sigchld_handler
1463 to recognize an unknown pid as standing for this process.
1464 It is very important not to let this `marker' value stay
1465 in the table after this function has returned; if it does
1466 it might cause call-process to hang and subsequent asynchronous
1467 processes to get their return values scrambled. */
1468 XSETINT (XPROCESS (process
)->pid
, -1);
1473 /* child_setup must clobber environ on systems with true vfork.
1474 Protect it from permanent change. */
1475 char **save_environ
= environ
;
1477 current_dir
= ENCODE_FILE (current_dir
);
1482 #endif /* not WINDOWSNT */
1484 int xforkin
= forkin
;
1485 int xforkout
= forkout
;
1487 #if 0 /* This was probably a mistake--it duplicates code later on,
1488 but fails to handle all the cases. */
1489 /* Make sure SIGCHLD is not blocked in the child. */
1490 sigsetmask (SIGEMPTYMASK
);
1493 /* Make the pty be the controlling terminal of the process. */
1495 /* First, disconnect its current controlling terminal. */
1497 /* We tried doing setsid only if pty_flag, but it caused
1498 process_set_signal to fail on SGI when using a pipe. */
1500 /* Make the pty's terminal the controlling terminal. */
1504 /* We ignore the return value
1505 because faith@cs.unc.edu says that is necessary on Linux. */
1506 ioctl (xforkin
, TIOCSCTTY
, 0);
1509 #else /* not HAVE_SETSID */
1511 /* It's very important to call setpgrp here and no time
1512 afterwards. Otherwise, we lose our controlling tty which
1513 is set when we open the pty. */
1516 #endif /* not HAVE_SETSID */
1517 #if defined (HAVE_TERMIOS) && defined (LDISC1)
1518 if (pty_flag
&& xforkin
>= 0)
1521 tcgetattr (xforkin
, &t
);
1523 if (tcsetattr (xforkin
, TCSANOW
, &t
) < 0)
1524 emacs_write (1, "create_process/tcsetattr LDISC1 failed\n", 39);
1527 #if defined (NTTYDISC) && defined (TIOCSETD)
1528 if (pty_flag
&& xforkin
>= 0)
1530 /* Use new line discipline. */
1531 int ldisc
= NTTYDISC
;
1532 ioctl (xforkin
, TIOCSETD
, &ldisc
);
1537 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
1538 can do TIOCSPGRP only to the process's controlling tty. */
1541 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
1542 I can't test it since I don't have 4.3. */
1543 int j
= emacs_open ("/dev/tty", O_RDWR
, 0);
1544 ioctl (j
, TIOCNOTTY
, 0);
1547 /* In order to get a controlling terminal on some versions
1548 of BSD, it is necessary to put the process in pgrp 0
1549 before it opens the terminal. */
1557 #endif /* TIOCNOTTY */
1559 #if !defined (RTU) && !defined (UNIPLUS) && !defined (DONT_REOPEN_PTY)
1560 /*** There is a suggestion that this ought to be a
1561 conditional on TIOCSPGRP,
1562 or !(defined (HAVE_SETSID) && defined (TIOCSCTTY)).
1563 Trying the latter gave the wrong results on Debian GNU/Linux 1.1;
1564 that system does seem to need this code, even though
1565 both HAVE_SETSID and TIOCSCTTY are defined. */
1566 /* Now close the pty (if we had it open) and reopen it.
1567 This makes the pty the controlling terminal of the subprocess. */
1570 #ifdef SET_CHILD_PTY_PGRP
1571 int pgrp
= getpid ();
1574 /* I wonder if emacs_close (emacs_open (pty_name, ...))
1577 emacs_close (xforkin
);
1578 xforkout
= xforkin
= emacs_open (pty_name
, O_RDWR
, 0);
1582 emacs_write (1, "Couldn't open the pty terminal ", 31);
1583 emacs_write (1, pty_name
, strlen (pty_name
));
1584 emacs_write (1, "\n", 1);
1588 #ifdef SET_CHILD_PTY_PGRP
1589 ioctl (xforkin
, TIOCSPGRP
, &pgrp
);
1590 ioctl (xforkout
, TIOCSPGRP
, &pgrp
);
1593 #endif /* not UNIPLUS and not RTU and not DONT_REOPEN_PTY */
1595 #ifdef SETUP_SLAVE_PTY
1600 #endif /* SETUP_SLAVE_PTY */
1602 /* On AIX, we've disabled SIGHUP above once we start a child on a pty.
1603 Now reenable it in the child, so it will die when we want it to. */
1605 signal (SIGHUP
, SIG_DFL
);
1607 #endif /* HAVE_PTYS */
1609 signal (SIGINT
, SIG_DFL
);
1610 signal (SIGQUIT
, SIG_DFL
);
1612 /* Stop blocking signals in the child. */
1613 #ifdef POSIX_SIGNALS
1614 sigprocmask (SIG_SETMASK
, &procmask
, 0);
1615 #else /* !POSIX_SIGNALS */
1619 #else /* not BSD4_1 */
1620 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
1621 sigsetmask (SIGEMPTYMASK
);
1622 #else /* ordinary USG */
1624 signal (SIGCHLD
, sigchld
);
1626 #endif /* ordinary USG */
1627 #endif /* not BSD4_1 */
1628 #endif /* SIGCHLD */
1629 #endif /* !POSIX_SIGNALS */
1632 child_setup_tty (xforkout
);
1634 pid
= child_setup (xforkin
, xforkout
, xforkout
,
1635 new_argv
, 1, current_dir
);
1636 #else /* not WINDOWSNT */
1637 child_setup (xforkin
, xforkout
, xforkout
,
1638 new_argv
, 1, current_dir
);
1639 #endif /* not WINDOWSNT */
1641 environ
= save_environ
;
1646 /* This runs in the Emacs process. */
1650 emacs_close (forkin
);
1651 if (forkin
!= forkout
&& forkout
>= 0)
1652 emacs_close (forkout
);
1656 /* vfork succeeded. */
1657 XSETFASTINT (XPROCESS (process
)->pid
, pid
);
1660 register_child (pid
, inchannel
);
1661 #endif /* WINDOWSNT */
1663 /* If the subfork execv fails, and it exits,
1664 this close hangs. I don't know why.
1665 So have an interrupt jar it loose. */
1667 struct atimer
*timer
;
1671 EMACS_SET_SECS_USECS (offset
, 1, 0);
1672 timer
= start_atimer (ATIMER_RELATIVE
, offset
, create_process_1
, 0);
1674 XPROCESS (process
)->subtty
= Qnil
;
1676 emacs_close (forkin
);
1678 cancel_atimer (timer
);
1682 if (forkin
!= forkout
&& forkout
>= 0)
1683 emacs_close (forkout
);
1687 XPROCESS (process
)->tty_name
= build_string (pty_name
);
1690 XPROCESS (process
)->tty_name
= Qnil
;
1693 /* Restore the signal state whether vfork succeeded or not.
1694 (We will signal an error, below, if it failed.) */
1695 #ifdef POSIX_SIGNALS
1697 /* Restore the parent's signal handlers. */
1698 sigaction (SIGINT
, &sigint_action
, 0);
1699 sigaction (SIGQUIT
, &sigquit_action
, 0);
1701 sigaction (SIGHUP
, &sighup_action
, 0);
1703 #endif /* HAVE_VFORK */
1704 /* Stop blocking signals in the parent. */
1705 sigprocmask (SIG_SETMASK
, &procmask
, 0);
1706 #else /* !POSIX_SIGNALS */
1710 #else /* not BSD4_1 */
1711 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
1712 sigsetmask (SIGEMPTYMASK
);
1713 #else /* ordinary USG */
1715 signal (SIGCHLD
, sigchld
);
1716 /* Now really handle any of these signals
1717 that came in during this function. */
1718 if (sigchld_deferred
)
1719 kill (getpid (), SIGCHLD
);
1721 #endif /* ordinary USG */
1722 #endif /* not BSD4_1 */
1723 #endif /* SIGCHLD */
1724 #endif /* !POSIX_SIGNALS */
1726 /* Now generate the error if vfork failed. */
1728 report_file_error ("Doing vfork", Qnil
);
1730 #endif /* not VMS */
1734 /* open a TCP network connection to a given HOST/SERVICE. Treated
1735 exactly like a normal process when reading and writing. Only
1736 differences are in status display and process deletion. A network
1737 connection has no PID; you cannot signal it. All you can do is
1738 deactivate and close it via delete-process */
1740 DEFUN ("open-network-stream", Fopen_network_stream
, Sopen_network_stream
,
1742 "Open a TCP connection for a service to a host.\n\
1743 Returns a subprocess-object to represent the connection.\n\
1744 Input and output work as for subprocesses; `delete-process' closes it.\n\
1745 Args are NAME BUFFER HOST SERVICE.\n\
1746 NAME is name for process. It is modified if necessary to make it unique.\n\
1747 BUFFER is the buffer (or buffer-name) to associate with the process.\n\
1748 Process output goes at end of that buffer, unless you specify\n\
1749 an output stream or filter function to handle the output.\n\
1750 BUFFER may be also nil, meaning that this process is not associated\n\
1752 Third arg is name of the host to connect to, or its IP address.\n\
1753 Fourth arg SERVICE is name of the service desired, or an integer\n\
1754 specifying a port number to connect to.")
1755 (name
, buffer
, host
, service
)
1756 Lisp_Object name
, buffer
, host
, service
;
1759 #ifndef HAVE_GETADDRINFO
1760 struct sockaddr_in address
;
1761 struct servent
*svc_info
;
1762 struct hostent
*host_info_ptr
, host_info
;
1763 char *(addr_list
[2]);
1764 IN_ADDR numeric_addr
;
1766 #else /* HAVE_GETADDRINFO */
1767 struct addrinfo hints
, *res
, *lres
;
1770 char *portstring
, portbuf
[128];
1771 #endif /* HAVE_GETADDRINFO */
1772 int s
= -1, outch
, inch
;
1773 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
1775 int count
= specpdl_ptr
- specpdl
;
1779 /* Ensure socket support is loaded if available. */
1780 init_winsock (TRUE
);
1783 GCPRO4 (name
, buffer
, host
, service
);
1784 CHECK_STRING (name
, 0);
1785 CHECK_STRING (host
, 0);
1787 #ifdef HAVE_GETADDRINFO
1789 * SERVICE can either be a string or int.
1790 * Convert to a C string for later use by getaddrinfo.
1792 if (INTEGERP (service
))
1794 sprintf (portbuf
, "%d", XINT (service
));
1795 portstring
= portbuf
;
1799 CHECK_STRING (service
, 0);
1800 portstring
= XSTRING (service
)->data
;
1802 #else /* ! HAVE_GETADDRINFO */
1803 if (INTEGERP (service
))
1804 port
= htons ((unsigned short) XINT (service
));
1807 CHECK_STRING (service
, 0);
1808 svc_info
= getservbyname (XSTRING (service
)->data
, "tcp");
1810 error ("Unknown service \"%s\"", XSTRING (service
)->data
);
1811 port
= svc_info
->s_port
;
1813 #endif /* ! HAVE_GETADDRINFO */
1816 /* Slow down polling to every ten seconds.
1817 Some kernels have a bug which causes retrying connect to fail
1818 after a connect. Polling can interfere with gethostbyname too. */
1819 #ifdef POLL_FOR_INPUT
1820 record_unwind_protect (unwind_stop_other_atimers
, Qnil
);
1821 bind_polling_period (10);
1825 #ifdef HAVE_GETADDRINFO
1829 memset (&hints
, 0, sizeof (hints
));
1831 hints
.ai_family
= AF_UNSPEC
;
1832 hints
.ai_socktype
= SOCK_STREAM
;
1833 hints
.ai_protocol
= 0;
1834 ret
= getaddrinfo (XSTRING (host
)->data
, portstring
, &hints
, &res
);
1837 error ("%s/%s %s", XSTRING (host
)->data
, portstring
,
1844 count1
= specpdl_ptr
- specpdl
;
1845 record_unwind_protect (close_file_unwind
, make_number (s
));
1847 for (lres
= res
; lres
; lres
= lres
->ai_next
)
1849 s
= socket (lres
->ai_family
, lres
->ai_socktype
, lres
->ai_protocol
);
1853 /* Kernel bugs (on Ultrix at least) cause lossage (not just EINTR)
1854 when connect is interrupted. So let's not let it get interrupted.
1855 Note we do not turn off polling, because polling is only used
1856 when not interrupt_input, and thus not normally used on the systems
1857 which have this bug. On systems which use polling, there's no way
1858 to quit if polling is turned off. */
1859 if (interrupt_input
)
1865 ret
= connect (s
, lres
->ai_addr
, lres
->ai_addrlen
);
1875 if (interrupt_input
)
1879 report_file_error ("connection failed",
1880 Fcons (host
, Fcons (name
, Qnil
)));
1882 #else /* ! HAVE_GETADDRINFO */
1893 host_info_ptr
= gethostbyname (XSTRING (host
)->data
);
1897 if (! (host_info_ptr
== 0 && h_errno
== TRY_AGAIN
))
1901 Fsleep_for (make_number (1), Qnil
);
1903 if (host_info_ptr
== 0)
1904 /* Attempt to interpret host as numeric inet address */
1906 numeric_addr
= inet_addr ((char *) XSTRING (host
)->data
);
1907 if (NUMERIC_ADDR_ERROR
)
1908 error ("Unknown host \"%s\"", XSTRING (host
)->data
);
1910 host_info_ptr
= &host_info
;
1911 host_info
.h_name
= 0;
1912 host_info
.h_aliases
= 0;
1913 host_info
.h_addrtype
= AF_INET
;
1915 /* Older machines have only one address slot called h_addr.
1916 Newer machines have h_addr_list, but #define h_addr to
1917 be its first element. */
1918 host_info
.h_addr_list
= &(addr_list
[0]);
1920 host_info
.h_addr
= (char*)(&numeric_addr
);
1922 /* numeric_addr isn't null-terminated; it has fixed length. */
1923 host_info
.h_length
= sizeof (numeric_addr
);
1926 bzero (&address
, sizeof address
);
1927 bcopy (host_info_ptr
->h_addr
, (char *) &address
.sin_addr
,
1928 host_info_ptr
->h_length
);
1929 address
.sin_family
= host_info_ptr
->h_addrtype
;
1930 address
.sin_port
= port
;
1932 s
= socket (host_info_ptr
->h_addrtype
, SOCK_STREAM
, 0);
1934 report_file_error ("error creating socket", Fcons (name
, Qnil
));
1936 count1
= specpdl_ptr
- specpdl
;
1937 record_unwind_protect (close_file_unwind
, make_number (s
));
1939 /* Kernel bugs (on Ultrix at least) cause lossage (not just EINTR)
1940 when connect is interrupted. So let's not let it get interrupted.
1941 Note we do not turn off polling, because polling is only used
1942 when not interrupt_input, and thus not normally used on the systems
1943 which have this bug. On systems which use polling, there's no way
1944 to quit if polling is turned off. */
1945 if (interrupt_input
)
1953 if (connect (s
, (struct sockaddr
*) &address
, sizeof address
) == -1
1954 && errno
!= EISCONN
)
1962 if (errno
== EADDRINUSE
&& retry
< 20)
1964 /* A delay here is needed on some FreeBSD systems,
1965 and it is harmless, since this retrying takes time anyway
1966 and should be infrequent. */
1967 Fsleep_for (make_number (1), Qnil
);
1972 /* Discard the unwind protect. */
1973 specpdl_ptr
= specpdl
+ count1
;
1977 if (interrupt_input
)
1981 report_file_error ("connection failed",
1982 Fcons (host
, Fcons (name
, Qnil
)));
1984 #endif /* ! HAVE_GETADDRINFO */
1988 /* Discard the unwind protect. */
1989 specpdl_ptr
= specpdl
+ count1
;
1991 #ifdef POLL_FOR_INPUT
1992 unbind_to (count
, Qnil
);
1995 if (interrupt_input
)
1999 s
= connect_server (0);
2001 report_file_error ("error creating socket", Fcons (name
, Qnil
));
2002 send_command (s
, C_PORT
, 0, "%s:%d", XSTRING (host
)->data
, ntohs (port
));
2003 send_command (s
, C_DUMB
, 1, 0);
2010 buffer
= Fget_buffer_create (buffer
);
2011 proc
= make_process (name
);
2013 chan_process
[inch
] = proc
;
2016 fcntl (inch
, F_SETFL
, O_NONBLOCK
);
2019 fcntl (inch
, F_SETFL
, O_NDELAY
);
2023 XPROCESS (proc
)->childp
= Fcons (host
, Fcons (service
, Qnil
));
2024 XPROCESS (proc
)->command_channel_p
= Qnil
;
2025 XPROCESS (proc
)->buffer
= buffer
;
2026 XPROCESS (proc
)->sentinel
= Qnil
;
2027 XPROCESS (proc
)->filter
= Qnil
;
2028 XPROCESS (proc
)->command
= Qnil
;
2029 XPROCESS (proc
)->pid
= Qnil
;
2030 XSETINT (XPROCESS (proc
)->infd
, inch
);
2031 XSETINT (XPROCESS (proc
)->outfd
, outch
);
2032 XPROCESS (proc
)->status
= Qrun
;
2033 FD_SET (inch
, &input_wait_mask
);
2034 FD_SET (inch
, &non_keyboard_wait_mask
);
2035 if (inch
> max_process_desc
)
2036 max_process_desc
= inch
;
2039 /* Setup coding systems for communicating with the network stream. */
2040 struct gcpro gcpro1
;
2041 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
2042 Lisp_Object coding_systems
= Qt
;
2043 Lisp_Object args
[5], val
;
2045 if (!NILP (Vcoding_system_for_read
))
2046 val
= Vcoding_system_for_read
;
2047 else if ((!NILP (buffer
) && NILP (XBUFFER (buffer
)->enable_multibyte_characters
))
2048 || (NILP (buffer
) && NILP (buffer_defaults
.enable_multibyte_characters
)))
2049 /* We dare not decode end-of-line format by setting VAL to
2050 Qraw_text, because the existing Emacs Lisp libraries
2051 assume that they receive bare code including a sequene of
2056 args
[0] = Qopen_network_stream
, args
[1] = name
,
2057 args
[2] = buffer
, args
[3] = host
, args
[4] = service
;
2059 coding_systems
= Ffind_operation_coding_system (5, args
);
2061 if (CONSP (coding_systems
))
2062 val
= XCAR (coding_systems
);
2063 else if (CONSP (Vdefault_process_coding_system
))
2064 val
= XCAR (Vdefault_process_coding_system
);
2068 XPROCESS (proc
)->decode_coding_system
= val
;
2070 if (!NILP (Vcoding_system_for_write
))
2071 val
= Vcoding_system_for_write
;
2072 else if (NILP (current_buffer
->enable_multibyte_characters
))
2076 if (EQ (coding_systems
, Qt
))
2078 args
[0] = Qopen_network_stream
, args
[1] = name
,
2079 args
[2] = buffer
, args
[3] = host
, args
[4] = service
;
2081 coding_systems
= Ffind_operation_coding_system (5, args
);
2084 if (CONSP (coding_systems
))
2085 val
= XCDR (coding_systems
);
2086 else if (CONSP (Vdefault_process_coding_system
))
2087 val
= XCDR (Vdefault_process_coding_system
);
2091 XPROCESS (proc
)->encode_coding_system
= val
;
2094 if (!proc_decode_coding_system
[inch
])
2095 proc_decode_coding_system
[inch
]
2096 = (struct coding_system
*) xmalloc (sizeof (struct coding_system
));
2097 setup_coding_system (XPROCESS (proc
)->decode_coding_system
,
2098 proc_decode_coding_system
[inch
]);
2099 proc_decode_coding_system
[inch
]->src_multibyte
= 1;
2100 proc_decode_coding_system
[inch
]->dst_multibyte
= 0;
2101 if (!proc_encode_coding_system
[outch
])
2102 proc_encode_coding_system
[outch
]
2103 = (struct coding_system
*) xmalloc (sizeof (struct coding_system
));
2104 setup_coding_system (XPROCESS (proc
)->encode_coding_system
,
2105 proc_encode_coding_system
[outch
]);
2106 proc_encode_coding_system
[inch
]->src_multibyte
= 0;
2107 proc_encode_coding_system
[inch
]->dst_multibyte
= 1;
2109 XPROCESS (proc
)->decoding_buf
= make_uninit_string (0);
2110 XPROCESS (proc
)->decoding_carryover
= make_number (0);
2111 XPROCESS (proc
)->encoding_buf
= make_uninit_string (0);
2112 XPROCESS (proc
)->encoding_carryover
= make_number (0);
2114 XPROCESS (proc
)->inherit_coding_system_flag
2115 = (NILP (buffer
) || !inherit_process_coding_system
2121 #endif /* HAVE_SOCKETS */
2124 deactivate_process (proc
)
2127 register int inchannel
, outchannel
;
2128 register struct Lisp_Process
*p
= XPROCESS (proc
);
2130 inchannel
= XINT (p
->infd
);
2131 outchannel
= XINT (p
->outfd
);
2135 /* Beware SIGCHLD hereabouts. */
2136 flush_pending_output (inchannel
);
2139 VMS_PROC_STUFF
*get_vms_process_pointer (), *vs
;
2140 sys$
dassgn (outchannel
);
2141 vs
= get_vms_process_pointer (p
->pid
);
2143 give_back_vms_process_stuff (vs
);
2146 emacs_close (inchannel
);
2147 if (outchannel
>= 0 && outchannel
!= inchannel
)
2148 emacs_close (outchannel
);
2151 XSETINT (p
->infd
, -1);
2152 XSETINT (p
->outfd
, -1);
2153 chan_process
[inchannel
] = Qnil
;
2154 FD_CLR (inchannel
, &input_wait_mask
);
2155 FD_CLR (inchannel
, &non_keyboard_wait_mask
);
2156 if (inchannel
== max_process_desc
)
2159 /* We just closed the highest-numbered process input descriptor,
2160 so recompute the highest-numbered one now. */
2161 max_process_desc
= 0;
2162 for (i
= 0; i
< MAXDESC
; i
++)
2163 if (!NILP (chan_process
[i
]))
2164 max_process_desc
= i
;
2169 /* Close all descriptors currently in use for communication
2170 with subprocess. This is used in a newly-forked subprocess
2171 to get rid of irrelevant descriptors. */
2174 close_process_descs ()
2178 for (i
= 0; i
< MAXDESC
; i
++)
2180 Lisp_Object process
;
2181 process
= chan_process
[i
];
2182 if (!NILP (process
))
2184 int in
= XINT (XPROCESS (process
)->infd
);
2185 int out
= XINT (XPROCESS (process
)->outfd
);
2188 if (out
>= 0 && in
!= out
)
2195 DEFUN ("accept-process-output", Faccept_process_output
, Saccept_process_output
,
2197 "Allow any pending output from subprocesses to be read by Emacs.\n\
2198 It is read into the process' buffers or given to their filter functions.\n\
2199 Non-nil arg PROCESS means do not return until some output has been received\n\
2201 Non-nil second arg TIMEOUT and third arg TIMEOUT-MSECS are number of\n\
2202 seconds and microseconds to wait; return after that much time whether\n\
2203 or not there is input.\n\
2204 Return non-nil iff we received any output before the timeout expired.")
2205 (process
, timeout
, timeout_msecs
)
2206 register Lisp_Object process
, timeout
, timeout_msecs
;
2211 if (! NILP (process
))
2212 CHECK_PROCESS (process
, 0);
2214 if (! NILP (timeout_msecs
))
2216 CHECK_NUMBER (timeout_msecs
, 2);
2217 useconds
= XINT (timeout_msecs
);
2218 if (!INTEGERP (timeout
))
2219 XSETINT (timeout
, 0);
2222 int carry
= useconds
/ 1000000;
2224 XSETINT (timeout
, XINT (timeout
) + carry
);
2225 useconds
-= carry
* 1000000;
2227 /* I think this clause is necessary because C doesn't
2228 guarantee a particular rounding direction for negative
2232 XSETINT (timeout
, XINT (timeout
) - 1);
2233 useconds
+= 1000000;
2240 if (! NILP (timeout
))
2242 CHECK_NUMBER (timeout
, 1);
2243 seconds
= XINT (timeout
);
2244 if (seconds
< 0 || (seconds
== 0 && useconds
== 0))
2256 XSETFASTINT (process
, 0);
2259 (wait_reading_process_input (seconds
, useconds
, process
, 0)
2263 /* This variable is different from waiting_for_input in keyboard.c.
2264 It is used to communicate to a lisp process-filter/sentinel (via the
2265 function Fwaiting_for_user_input_p below) whether emacs was waiting
2266 for user-input when that process-filter was called.
2267 waiting_for_input cannot be used as that is by definition 0 when
2268 lisp code is being evalled.
2269 This is also used in record_asynch_buffer_change.
2270 For that purpose, this must be 0
2271 when not inside wait_reading_process_input. */
2272 static int waiting_for_user_input_p
;
2274 /* This is here so breakpoints can be put on it. */
2276 wait_reading_process_input_1 ()
2280 /* Read and dispose of subprocess output while waiting for timeout to
2281 elapse and/or keyboard input to be available.
2284 timeout in seconds, or
2285 zero for no limit, or
2286 -1 means gobble data immediately available but don't wait for any.
2289 an additional duration to wait, measured in microseconds.
2290 If this is nonzero and time_limit is 0, then the timeout
2291 consists of MICROSECS only.
2293 READ_KBD is a lisp value:
2294 0 to ignore keyboard input, or
2295 1 to return when input is available, or
2296 -1 meaning caller will actually read the input, so don't throw to
2297 the quit handler, or
2298 a cons cell, meaning wait until its car is non-nil
2299 (and gobble terminal input into the buffer if any arrives), or
2300 a process object, meaning wait until something arrives from that
2301 process. The return value is true iff we read some input from
2304 DO_DISPLAY != 0 means redisplay should be done to show subprocess
2305 output that arrives.
2307 If READ_KBD is a pointer to a struct Lisp_Process, then the
2308 function returns true iff we received input from that process
2309 before the timeout elapsed.
2310 Otherwise, return true iff we received input from any process. */
2313 wait_reading_process_input (time_limit
, microsecs
, read_kbd
, do_display
)
2314 int time_limit
, microsecs
;
2315 Lisp_Object read_kbd
;
2318 register int channel
, nfds
;
2319 static SELECT_TYPE Available
;
2322 EMACS_TIME timeout
, end_time
;
2324 int wait_channel
= -1;
2325 struct Lisp_Process
*wait_proc
= 0;
2326 int got_some_input
= 0;
2327 Lisp_Object
*wait_for_cell
= 0;
2329 FD_ZERO (&Available
);
2331 /* If read_kbd is a process to watch, set wait_proc and wait_channel
2333 if (PROCESSP (read_kbd
))
2335 wait_proc
= XPROCESS (read_kbd
);
2336 wait_channel
= XINT (wait_proc
->infd
);
2337 XSETFASTINT (read_kbd
, 0);
2340 /* If waiting for non-nil in a cell, record where. */
2341 if (CONSP (read_kbd
))
2343 wait_for_cell
= &XCAR (read_kbd
);
2344 XSETFASTINT (read_kbd
, 0);
2347 waiting_for_user_input_p
= XINT (read_kbd
);
2349 /* Since we may need to wait several times,
2350 compute the absolute time to return at. */
2351 if (time_limit
|| microsecs
)
2353 EMACS_GET_TIME (end_time
);
2354 EMACS_SET_SECS_USECS (timeout
, time_limit
, microsecs
);
2355 EMACS_ADD_TIME (end_time
, end_time
, timeout
);
2358 /* AlainF 5-Jul-1996
2359 HP-UX 10.10 seem to have problems with signals coming in
2360 Causes "poll: interrupted system call" messages when Emacs is run
2362 Turn off periodic alarms (in case they are in use) */
2363 turn_on_atimers (0);
2368 int timeout_reduced_for_timers
= 0;
2370 /* If calling from keyboard input, do not quit
2371 since we want to return C-g as an input character.
2372 Otherwise, do pending quit if requested. */
2373 if (XINT (read_kbd
) >= 0)
2376 /* Exit now if the cell we're waiting for became non-nil. */
2377 if (wait_for_cell
&& ! NILP (*wait_for_cell
))
2380 /* Compute time from now till when time limit is up */
2381 /* Exit if already run out */
2382 if (time_limit
== -1)
2384 /* -1 specified for timeout means
2385 gobble output available now
2386 but don't wait at all. */
2388 EMACS_SET_SECS_USECS (timeout
, 0, 0);
2390 else if (time_limit
|| microsecs
)
2392 EMACS_GET_TIME (timeout
);
2393 EMACS_SUB_TIME (timeout
, end_time
, timeout
);
2394 if (EMACS_TIME_NEG_P (timeout
))
2399 EMACS_SET_SECS_USECS (timeout
, 100000, 0);
2402 /* Normally we run timers here.
2403 But not if wait_for_cell; in those cases,
2404 the wait is supposed to be short,
2405 and those callers cannot handle running arbitrary Lisp code here. */
2406 if (! wait_for_cell
)
2408 EMACS_TIME timer_delay
;
2412 old_timers_run
= timers_run
;
2413 timer_delay
= timer_check (1);
2414 if (timers_run
!= old_timers_run
&& do_display
)
2416 redisplay_preserve_echo_area ();
2417 /* We must retry, since a timer may have requeued itself
2418 and that could alter the time_delay. */
2422 /* If there is unread keyboard input, also return. */
2423 if (XINT (read_kbd
) != 0
2424 && requeued_events_pending_p ())
2427 if (! EMACS_TIME_NEG_P (timer_delay
) && time_limit
!= -1)
2429 EMACS_TIME difference
;
2430 EMACS_SUB_TIME (difference
, timer_delay
, timeout
);
2431 if (EMACS_TIME_NEG_P (difference
))
2433 timeout
= timer_delay
;
2434 timeout_reduced_for_timers
= 1;
2437 /* If time_limit is -1, we are not going to wait at all. */
2438 else if (time_limit
!= -1)
2440 /* This is so a breakpoint can be put here. */
2441 wait_reading_process_input_1 ();
2445 /* Cause C-g and alarm signals to take immediate action,
2446 and cause input available signals to zero out timeout.
2448 It is important that we do this before checking for process
2449 activity. If we get a SIGCHLD after the explicit checks for
2450 process activity, timeout is the only way we will know. */
2451 if (XINT (read_kbd
) < 0)
2452 set_waiting_for_input (&timeout
);
2454 /* If status of something has changed, and no input is
2455 available, notify the user of the change right away. After
2456 this explicit check, we'll let the SIGCHLD handler zap
2457 timeout to get our attention. */
2458 if (update_tick
!= process_tick
&& do_display
)
2460 Atemp
= input_wait_mask
;
2461 EMACS_SET_SECS_USECS (timeout
, 0, 0);
2462 if ((select (max (max_process_desc
, max_keyboard_desc
) + 1,
2463 &Atemp
, (SELECT_TYPE
*)0, (SELECT_TYPE
*)0,
2467 /* It's okay for us to do this and then continue with
2468 the loop, since timeout has already been zeroed out. */
2469 clear_waiting_for_input ();
2474 /* Don't wait for output from a non-running process. */
2475 if (wait_proc
!= 0 && !NILP (wait_proc
->raw_status_low
))
2476 update_status (wait_proc
);
2478 && ! EQ (wait_proc
->status
, Qrun
))
2480 int nread
, total_nread
= 0;
2482 clear_waiting_for_input ();
2483 XSETPROCESS (proc
, wait_proc
);
2485 /* Read data from the process, until we exhaust it. */
2486 while (XINT (wait_proc
->infd
) >= 0)
2488 nread
= read_process_output (proc
, XINT (wait_proc
->infd
));
2494 total_nread
+= nread
;
2496 else if (nread
== -1 && EIO
== errno
)
2500 else if (nread
== -1 && EAGAIN
== errno
)
2504 else if (nread
== -1 && EWOULDBLOCK
== errno
)
2508 if (total_nread
> 0 && do_display
)
2509 redisplay_preserve_echo_area ();
2514 /* Wait till there is something to do */
2517 Available
= non_process_wait_mask
;
2518 else if (! XINT (read_kbd
))
2519 Available
= non_keyboard_wait_mask
;
2521 Available
= input_wait_mask
;
2523 /* If frame size has changed or the window is newly mapped,
2524 redisplay now, before we start to wait. There is a race
2525 condition here; if a SIGIO arrives between now and the select
2526 and indicates that a frame is trashed, the select may block
2527 displaying a trashed screen. */
2528 if (frame_garbaged
&& do_display
)
2530 clear_waiting_for_input ();
2531 redisplay_preserve_echo_area ();
2532 if (XINT (read_kbd
) < 0)
2533 set_waiting_for_input (&timeout
);
2536 if (XINT (read_kbd
) && detect_input_pending ())
2539 FD_ZERO (&Available
);
2542 nfds
= select (max (max_process_desc
, max_keyboard_desc
) + 1,
2543 &Available
, (SELECT_TYPE
*)0, (SELECT_TYPE
*)0,
2548 /* Make C-g and alarm signals set flags again */
2549 clear_waiting_for_input ();
2551 /* If we woke up due to SIGWINCH, actually change size now. */
2552 do_pending_window_change (0);
2554 if (time_limit
&& nfds
== 0 && ! timeout_reduced_for_timers
)
2555 /* We wanted the full specified time, so return now. */
2559 if (xerrno
== EINTR
)
2560 FD_ZERO (&Available
);
2562 /* Ultrix select seems to return ENOMEM when it is
2563 interrupted. Treat it just like EINTR. Bleah. Note
2564 that we want to test for the "ultrix" CPP symbol, not
2565 "__ultrix__"; the latter is only defined under GCC, but
2566 not by DEC's bundled CC. -JimB */
2567 else if (xerrno
== ENOMEM
)
2568 FD_ZERO (&Available
);
2571 /* This happens for no known reason on ALLIANT.
2572 I am guessing that this is the right response. -- RMS. */
2573 else if (xerrno
== EFAULT
)
2574 FD_ZERO (&Available
);
2576 else if (xerrno
== EBADF
)
2579 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
2580 the child's closure of the pts gives the parent a SIGHUP, and
2581 the ptc file descriptor is automatically closed,
2582 yielding EBADF here or at select() call above.
2583 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
2584 in m/ibmrt-aix.h), and here we just ignore the select error.
2585 Cleanup occurs c/o status_notify after SIGCLD. */
2586 FD_ZERO (&Available
); /* Cannot depend on values returned */
2592 error ("select error: %s", emacs_strerror (xerrno
));
2594 #if defined(sun) && !defined(USG5_4)
2595 else if (nfds
> 0 && keyboard_bit_set (&Available
)
2597 /* System sometimes fails to deliver SIGIO.
2599 David J. Mackenzie says that Emacs doesn't compile under
2600 Solaris if this code is enabled, thus the USG5_4 in the CPP
2601 conditional. "I haven't noticed any ill effects so far.
2602 If you find a Solaris expert somewhere, they might know
2604 kill (getpid (), SIGIO
);
2607 #if 0 /* When polling is used, interrupt_input is 0,
2608 so get_input_pending should read the input.
2609 So this should not be needed. */
2610 /* If we are using polling for input,
2611 and we see input available, make it get read now.
2612 Otherwise it might not actually get read for a second.
2613 And on hpux, since we turn off polling in wait_reading_process_input,
2614 it might never get read at all if we don't spend much time
2615 outside of wait_reading_process_input. */
2616 if (XINT (read_kbd
) && interrupt_input
2617 && keyboard_bit_set (&Available
)
2618 && input_polling_used ())
2619 kill (getpid (), SIGALRM
);
2622 /* Check for keyboard input */
2623 /* If there is any, return immediately
2624 to give it higher priority than subprocesses */
2626 if (XINT (read_kbd
) != 0
2627 && detect_input_pending_run_timers (do_display
))
2629 swallow_events (do_display
);
2630 if (detect_input_pending_run_timers (do_display
))
2634 /* If there is unread keyboard input, also return. */
2635 if (XINT (read_kbd
) != 0
2636 && requeued_events_pending_p ())
2639 /* If we are not checking for keyboard input now,
2640 do process events (but don't run any timers).
2641 This is so that X events will be processed.
2642 Otherwise they may have to wait until polling takes place.
2643 That would causes delays in pasting selections, for example.
2645 (We used to do this only if wait_for_cell.) */
2646 if (XINT (read_kbd
) == 0 && detect_input_pending ())
2648 swallow_events (do_display
);
2649 #if 0 /* Exiting when read_kbd doesn't request that seems wrong, though. */
2650 if (detect_input_pending ())
2655 /* Exit now if the cell we're waiting for became non-nil. */
2656 if (wait_for_cell
&& ! NILP (*wait_for_cell
))
2660 /* If we think we have keyboard input waiting, but didn't get SIGIO,
2661 go read it. This can happen with X on BSD after logging out.
2662 In that case, there really is no input and no SIGIO,
2663 but select says there is input. */
2665 if (XINT (read_kbd
) && interrupt_input
2666 && keyboard_bit_set (&Available
))
2667 kill (getpid (), SIGIO
);
2671 got_some_input
|= nfds
> 0;
2673 /* If checking input just got us a size-change event from X,
2674 obey it now if we should. */
2675 if (XINT (read_kbd
) || wait_for_cell
)
2676 do_pending_window_change (0);
2678 /* Check for data from a process. */
2679 /* Really FIRST_PROC_DESC should be 0 on Unix,
2680 but this is safer in the short run. */
2681 for (channel
= 0; channel
<= max_process_desc
; channel
++)
2683 if (FD_ISSET (channel
, &Available
)
2684 && FD_ISSET (channel
, &non_keyboard_wait_mask
))
2688 /* If waiting for this channel, arrange to return as
2689 soon as no more input to be processed. No more
2691 if (wait_channel
== channel
)
2697 proc
= chan_process
[channel
];
2701 /* Read data from the process, starting with our
2702 buffered-ahead character if we have one. */
2704 nread
= read_process_output (proc
, channel
);
2707 /* Since read_process_output can run a filter,
2708 which can call accept-process-output,
2709 don't try to read from any other processes
2710 before doing the select again. */
2711 FD_ZERO (&Available
);
2714 redisplay_preserve_echo_area ();
2717 else if (nread
== -1 && errno
== EWOULDBLOCK
)
2720 /* ISC 4.1 defines both EWOULDBLOCK and O_NONBLOCK,
2721 and Emacs uses O_NONBLOCK, so what we get is EAGAIN. */
2723 else if (nread
== -1 && errno
== EAGAIN
)
2727 else if (nread
== -1 && errno
== EAGAIN
)
2729 /* Note that we cannot distinguish between no input
2730 available now and a closed pipe.
2731 With luck, a closed pipe will be accompanied by
2732 subprocess termination and SIGCHLD. */
2733 else if (nread
== 0 && !NETCONN_P (proc
))
2735 #endif /* O_NDELAY */
2736 #endif /* O_NONBLOCK */
2738 /* On some OSs with ptys, when the process on one end of
2739 a pty exits, the other end gets an error reading with
2740 errno = EIO instead of getting an EOF (0 bytes read).
2741 Therefore, if we get an error reading and errno =
2742 EIO, just continue, because the child process has
2743 exited and should clean itself up soon (e.g. when we
2746 However, it has been known to happen that the SIGCHLD
2747 got lost. So raise the signl again just in case.
2749 else if (nread
== -1 && errno
== EIO
)
2750 kill (getpid (), SIGCHLD
);
2751 #endif /* HAVE_PTYS */
2752 /* If we can detect process termination, don't consider the process
2753 gone just because its pipe is closed. */
2755 else if (nread
== 0 && !NETCONN_P (proc
))
2760 /* Preserve status of processes already terminated. */
2761 XSETINT (XPROCESS (proc
)->tick
, ++process_tick
);
2762 deactivate_process (proc
);
2763 if (!NILP (XPROCESS (proc
)->raw_status_low
))
2764 update_status (XPROCESS (proc
));
2765 if (EQ (XPROCESS (proc
)->status
, Qrun
))
2766 XPROCESS (proc
)->status
2767 = Fcons (Qexit
, Fcons (make_number (256), Qnil
));
2770 } /* end for each file descriptor */
2771 } /* end while exit conditions not met */
2773 waiting_for_user_input_p
= 0;
2775 /* If calling from keyboard input, do not quit
2776 since we want to return C-g as an input character.
2777 Otherwise, do pending quit if requested. */
2778 if (XINT (read_kbd
) >= 0)
2780 /* Prevent input_pending from remaining set if we quit. */
2781 clear_input_pending ();
2785 /* AlainF 5-Jul-1996
2786 HP-UX 10.10 seems to have problems with signals coming in
2787 Causes "poll: interrupted system call" messages when Emacs is run
2789 Turn periodic alarms back on */
2793 return got_some_input
;
2796 /* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */
2799 read_process_output_call (fun_and_args
)
2800 Lisp_Object fun_and_args
;
2802 return apply1 (XCAR (fun_and_args
), XCDR (fun_and_args
));
2806 read_process_output_error_handler (error
)
2809 cmd_error_internal (error
, "error in process filter: ");
2811 update_echo_area ();
2812 Fsleep_for (make_number (2), Qnil
);
2816 /* Read pending output from the process channel,
2817 starting with our buffered-ahead character if we have one.
2818 Yield number of decoded characters read.
2820 This function reads at most 1024 characters.
2821 If you want to read all available subprocess output,
2822 you must call it repeatedly until it returns zero.
2824 The characters read are decoded according to PROC's coding-system
2828 read_process_output (proc
, channel
)
2830 register int channel
;
2832 register int nchars
, nbytes
;
2835 int chars_allocated
= 0; /* If 1, `chars' should be freed later. */
2839 register Lisp_Object outstream
;
2840 register struct buffer
*old
= current_buffer
;
2841 register struct Lisp_Process
*p
= XPROCESS (proc
);
2842 register int opoint
;
2843 struct coding_system
*coding
= proc_decode_coding_system
[channel
];
2844 int chars_in_decoding_buf
= 0; /* If 1, `chars' points
2845 XSTRING (p->decoding_buf)->data. */
2846 int carryover
= XINT (p
->decoding_carryover
);
2847 int require_decoding
;
2850 VMS_PROC_STUFF
*vs
, *get_vms_process_pointer();
2852 vs
= get_vms_process_pointer (p
->pid
);
2856 return (0); /* Really weird if it does this */
2857 if (!(vs
->iosb
[0] & 1))
2858 return -1; /* I/O error */
2861 error ("Could not get VMS process pointer");
2862 chars
= vs
->inputBuffer
;
2863 nbytes
= clean_vms_buffer (chars
, vs
->iosb
[1]);
2866 start_vms_process_read (vs
); /* Crank up the next read on the process */
2867 return 1; /* Nothing worth printing, say we got 1 */
2871 /* The data carried over in the previous decoding (which are at
2872 the tail of decoding buffer) should be prepended to the new
2873 data read to decode all together. */
2874 char *buf
= (char *) xmalloc (nbytes
+ carryover
);
2876 bcopy (XSTRING (p
->decoding_buf
)->data
2877 + STRING_BYTES (XSTRING (p
->decoding_buf
)) - carryover
,
2879 bcopy (chars
, buf
+ carryover
, nbytes
);
2881 chars_allocated
= 1;
2886 /* See the comment above. */
2887 bcopy (XSTRING (p
->decoding_buf
)->data
2888 + STRING_BYTES (XSTRING (p
->decoding_buf
)) - carryover
,
2891 if (proc_buffered_char
[channel
] < 0)
2892 nbytes
= emacs_read (channel
, buf
+ carryover
, (sizeof buf
) - carryover
);
2895 buf
[carryover
] = proc_buffered_char
[channel
];
2896 proc_buffered_char
[channel
] = -1;
2897 nbytes
= emacs_read (channel
, buf
+ carryover
+ 1,
2898 (sizeof buf
) - carryover
- 1);
2902 nbytes
= nbytes
+ 1;
2905 #endif /* not VMS */
2907 XSETINT (p
->decoding_carryover
, 0);
2909 /* At this point, NBYTES holds number of characters just received
2910 (including the one in proc_buffered_char[channel]). */
2913 if (nbytes
< 0 || coding
->mode
& CODING_MODE_LAST_BLOCK
)
2915 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
2918 /* Now set NBYTES how many bytes we must decode. */
2919 nbytes
+= carryover
;
2921 require_decoding
= 1;
2922 coding
->src_multibyte
= 0;
2923 /* Decide the multibyteness of the decoded text. */
2924 if (!NILP (p
->filter
))
2925 /* We make a string given to the process filter. The
2926 multibyteness is decided by which coding system we use for
2928 coding
->dst_multibyte
= (coding
->type
!= coding_type_no_conversion
2929 && coding
->type
!= coding_type_raw_text
);
2930 else if (!NILP (p
->buffer
) && !NILP (XBUFFER (p
->buffer
)->name
))
2931 /* The decoded text is inserted in a buffer. The multibyteness is
2932 decided by that of the buffer. */
2933 coding
->dst_multibyte
2934 = !NILP (XBUFFER (p
->buffer
)->enable_multibyte_characters
);
2936 /* We can discard the source, thus no need of decoding. */
2937 require_decoding
= 0;
2939 if (require_decoding
2940 || CODING_MAY_REQUIRE_DECODING (coding
))
2942 int require
= decoding_buffer_size (coding
, nbytes
);
2943 int dst_bytes
= STRING_BYTES (XSTRING (p
->decoding_buf
));
2946 if (dst_bytes
< require
)
2947 p
->decoding_buf
= make_uninit_string (require
), dst_bytes
= require
;
2948 result
= decode_coding (coding
, chars
, XSTRING (p
->decoding_buf
)->data
,
2950 carryover
= nbytes
- coding
->consumed
;
2953 /* Copy the carryover bytes to the end of p->decoding_buf, to
2954 be processed on the next read. Since decoding_buffer_size
2955 asks for an extra amount of space beyond the maximum
2956 expected for the output, there should always be sufficient
2957 space for the carryover (which is by definition a sequence
2958 of bytes that was not long enough to be decoded, and thus
2959 has a bounded length). */
2960 if (dst_bytes
< coding
->produced
+ carryover
)
2962 bcopy (chars
+ coding
->consumed
,
2963 XSTRING (p
->decoding_buf
)->data
+ dst_bytes
- carryover
,
2965 XSETINT (p
->decoding_carryover
, carryover
);
2968 /* A new coding system might be found by `decode_coding'. */
2969 if (!EQ (p
->decode_coding_system
, coding
->symbol
))
2971 p
->decode_coding_system
= coding
->symbol
;
2973 /* Don't call setup_coding_system for
2974 proc_decode_coding_system[channel] here. It is done in
2975 detect_coding called via decode_coding above. */
2977 /* If a coding system for encoding is not yet decided, we set
2978 it as the same as coding-system for decoding.
2980 But, before doing that we must check if
2981 proc_encode_coding_system[p->outfd] surely points to a
2982 valid memory because p->outfd will be changed once EOF is
2983 sent to the process. */
2984 if (NILP (p
->encode_coding_system
)
2985 && proc_encode_coding_system
[XINT (p
->outfd
)])
2987 p
->encode_coding_system
= coding
->symbol
;
2988 setup_coding_system (coding
->symbol
,
2989 proc_encode_coding_system
[XINT (p
->outfd
)]);
2994 /* Now we don't need the contents of `chars'. */
2995 if (chars_allocated
)
2998 if (coding
->produced
== 0)
3000 chars
= (char *) XSTRING (p
->decoding_buf
)->data
;
3001 nbytes
= coding
->produced
;
3002 nchars
= coding
->produced_char
;
3003 chars_in_decoding_buf
= 1;
3008 if (chars_allocated
)
3010 /* Although we don't have to decode the received data, we
3011 must move it to an area which we don't have to free. */
3012 if (! STRINGP (p
->decoding_buf
)
3013 || STRING_BYTES (XSTRING (p
->decoding_buf
)) < nbytes
)
3014 p
->decoding_buf
= make_uninit_string (nbytes
);
3015 bcopy (chars
, XSTRING (p
->decoding_buf
)->data
, nbytes
);
3017 chars_in_decoding_buf
= 1;
3023 Vlast_coding_system_used
= coding
->symbol
;
3025 /* If the caller required, let the process associated buffer
3026 inherit the coding-system used to decode the process output. */
3027 if (! NILP (p
->inherit_coding_system_flag
)
3028 && !NILP (p
->buffer
) && !NILP (XBUFFER (p
->buffer
)->name
))
3030 struct buffer
*prev_buf
= current_buffer
;
3032 Fset_buffer (p
->buffer
);
3033 call1 (intern ("after-insert-file-set-buffer-file-coding-system"),
3034 make_number (nbytes
));
3035 set_buffer_internal (prev_buf
);
3038 /* Read and dispose of the process output. */
3039 outstream
= p
->filter
;
3040 if (!NILP (outstream
))
3042 /* We inhibit quit here instead of just catching it so that
3043 hitting ^G when a filter happens to be running won't screw
3045 int count
= specpdl_ptr
- specpdl
;
3046 Lisp_Object odeactivate
;
3047 Lisp_Object obuffer
, okeymap
;
3049 int outer_running_asynch_code
= running_asynch_code
;
3050 int waiting
= waiting_for_user_input_p
;
3052 /* No need to gcpro these, because all we do with them later
3053 is test them for EQness, and none of them should be a string. */
3054 odeactivate
= Vdeactivate_mark
;
3055 XSETBUFFER (obuffer
, current_buffer
);
3056 okeymap
= current_buffer
->keymap
;
3058 specbind (Qinhibit_quit
, Qt
);
3059 specbind (Qlast_nonmenu_event
, Qt
);
3061 /* In case we get recursively called,
3062 and we already saved the match data nonrecursively,
3063 save the same match data in safely recursive fashion. */
3064 if (outer_running_asynch_code
)
3067 /* Don't clobber the CURRENT match data, either! */
3068 tem
= Fmatch_data (Qnil
, Qnil
);
3069 restore_match_data ();
3070 record_unwind_protect (Fset_match_data
, Fmatch_data (Qnil
, Qnil
));
3071 Fset_match_data (tem
);
3074 /* For speed, if a search happens within this code,
3075 save the match data in a special nonrecursive fashion. */
3076 running_asynch_code
= 1;
3078 /* The multibyteness of a string given to the filter is decided
3079 by which coding system we used for decoding. */
3080 if (coding
->dst_multibyte
)
3081 text
= make_multibyte_string (chars
, nchars
, nbytes
);
3083 text
= make_unibyte_string (chars
, nbytes
);
3085 internal_condition_case_1 (read_process_output_call
,
3087 Fcons (proc
, Fcons (text
, Qnil
))),
3088 !NILP (Vdebug_on_error
) ? Qnil
: Qerror
,
3089 read_process_output_error_handler
);
3091 /* If we saved the match data nonrecursively, restore it now. */
3092 restore_match_data ();
3093 running_asynch_code
= outer_running_asynch_code
;
3095 /* Handling the process output should not deactivate the mark. */
3096 Vdeactivate_mark
= odeactivate
;
3098 /* Restore waiting_for_user_input_p as it was
3099 when we were called, in case the filter clobbered it. */
3100 waiting_for_user_input_p
= waiting
;
3102 #if 0 /* Call record_asynch_buffer_change unconditionally,
3103 because we might have changed minor modes or other things
3104 that affect key bindings. */
3105 if (! EQ (Fcurrent_buffer (), obuffer
)
3106 || ! EQ (current_buffer
->keymap
, okeymap
))
3108 /* But do it only if the caller is actually going to read events.
3109 Otherwise there's no need to make him wake up, and it could
3110 cause trouble (for example it would make Fsit_for return). */
3111 if (waiting_for_user_input_p
== -1)
3112 record_asynch_buffer_change ();
3115 start_vms_process_read (vs
);
3117 unbind_to (count
, Qnil
);
3121 /* If no filter, write into buffer if it isn't dead. */
3122 if (!NILP (p
->buffer
) && !NILP (XBUFFER (p
->buffer
)->name
))
3124 Lisp_Object old_read_only
;
3125 int old_begv
, old_zv
;
3126 int old_begv_byte
, old_zv_byte
;
3127 Lisp_Object odeactivate
;
3128 int before
, before_byte
;
3131 odeactivate
= Vdeactivate_mark
;
3133 Fset_buffer (p
->buffer
);
3135 opoint_byte
= PT_BYTE
;
3136 old_read_only
= current_buffer
->read_only
;
3139 old_begv_byte
= BEGV_BYTE
;
3140 old_zv_byte
= ZV_BYTE
;
3142 current_buffer
->read_only
= Qnil
;
3144 /* Insert new output into buffer
3145 at the current end-of-output marker,
3146 thus preserving logical ordering of input and output. */
3147 if (XMARKER (p
->mark
)->buffer
)
3148 SET_PT_BOTH (clip_to_bounds (BEGV
, marker_position (p
->mark
), ZV
),
3149 clip_to_bounds (BEGV_BYTE
, marker_byte_position (p
->mark
),
3152 SET_PT_BOTH (ZV
, ZV_BYTE
);
3154 before_byte
= PT_BYTE
;
3156 /* If the output marker is outside of the visible region, save
3157 the restriction and widen. */
3158 if (! (BEGV
<= PT
&& PT
<= ZV
))
3161 /* If the text to insert is in decoding buffer (Lisp String), we
3162 must move it to a relocation-free memory space. */
3163 if (chars_in_decoding_buf
)
3165 chars
= (char *) alloca (nbytes
);
3166 bcopy (XSTRING (p
->decoding_buf
)->data
, chars
, nbytes
);
3169 /* Insert before markers in case we are inserting where
3170 the buffer's mark is, and the user's next command is Meta-y. */
3171 insert_1_both (chars
, nchars
, nbytes
, 0, 1, 1);
3172 signal_after_change (before
, 0, PT
- before
);
3173 update_compositions (before
, PT
, CHECK_BORDER
);
3175 set_marker_both (p
->mark
, p
->buffer
, PT
, PT_BYTE
);
3177 update_mode_lines
++;
3179 /* Make sure opoint and the old restrictions
3180 float ahead of any new text just as point would. */
3181 if (opoint
>= before
)
3183 opoint
+= PT
- before
;
3184 opoint_byte
+= PT_BYTE
- before_byte
;
3186 if (old_begv
> before
)
3188 old_begv
+= PT
- before
;
3189 old_begv_byte
+= PT_BYTE
- before_byte
;
3191 if (old_zv
>= before
)
3193 old_zv
+= PT
- before
;
3194 old_zv_byte
+= PT_BYTE
- before_byte
;
3197 /* If the restriction isn't what it should be, set it. */
3198 if (old_begv
!= BEGV
|| old_zv
!= ZV
)
3199 Fnarrow_to_region (make_number (old_begv
), make_number (old_zv
));
3201 /* Handling the process output should not deactivate the mark. */
3202 Vdeactivate_mark
= odeactivate
;
3204 current_buffer
->read_only
= old_read_only
;
3205 SET_PT_BOTH (opoint
, opoint_byte
);
3206 set_buffer_internal (old
);
3209 start_vms_process_read (vs
);
3214 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p
, Swaiting_for_user_input_p
,
3216 "Returns non-nil if emacs is waiting for input from the user.\n\
3217 This is intended for use by asynchronous process output filters and sentinels.")
3220 return (waiting_for_user_input_p
? Qt
: Qnil
);
3223 /* Sending data to subprocess */
3225 jmp_buf send_process_frame
;
3228 send_process_trap ()
3234 longjmp (send_process_frame
, 1);
3237 /* Send some data to process PROC.
3238 BUF is the beginning of the data; LEN is the number of characters.
3239 OBJECT is the Lisp object that the data comes from.
3241 The data is encoded by PROC's coding-system for encoding before it
3242 is sent. But if the data ends at the middle of multi-byte
3243 representation, that incomplete sequence of bytes are sent without
3244 being encoded. Should we store them in a buffer to prepend them to
3245 the data send later?
3247 This function can evaluate Lisp code and can garbage collect. */
3250 send_process (proc
, buf
, len
, object
)
3251 volatile Lisp_Object proc
;
3256 /* Use volatile to protect variables from being clobbered by longjmp. */
3258 struct coding_system
*coding
;
3259 struct gcpro gcpro1
;
3260 int carryover
= XINT (XPROCESS (proc
)->encoding_carryover
);
3261 int require_encoding
;
3266 struct Lisp_Process
*p
= XPROCESS (proc
);
3267 VMS_PROC_STUFF
*vs
, *get_vms_process_pointer();
3270 if (! NILP (XPROCESS (proc
)->raw_status_low
))
3271 update_status (XPROCESS (proc
));
3272 if (! EQ (XPROCESS (proc
)->status
, Qrun
))
3273 error ("Process %s not running",
3274 XSTRING (XPROCESS (proc
)->name
)->data
);
3275 if (XINT (XPROCESS (proc
)->outfd
) < 0)
3276 error ("Output file descriptor of %s is closed",
3277 XSTRING (XPROCESS (proc
)->name
)->data
);
3279 coding
= proc_encode_coding_system
[XINT (XPROCESS (proc
)->outfd
)];
3280 Vlast_coding_system_used
= coding
->symbol
;
3282 require_encoding
= 0;
3283 if (STRINGP (object
) && STRING_MULTIBYTE (object
))
3284 coding
->src_multibyte
= require_encoding
= 1;
3285 else if (BUFFERP (object
)
3286 && !NILP (XBUFFER (object
)->enable_multibyte_characters
))
3287 coding
->src_multibyte
= require_encoding
= 1;
3289 require_encoding
= 0;
3290 coding
->dst_multibyte
= 0;
3292 if (require_encoding
3293 || CODING_REQUIRE_ENCODING (coding
))
3295 int require
= encoding_buffer_size (coding
, len
);
3297 unsigned char *temp_buf
= NULL
;
3299 /* Remember the offset of data because a string or a buffer may
3300 be relocated. Setting OFFSET to -1 means we don't have to
3301 care about relocation. */
3302 offset
= (BUFFERP (object
)
3303 ? BUF_PTR_BYTE_POS (XBUFFER (object
), buf
)
3305 ? buf
- XSTRING (object
)->data
3310 temp_buf
= (unsigned char *) xmalloc (len
+ carryover
);
3314 if (BUFFERP (object
))
3315 buf
= BUF_BYTE_ADDRESS (XBUFFER (object
), offset
);
3316 else if (STRINGP (object
))
3317 buf
= offset
+ XSTRING (object
)->data
;
3318 /* Now we don't have to care about relocation. */
3321 bcopy ((XSTRING (XPROCESS (proc
)->encoding_buf
)->data
3322 + STRING_BYTES (XSTRING (XPROCESS (proc
)->encoding_buf
))
3326 bcopy (buf
, temp_buf
+ carryover
, len
);
3330 if (STRING_BYTES (XSTRING (XPROCESS (proc
)->encoding_buf
)) < require
)
3332 XPROCESS (proc
)->encoding_buf
= make_uninit_string (require
);
3336 if (BUFFERP (object
))
3337 buf
= BUF_BYTE_ADDRESS (XBUFFER (object
), offset
);
3338 else if (STRINGP (object
))
3339 buf
= offset
+ XSTRING (object
)->data
;
3342 object
= XPROCESS (proc
)->encoding_buf
;
3343 encode_coding (coding
, buf
, XSTRING (object
)->data
,
3344 len
, STRING_BYTES (XSTRING (object
)));
3345 len
= coding
->produced
;
3346 buf
= XSTRING (object
)->data
;
3352 vs
= get_vms_process_pointer (p
->pid
);
3354 error ("Could not find this process: %x", p
->pid
);
3355 else if (write_to_vms_process (vs
, buf
, len
))
3359 if (pty_max_bytes
== 0)
3361 #if defined (HAVE_FPATHCONF) && defined (_PC_MAX_CANON)
3362 pty_max_bytes
= fpathconf (XFASTINT (XPROCESS (proc
)->outfd
),
3364 if (pty_max_bytes
< 0)
3365 pty_max_bytes
= 250;
3367 pty_max_bytes
= 250;
3369 /* Deduct one, to leave space for the eof. */
3373 if (!setjmp (send_process_frame
))
3377 SIGTYPE (*old_sigpipe
)();
3379 /* Decide how much data we can send in one batch.
3380 Long lines need to be split into multiple batches. */
3381 if (!NILP (XPROCESS (proc
)->pty_flag
))
3383 /* Starting this at zero is always correct when not the first iteration
3384 because the previous iteration ended by sending C-d.
3385 It may not be correct for the first iteration
3386 if a partial line was sent in a separate send_process call.
3387 If that proves worth handling, we need to save linepos
3388 in the process object. */
3390 unsigned char *ptr
= buf
;
3391 unsigned char *end
= buf
+ len
;
3393 /* Scan through this text for a line that is too long. */
3394 while (ptr
!= end
&& linepos
< pty_max_bytes
)
3402 /* If we found one, break the line there
3403 and put in a C-d to force the buffer through. */
3407 /* Send this batch, using one or more write calls. */
3410 old_sigpipe
= (SIGTYPE (*) ()) signal (SIGPIPE
, send_process_trap
);
3411 rv
= emacs_write (XINT (XPROCESS (proc
)->outfd
), buf
, this);
3412 signal (SIGPIPE
, old_sigpipe
);
3418 || errno
== EWOULDBLOCK
3424 /* Buffer is full. Wait, accepting input;
3425 that may allow the program
3426 to finish doing output and read more. */
3431 #ifdef BROKEN_PTY_READ_AFTER_EAGAIN
3432 /* A gross hack to work around a bug in FreeBSD.
3433 In the following sequence, read(2) returns
3437 write(2) 954 bytes, get EAGAIN
3438 read(2) 1024 bytes in process_read_output
3439 read(2) 11 bytes in process_read_output
3441 That is, read(2) returns more bytes than have
3442 ever been written successfully. The 1033 bytes
3443 read are the 1022 bytes written successfully
3444 after processing (for example with CRs added if
3445 the terminal is set up that way which it is
3446 here). The same bytes will be seen again in a
3447 later read(2), without the CRs. */
3449 if (errno
== EAGAIN
)
3452 ioctl (XINT (XPROCESS (proc
)->outfd
), TIOCFLUSH
,
3455 #endif /* BROKEN_PTY_READ_AFTER_EAGAIN */
3457 /* Running filters might relocate buffers or strings.
3458 Arrange to relocate BUF. */
3459 if (BUFFERP (object
))
3460 offset
= BUF_PTR_BYTE_POS (XBUFFER (object
), buf
);
3461 else if (STRINGP (object
))
3462 offset
= buf
- XSTRING (object
)->data
;
3464 XSETFASTINT (zero
, 0);
3465 #ifdef EMACS_HAS_USECS
3466 wait_reading_process_input (0, 20000, zero
, 0);
3468 wait_reading_process_input (1, 0, zero
, 0);
3471 if (BUFFERP (object
))
3472 buf
= BUF_BYTE_ADDRESS (XBUFFER (object
), offset
);
3473 else if (STRINGP (object
))
3474 buf
= offset
+ XSTRING (object
)->data
;
3479 /* This is a real error. */
3480 report_file_error ("writing to process", Fcons (proc
, Qnil
));
3487 /* If we sent just part of the string, put in an EOF
3488 to force it through, before we send the rest. */
3490 Fprocess_send_eof (proc
);
3495 XPROCESS (proc
)->raw_status_low
= Qnil
;
3496 XPROCESS (proc
)->raw_status_high
= Qnil
;
3497 XPROCESS (proc
)->status
= Fcons (Qexit
, Fcons (make_number (256), Qnil
));
3498 XSETINT (XPROCESS (proc
)->tick
, ++process_tick
);
3499 deactivate_process (proc
);
3501 error ("Error writing to process %s; closed it",
3502 XSTRING (XPROCESS (proc
)->name
)->data
);
3504 error ("SIGPIPE raised on process %s; closed it",
3505 XSTRING (XPROCESS (proc
)->name
)->data
);
3512 DEFUN ("process-send-region", Fprocess_send_region
, Sprocess_send_region
,
3514 "Send current contents of region as input to PROCESS.\n\
3515 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
3516 nil, indicating the current buffer's process.\n\
3517 Called from program, takes three arguments, PROCESS, START and END.\n\
3518 If the region is more than 500 characters long,\n\
3519 it is sent in several bunches. This may happen even for shorter regions.\n\
3520 Output from processes can arrive in between bunches.")
3521 (process
, start
, end
)
3522 Lisp_Object process
, start
, end
;
3527 proc
= get_process (process
);
3528 validate_region (&start
, &end
);
3530 if (XINT (start
) < GPT
&& XINT (end
) > GPT
)
3531 move_gap (XINT (start
));
3533 start1
= CHAR_TO_BYTE (XINT (start
));
3534 end1
= CHAR_TO_BYTE (XINT (end
));
3535 send_process (proc
, BYTE_POS_ADDR (start1
), end1
- start1
,
3536 Fcurrent_buffer ());
3541 DEFUN ("process-send-string", Fprocess_send_string
, Sprocess_send_string
,
3543 "Send PROCESS the contents of STRING as input.\n\
3544 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
3545 nil, indicating the current buffer's process.\n\
3546 If STRING is more than 500 characters long,\n\
3547 it is sent in several bunches. This may happen even for shorter strings.\n\
3548 Output from processes can arrive in between bunches.")
3550 Lisp_Object process
, string
;
3553 CHECK_STRING (string
, 1);
3554 proc
= get_process (process
);
3555 send_process (proc
, XSTRING (string
)->data
,
3556 STRING_BYTES (XSTRING (string
)), string
);
3560 DEFUN ("process-running-child-p", Fprocess_running_child_p
,
3561 Sprocess_running_child_p
, 0, 1, 0,
3562 "Return t if PROCESS has given the terminal to a child.\n\
3563 If the operating system does not make it possible to find out,\n\
3564 return t unconditionally.")
3566 Lisp_Object process
;
3568 /* Initialize in case ioctl doesn't exist or gives an error,
3569 in a way that will cause returning t. */
3572 struct Lisp_Process
*p
;
3574 proc
= get_process (process
);
3575 p
= XPROCESS (proc
);
3577 if (!EQ (p
->childp
, Qt
))
3578 error ("Process %s is not a subprocess",
3579 XSTRING (p
->name
)->data
);
3580 if (XINT (p
->infd
) < 0)
3581 error ("Process %s is not active",
3582 XSTRING (p
->name
)->data
);
3585 if (!NILP (p
->subtty
))
3586 ioctl (XFASTINT (p
->subtty
), TIOCGPGRP
, &gid
);
3588 ioctl (XINT (p
->infd
), TIOCGPGRP
, &gid
);
3589 #endif /* defined (TIOCGPGRP ) */
3591 if (gid
== XFASTINT (p
->pid
))
3596 /* send a signal number SIGNO to PROCESS.
3597 If CURRENT_GROUP is t, that means send to the process group
3598 that currently owns the terminal being used to communicate with PROCESS.
3599 This is used for various commands in shell mode.
3600 If CURRENT_GROUP is lambda, that means send to the process group
3601 that currently owns the terminal, but only if it is NOT the shell itself.
3603 If NOMSG is zero, insert signal-announcements into process's buffers
3606 If we can, we try to signal PROCESS by sending control characters
3607 down the pty. This allows us to signal inferiors who have changed
3608 their uid, for which killpg would return an EPERM error. */
3611 process_send_signal (process
, signo
, current_group
, nomsg
)
3612 Lisp_Object process
;
3614 Lisp_Object current_group
;
3618 register struct Lisp_Process
*p
;
3622 proc
= get_process (process
);
3623 p
= XPROCESS (proc
);
3625 if (!EQ (p
->childp
, Qt
))
3626 error ("Process %s is not a subprocess",
3627 XSTRING (p
->name
)->data
);
3628 if (XINT (p
->infd
) < 0)
3629 error ("Process %s is not active",
3630 XSTRING (p
->name
)->data
);
3632 if (NILP (p
->pty_flag
))
3633 current_group
= Qnil
;
3635 /* If we are using pgrps, get a pgrp number and make it negative. */
3636 if (!NILP (current_group
))
3638 #ifdef SIGNALS_VIA_CHARACTERS
3639 /* If possible, send signals to the entire pgrp
3640 by sending an input character to it. */
3642 /* TERMIOS is the latest and bestest, and seems most likely to
3643 work. If the system has it, use it. */
3650 tcgetattr (XINT (p
->infd
), &t
);
3651 send_process (proc
, &t
.c_cc
[VINTR
], 1, Qnil
);
3655 tcgetattr (XINT (p
->infd
), &t
);
3656 send_process (proc
, &t
.c_cc
[VQUIT
], 1, Qnil
);
3660 tcgetattr (XINT (p
->infd
), &t
);
3661 #if defined (VSWTCH) && !defined (PREFER_VSUSP)
3662 send_process (proc
, &t
.c_cc
[VSWTCH
], 1, Qnil
);
3664 send_process (proc
, &t
.c_cc
[VSUSP
], 1, Qnil
);
3669 #else /* ! HAVE_TERMIOS */
3671 /* On Berkeley descendants, the following IOCTL's retrieve the
3672 current control characters. */
3673 #if defined (TIOCGLTC) && defined (TIOCGETC)
3681 ioctl (XINT (p
->infd
), TIOCGETC
, &c
);
3682 send_process (proc
, &c
.t_intrc
, 1, Qnil
);
3685 ioctl (XINT (p
->infd
), TIOCGETC
, &c
);
3686 send_process (proc
, &c
.t_quitc
, 1, Qnil
);
3690 ioctl (XINT (p
->infd
), TIOCGLTC
, &lc
);
3691 send_process (proc
, &lc
.t_suspc
, 1, Qnil
);
3693 #endif /* ! defined (SIGTSTP) */
3696 #else /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
3698 /* On SYSV descendants, the TCGETA ioctl retrieves the current control
3705 ioctl (XINT (p
->infd
), TCGETA
, &t
);
3706 send_process (proc
, &t
.c_cc
[VINTR
], 1, Qnil
);
3709 ioctl (XINT (p
->infd
), TCGETA
, &t
);
3710 send_process (proc
, &t
.c_cc
[VQUIT
], 1, Qnil
);
3714 ioctl (XINT (p
->infd
), TCGETA
, &t
);
3715 send_process (proc
, &t
.c_cc
[VSWTCH
], 1, Qnil
);
3717 #endif /* ! defined (SIGTSTP) */
3719 #else /* ! defined (TCGETA) */
3720 Your configuration files are messed up
.
3721 /* If your system configuration files define SIGNALS_VIA_CHARACTERS,
3722 you'd better be using one of the alternatives above! */
3723 #endif /* ! defined (TCGETA) */
3724 #endif /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
3725 #endif /* ! defined HAVE_TERMIOS */
3726 #endif /* ! defined (SIGNALS_VIA_CHARACTERS) */
3729 /* Get the pgrp using the tty itself, if we have that.
3730 Otherwise, use the pty to get the pgrp.
3731 On pfa systems, saka@pfu.fujitsu.co.JP writes:
3732 "TIOCGPGRP symbol defined in sys/ioctl.h at E50.
3733 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
3734 His patch indicates that if TIOCGPGRP returns an error, then
3735 we should just assume that p->pid is also the process group id. */
3739 if (!NILP (p
->subtty
))
3740 err
= ioctl (XFASTINT (p
->subtty
), TIOCGPGRP
, &gid
);
3742 err
= ioctl (XINT (p
->infd
), TIOCGPGRP
, &gid
);
3746 gid
= - XFASTINT (p
->pid
);
3747 #endif /* ! defined (pfa) */
3753 #else /* ! defined (TIOCGPGRP ) */
3754 /* Can't select pgrps on this system, so we know that
3755 the child itself heads the pgrp. */
3756 gid
= - XFASTINT (p
->pid
);
3757 #endif /* ! defined (TIOCGPGRP ) */
3759 /* If current_group is lambda, and the shell owns the terminal,
3760 don't send any signal. */
3761 if (EQ (current_group
, Qlambda
) && gid
== - XFASTINT (p
->pid
))
3765 gid
= - XFASTINT (p
->pid
);
3771 p
->raw_status_low
= Qnil
;
3772 p
->raw_status_high
= Qnil
;
3774 XSETINT (p
->tick
, ++process_tick
);
3778 #endif /* ! defined (SIGCONT) */
3781 send_process (proc
, "\003", 1, Qnil
); /* ^C */
3786 send_process (proc
, "\031", 1, Qnil
); /* ^Y */
3791 sys$
forcex (&(XFASTINT (p
->pid
)), 0, 1);
3794 flush_pending_output (XINT (p
->infd
));
3798 /* If we don't have process groups, send the signal to the immediate
3799 subprocess. That isn't really right, but it's better than any
3800 obvious alternative. */
3803 kill (XFASTINT (p
->pid
), signo
);
3807 /* gid may be a pid, or minus a pgrp's number */
3809 if (!NILP (current_group
))
3810 ioctl (XINT (p
->infd
), TIOCSIGSEND
, signo
);
3813 gid
= - XFASTINT (p
->pid
);
3816 #else /* ! defined (TIOCSIGSEND) */
3817 EMACS_KILLPG (-gid
, signo
);
3818 #endif /* ! defined (TIOCSIGSEND) */
3821 DEFUN ("interrupt-process", Finterrupt_process
, Sinterrupt_process
, 0, 2, 0,
3822 "Interrupt process PROCESS.\n\
3823 PROCESS may be a process, a buffer, or the name of a process or buffer.\n\
3824 nil or no arg means current buffer's process.\n\
3825 Second arg CURRENT-GROUP non-nil means send signal to\n\
3826 the current process-group of the process's controlling terminal\n\
3827 rather than to the process's own process group.\n\
3828 If the process is a shell, this means interrupt current subjob\n\
3829 rather than the shell.\n\
3831 If CURRENT-GROUP is `lambda', and if the shell owns the terminal,\n\
3832 don't send the signal.")
3833 (process
, current_group
)
3834 Lisp_Object process
, current_group
;
3836 process_send_signal (process
, SIGINT
, current_group
, 0);
3840 DEFUN ("kill-process", Fkill_process
, Skill_process
, 0, 2, 0,
3841 "Kill process PROCESS. May be process or name of one.\n\
3842 See function `interrupt-process' for more details on usage.")
3843 (process
, current_group
)
3844 Lisp_Object process
, current_group
;
3846 process_send_signal (process
, SIGKILL
, current_group
, 0);
3850 DEFUN ("quit-process", Fquit_process
, Squit_process
, 0, 2, 0,
3851 "Send QUIT signal to process PROCESS. May be process or name of one.\n\
3852 See function `interrupt-process' for more details on usage.")
3853 (process
, current_group
)
3854 Lisp_Object process
, current_group
;
3856 process_send_signal (process
, SIGQUIT
, current_group
, 0);
3860 DEFUN ("stop-process", Fstop_process
, Sstop_process
, 0, 2, 0,
3861 "Stop process PROCESS. May be process or name of one.\n\
3862 See function `interrupt-process' for more details on usage.")
3863 (process
, current_group
)
3864 Lisp_Object process
, current_group
;
3867 error ("no SIGTSTP support");
3869 process_send_signal (process
, SIGTSTP
, current_group
, 0);
3874 DEFUN ("continue-process", Fcontinue_process
, Scontinue_process
, 0, 2, 0,
3875 "Continue process PROCESS. May be process or name of one.\n\
3876 See function `interrupt-process' for more details on usage.")
3877 (process
, current_group
)
3878 Lisp_Object process
, current_group
;
3881 process_send_signal (process
, SIGCONT
, current_group
, 0);
3883 error ("no SIGCONT support");
3888 DEFUN ("signal-process", Fsignal_process
, Ssignal_process
,
3889 2, 2, "nProcess number: \nnSignal code: ",
3890 "Send the process with process id PID the signal with code SIGCODE.\n\
3891 PID must be an integer. The process need not be a child of this Emacs.\n\
3892 SIGCODE may be an integer, or a symbol whose name is a signal name.")
3894 Lisp_Object pid
, sigcode
;
3896 CHECK_NUMBER (pid
, 0);
3898 #define handle_signal(NAME, VALUE) \
3899 else if (!strcmp (name, NAME)) \
3900 XSETINT (sigcode, VALUE)
3902 if (INTEGERP (sigcode
))
3906 unsigned char *name
;
3908 CHECK_SYMBOL (sigcode
, 1);
3909 name
= XSYMBOL (sigcode
)->name
->data
;
3914 handle_signal ("SIGHUP", SIGHUP
);
3917 handle_signal ("SIGINT", SIGINT
);
3920 handle_signal ("SIGQUIT", SIGQUIT
);
3923 handle_signal ("SIGILL", SIGILL
);
3926 handle_signal ("SIGABRT", SIGABRT
);
3929 handle_signal ("SIGEMT", SIGEMT
);
3932 handle_signal ("SIGKILL", SIGKILL
);
3935 handle_signal ("SIGFPE", SIGFPE
);
3938 handle_signal ("SIGBUS", SIGBUS
);
3941 handle_signal ("SIGSEGV", SIGSEGV
);
3944 handle_signal ("SIGSYS", SIGSYS
);
3947 handle_signal ("SIGPIPE", SIGPIPE
);
3950 handle_signal ("SIGALRM", SIGALRM
);
3953 handle_signal ("SIGTERM", SIGTERM
);
3956 handle_signal ("SIGURG", SIGURG
);
3959 handle_signal ("SIGSTOP", SIGSTOP
);
3962 handle_signal ("SIGTSTP", SIGTSTP
);
3965 handle_signal ("SIGCONT", SIGCONT
);
3968 handle_signal ("SIGCHLD", SIGCHLD
);
3971 handle_signal ("SIGTTIN", SIGTTIN
);
3974 handle_signal ("SIGTTOU", SIGTTOU
);
3977 handle_signal ("SIGIO", SIGIO
);
3980 handle_signal ("SIGXCPU", SIGXCPU
);
3983 handle_signal ("SIGXFSZ", SIGXFSZ
);
3986 handle_signal ("SIGVTALRM", SIGVTALRM
);
3989 handle_signal ("SIGPROF", SIGPROF
);
3992 handle_signal ("SIGWINCH", SIGWINCH
);
3995 handle_signal ("SIGINFO", SIGINFO
);
3998 handle_signal ("SIGUSR1", SIGUSR1
);
4001 handle_signal ("SIGUSR2", SIGUSR2
);
4004 error ("Undefined signal name %s", name
);
4007 #undef handle_signal
4009 return make_number (kill (XINT (pid
), XINT (sigcode
)));
4012 DEFUN ("process-send-eof", Fprocess_send_eof
, Sprocess_send_eof
, 0, 1, 0,
4013 "Make PROCESS see end-of-file in its input.\n\
4014 EOF comes after any text already sent to it.\n\
4015 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
4016 nil, indicating the current buffer's process.\n\
4017 If PROCESS is a network connection, or is a process communicating\n\
4018 through a pipe (as opposed to a pty), then you cannot send any more\n\
4019 text to PROCESS after you call this function.")
4021 Lisp_Object process
;
4024 struct coding_system
*coding
;
4026 proc
= get_process (process
);
4027 coding
= proc_encode_coding_system
[XINT (XPROCESS (proc
)->outfd
)];
4029 /* Make sure the process is really alive. */
4030 if (! NILP (XPROCESS (proc
)->raw_status_low
))
4031 update_status (XPROCESS (proc
));
4032 if (! EQ (XPROCESS (proc
)->status
, Qrun
))
4033 error ("Process %s not running", XSTRING (XPROCESS (proc
)->name
)->data
);
4035 if (CODING_REQUIRE_FLUSHING (coding
))
4037 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
4038 send_process (proc
, "", 0, Qnil
);
4042 send_process (proc
, "\032", 1, Qnil
); /* ^z */
4044 if (!NILP (XPROCESS (proc
)->pty_flag
))
4045 send_process (proc
, "\004", 1, Qnil
);
4048 int old_outfd
, new_outfd
;
4050 #ifdef HAVE_SHUTDOWN
4051 /* If this is a network connection, or socketpair is used
4052 for communication with the subprocess, call shutdown to cause EOF.
4053 (In some old system, shutdown to socketpair doesn't work.
4054 Then we just can't win.) */
4055 if (NILP (XPROCESS (proc
)->pid
)
4056 || XINT (XPROCESS (proc
)->outfd
) == XINT (XPROCESS (proc
)->infd
))
4057 shutdown (XINT (XPROCESS (proc
)->outfd
), 1);
4058 /* In case of socketpair, outfd == infd, so don't close it. */
4059 if (XINT (XPROCESS (proc
)->outfd
) != XINT (XPROCESS (proc
)->infd
))
4060 emacs_close (XINT (XPROCESS (proc
)->outfd
));
4061 #else /* not HAVE_SHUTDOWN */
4062 emacs_close (XINT (XPROCESS (proc
)->outfd
));
4063 #endif /* not HAVE_SHUTDOWN */
4064 new_outfd
= emacs_open (NULL_DEVICE
, O_WRONLY
, 0);
4065 old_outfd
= XINT (XPROCESS (proc
)->outfd
);
4067 if (!proc_encode_coding_system
[new_outfd
])
4068 proc_encode_coding_system
[new_outfd
]
4069 = (struct coding_system
*) xmalloc (sizeof (struct coding_system
));
4070 bcopy (proc_encode_coding_system
[old_outfd
],
4071 proc_encode_coding_system
[new_outfd
],
4072 sizeof (struct coding_system
));
4073 bzero (proc_encode_coding_system
[old_outfd
],
4074 sizeof (struct coding_system
));
4076 XSETINT (XPROCESS (proc
)->outfd
, new_outfd
);
4082 /* Kill all processes associated with `buffer'.
4083 If `buffer' is nil, kill all processes */
4086 kill_buffer_processes (buffer
)
4089 Lisp_Object tail
, proc
;
4091 for (tail
= Vprocess_alist
; GC_CONSP (tail
); tail
= XCDR (tail
))
4093 proc
= XCDR (XCAR (tail
));
4094 if (GC_PROCESSP (proc
)
4095 && (NILP (buffer
) || EQ (XPROCESS (proc
)->buffer
, buffer
)))
4097 if (NETCONN_P (proc
))
4098 Fdelete_process (proc
);
4099 else if (XINT (XPROCESS (proc
)->infd
) >= 0)
4100 process_send_signal (proc
, SIGHUP
, Qnil
, 1);
4105 /* On receipt of a signal that a child status has changed,
4106 loop asking about children with changed statuses until
4107 the system says there are no more.
4108 All we do is change the status;
4109 we do not run sentinels or print notifications.
4110 That is saved for the next time keyboard input is done,
4111 in order to avoid timing errors. */
4113 /** WARNING: this can be called during garbage collection.
4114 Therefore, it must not be fooled by the presence of mark bits in
4117 /** USG WARNING: Although it is not obvious from the documentation
4118 in signal(2), on a USG system the SIGCLD handler MUST NOT call
4119 signal() before executing at least one wait(), otherwise the handler
4120 will be called again, resulting in an infinite loop. The relevant
4121 portion of the documentation reads "SIGCLD signals will be queued
4122 and the signal-catching function will be continually reentered until
4123 the queue is empty". Invoking signal() causes the kernel to reexamine
4124 the SIGCLD queue. Fred Fish, UniSoft Systems Inc. */
4127 sigchld_handler (signo
)
4130 int old_errno
= errno
;
4132 register struct Lisp_Process
*p
;
4133 extern EMACS_TIME
*input_available_clear_time
;
4137 sigheld
|= sigbit (SIGCHLD
);
4149 #endif /* no WUNTRACED */
4150 /* Keep trying to get a status until we get a definitive result. */
4154 pid
= wait3 (&w
, WNOHANG
| WUNTRACED
, 0);
4156 while (pid
<= 0 && errno
== EINTR
);
4160 /* A real failure. We have done all our job, so return. */
4162 /* USG systems forget handlers when they are used;
4163 must reestablish each time */
4164 #if defined (USG) && !defined (POSIX_SIGNALS)
4165 signal (signo
, sigchld_handler
); /* WARNING - must come after wait3() */
4168 sigheld
&= ~sigbit (SIGCHLD
);
4176 #endif /* no WNOHANG */
4178 /* Find the process that signaled us, and record its status. */
4181 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
4183 proc
= XCDR (XCAR (tail
));
4184 p
= XPROCESS (proc
);
4185 if (EQ (p
->childp
, Qt
) && XFASTINT (p
->pid
) == pid
)
4190 /* Look for an asynchronous process whose pid hasn't been filled
4193 for (tail
= Vprocess_alist
; CONSP (tail
); tail
= XCDR (tail
))
4195 proc
= XCDR (XCAR (tail
));
4196 p
= XPROCESS (proc
);
4197 if (INTEGERP (p
->pid
) && XINT (p
->pid
) == -1)
4202 /* Change the status of the process that was found. */
4205 union { int i
; WAITTYPE wt
; } u
;
4206 int clear_desc_flag
= 0;
4208 XSETINT (p
->tick
, ++process_tick
);
4210 XSETINT (p
->raw_status_low
, u
.i
& 0xffff);
4211 XSETINT (p
->raw_status_high
, u
.i
>> 16);
4213 /* If process has terminated, stop waiting for its output. */
4214 if ((WIFSIGNALED (w
) || WIFEXITED (w
))
4215 && XINT (p
->infd
) >= 0)
4216 clear_desc_flag
= 1;
4218 /* We use clear_desc_flag to avoid a compiler bug in Microsoft C. */
4219 if (clear_desc_flag
)
4221 FD_CLR (XINT (p
->infd
), &input_wait_mask
);
4222 FD_CLR (XINT (p
->infd
), &non_keyboard_wait_mask
);
4225 /* Tell wait_reading_process_input that it needs to wake up and
4227 if (input_available_clear_time
)
4228 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
4231 /* There was no asynchronous process found for that id. Check
4232 if we have a synchronous process. */
4235 synch_process_alive
= 0;
4237 /* Report the status of the synchronous process. */
4239 synch_process_retcode
= WRETCODE (w
);
4240 else if (WIFSIGNALED (w
))
4242 int code
= WTERMSIG (w
);
4245 synchronize_system_messages_locale ();
4246 signame
= strsignal (code
);
4249 signame
= "unknown";
4251 synch_process_death
= signame
;
4254 /* Tell wait_reading_process_input that it needs to wake up and
4256 if (input_available_clear_time
)
4257 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
4260 /* On some systems, we must return right away.
4261 If any more processes want to signal us, we will
4263 Otherwise (on systems that have WNOHANG), loop around
4264 to use up all the processes that have something to tell us. */
4265 #if defined (USG) && ! (defined (HPUX) && defined (WNOHANG)) || defined (WINDOWSNT)
4266 #if defined (USG) && ! defined (POSIX_SIGNALS)
4267 signal (signo
, sigchld_handler
);
4271 #endif /* USG, but not HPUX with WNOHANG */
4277 exec_sentinel_unwind (data
)
4280 XPROCESS (XCAR (data
))->sentinel
= XCDR (data
);
4285 exec_sentinel_error_handler (error
)
4288 cmd_error_internal (error
, "error in process sentinel: ");
4290 update_echo_area ();
4291 Fsleep_for (make_number (2), Qnil
);
4296 exec_sentinel (proc
, reason
)
4297 Lisp_Object proc
, reason
;
4299 Lisp_Object sentinel
, obuffer
, odeactivate
, okeymap
;
4300 register struct Lisp_Process
*p
= XPROCESS (proc
);
4301 int count
= specpdl_ptr
- specpdl
;
4302 int outer_running_asynch_code
= running_asynch_code
;
4303 int waiting
= waiting_for_user_input_p
;
4305 /* No need to gcpro these, because all we do with them later
4306 is test them for EQness, and none of them should be a string. */
4307 odeactivate
= Vdeactivate_mark
;
4308 XSETBUFFER (obuffer
, current_buffer
);
4309 okeymap
= current_buffer
->keymap
;
4311 sentinel
= p
->sentinel
;
4312 if (NILP (sentinel
))
4315 /* Zilch the sentinel while it's running, to avoid recursive invocations;
4316 assure that it gets restored no matter how the sentinel exits. */
4318 record_unwind_protect (exec_sentinel_unwind
, Fcons (proc
, sentinel
));
4319 /* Inhibit quit so that random quits don't screw up a running filter. */
4320 specbind (Qinhibit_quit
, Qt
);
4321 specbind (Qlast_nonmenu_event
, Qt
);
4323 /* In case we get recursively called,
4324 and we already saved the match data nonrecursively,
4325 save the same match data in safely recursive fashion. */
4326 if (outer_running_asynch_code
)
4329 tem
= Fmatch_data (Qnil
, Qnil
);
4330 restore_match_data ();
4331 record_unwind_protect (Fset_match_data
, Fmatch_data (Qnil
, Qnil
));
4332 Fset_match_data (tem
);
4335 /* For speed, if a search happens within this code,
4336 save the match data in a special nonrecursive fashion. */
4337 running_asynch_code
= 1;
4339 internal_condition_case_1 (read_process_output_call
,
4341 Fcons (proc
, Fcons (reason
, Qnil
))),
4342 !NILP (Vdebug_on_error
) ? Qnil
: Qerror
,
4343 exec_sentinel_error_handler
);
4345 /* If we saved the match data nonrecursively, restore it now. */
4346 restore_match_data ();
4347 running_asynch_code
= outer_running_asynch_code
;
4349 Vdeactivate_mark
= odeactivate
;
4351 /* Restore waiting_for_user_input_p as it was
4352 when we were called, in case the filter clobbered it. */
4353 waiting_for_user_input_p
= waiting
;
4356 if (! EQ (Fcurrent_buffer (), obuffer
)
4357 || ! EQ (current_buffer
->keymap
, okeymap
))
4359 /* But do it only if the caller is actually going to read events.
4360 Otherwise there's no need to make him wake up, and it could
4361 cause trouble (for example it would make Fsit_for return). */
4362 if (waiting_for_user_input_p
== -1)
4363 record_asynch_buffer_change ();
4365 unbind_to (count
, Qnil
);
4368 /* Report all recent events of a change in process status
4369 (either run the sentinel or output a message).
4370 This is done while Emacs is waiting for keyboard input. */
4375 register Lisp_Object proc
, buffer
;
4376 Lisp_Object tail
, msg
;
4377 struct gcpro gcpro1
, gcpro2
;
4381 /* We need to gcpro tail; if read_process_output calls a filter
4382 which deletes a process and removes the cons to which tail points
4383 from Vprocess_alist, and then causes a GC, tail is an unprotected
4387 /* Set this now, so that if new processes are created by sentinels
4388 that we run, we get called again to handle their status changes. */
4389 update_tick
= process_tick
;
4391 for (tail
= Vprocess_alist
; !NILP (tail
); tail
= Fcdr (tail
))
4394 register struct Lisp_Process
*p
;
4396 proc
= Fcdr (Fcar (tail
));
4397 p
= XPROCESS (proc
);
4399 if (XINT (p
->tick
) != XINT (p
->update_tick
))
4401 XSETINT (p
->update_tick
, XINT (p
->tick
));
4403 /* If process is still active, read any output that remains. */
4404 while (! EQ (p
->filter
, Qt
)
4405 && XINT (p
->infd
) >= 0
4406 && read_process_output (proc
, XINT (p
->infd
)) > 0);
4410 /* Get the text to use for the message. */
4411 if (!NILP (p
->raw_status_low
))
4413 msg
= status_message (p
->status
);
4415 /* If process is terminated, deactivate it or delete it. */
4417 if (CONSP (p
->status
))
4418 symbol
= XCAR (p
->status
);
4420 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qexit
)
4421 || EQ (symbol
, Qclosed
))
4423 if (delete_exited_processes
)
4424 remove_process (proc
);
4426 deactivate_process (proc
);
4429 /* The actions above may have further incremented p->tick.
4430 So set p->update_tick again
4431 so that an error in the sentinel will not cause
4432 this code to be run again. */
4433 XSETINT (p
->update_tick
, XINT (p
->tick
));
4434 /* Now output the message suitably. */
4435 if (!NILP (p
->sentinel
))
4436 exec_sentinel (proc
, msg
);
4437 /* Don't bother with a message in the buffer
4438 when a process becomes runnable. */
4439 else if (!EQ (symbol
, Qrun
) && !NILP (buffer
))
4441 Lisp_Object ro
, tem
;
4442 struct buffer
*old
= current_buffer
;
4443 int opoint
, opoint_byte
;
4444 int before
, before_byte
;
4446 ro
= XBUFFER (buffer
)->read_only
;
4448 /* Avoid error if buffer is deleted
4449 (probably that's why the process is dead, too) */
4450 if (NILP (XBUFFER (buffer
)->name
))
4452 Fset_buffer (buffer
);
4455 opoint_byte
= PT_BYTE
;
4456 /* Insert new output into buffer
4457 at the current end-of-output marker,
4458 thus preserving logical ordering of input and output. */
4459 if (XMARKER (p
->mark
)->buffer
)
4460 Fgoto_char (p
->mark
);
4462 SET_PT_BOTH (ZV
, ZV_BYTE
);
4465 before_byte
= PT_BYTE
;
4467 tem
= current_buffer
->read_only
;
4468 current_buffer
->read_only
= Qnil
;
4469 insert_string ("\nProcess ");
4470 Finsert (1, &p
->name
);
4471 insert_string (" ");
4473 current_buffer
->read_only
= tem
;
4474 set_marker_both (p
->mark
, p
->buffer
, PT
, PT_BYTE
);
4476 if (opoint
>= before
)
4477 SET_PT_BOTH (opoint
+ (PT
- before
),
4478 opoint_byte
+ (PT_BYTE
- before_byte
));
4480 SET_PT_BOTH (opoint
, opoint_byte
);
4482 set_buffer_internal (old
);
4487 update_mode_lines
++; /* in case buffers use %s in mode-line-format */
4488 redisplay_preserve_echo_area ();
4494 DEFUN ("set-process-coding-system", Fset_process_coding_system
,
4495 Sset_process_coding_system
, 1, 3, 0,
4496 "Set coding systems of PROCESS to DECODING and ENCODING.\n\
4497 DECODING will be used to decode subprocess output and ENCODING to\n\
4498 encode subprocess input.")
4499 (proc
, decoding
, encoding
)
4500 register Lisp_Object proc
, decoding
, encoding
;
4502 register struct Lisp_Process
*p
;
4504 CHECK_PROCESS (proc
, 0);
4505 p
= XPROCESS (proc
);
4506 if (XINT (p
->infd
) < 0)
4507 error ("Input file descriptor of %s closed", XSTRING (p
->name
)->data
);
4508 if (XINT (p
->outfd
) < 0)
4509 error ("Output file descriptor of %s closed", XSTRING (p
->name
)->data
);
4511 p
->decode_coding_system
= Fcheck_coding_system (decoding
);
4512 p
->encode_coding_system
= Fcheck_coding_system (encoding
);
4513 setup_coding_system (decoding
,
4514 proc_decode_coding_system
[XINT (p
->infd
)]);
4515 setup_coding_system (encoding
,
4516 proc_encode_coding_system
[XINT (p
->outfd
)]);
4521 DEFUN ("process-coding-system",
4522 Fprocess_coding_system
, Sprocess_coding_system
, 1, 1, 0,
4523 "Return a cons of coding systems for decoding and encoding of PROCESS.")
4525 register Lisp_Object proc
;
4527 CHECK_PROCESS (proc
, 0);
4528 return Fcons (XPROCESS (proc
)->decode_coding_system
,
4529 XPROCESS (proc
)->encode_coding_system
);
4532 /* The first time this is called, assume keyboard input comes from DESC
4533 instead of from where we used to expect it.
4534 Subsequent calls mean assume input keyboard can come from DESC
4535 in addition to other places. */
4537 static int add_keyboard_wait_descriptor_called_flag
;
4540 add_keyboard_wait_descriptor (desc
)
4543 if (! add_keyboard_wait_descriptor_called_flag
)
4544 FD_CLR (0, &input_wait_mask
);
4545 add_keyboard_wait_descriptor_called_flag
= 1;
4546 FD_SET (desc
, &input_wait_mask
);
4547 FD_SET (desc
, &non_process_wait_mask
);
4548 if (desc
> max_keyboard_desc
)
4549 max_keyboard_desc
= desc
;
4552 /* From now on, do not expect DESC to give keyboard input. */
4555 delete_keyboard_wait_descriptor (desc
)
4559 int lim
= max_keyboard_desc
;
4561 FD_CLR (desc
, &input_wait_mask
);
4562 FD_CLR (desc
, &non_process_wait_mask
);
4564 if (desc
== max_keyboard_desc
)
4565 for (fd
= 0; fd
< lim
; fd
++)
4566 if (FD_ISSET (fd
, &input_wait_mask
)
4567 && !FD_ISSET (fd
, &non_keyboard_wait_mask
))
4568 max_keyboard_desc
= fd
;
4571 /* Return nonzero if *MASK has a bit set
4572 that corresponds to one of the keyboard input descriptors. */
4575 keyboard_bit_set (mask
)
4580 for (fd
= 0; fd
<= max_keyboard_desc
; fd
++)
4581 if (FD_ISSET (fd
, mask
) && FD_ISSET (fd
, &input_wait_mask
)
4582 && !FD_ISSET (fd
, &non_keyboard_wait_mask
))
4595 if (! noninteractive
|| initialized
)
4597 signal (SIGCHLD
, sigchld_handler
);
4600 FD_ZERO (&input_wait_mask
);
4601 FD_ZERO (&non_keyboard_wait_mask
);
4602 FD_ZERO (&non_process_wait_mask
);
4603 max_process_desc
= 0;
4605 FD_SET (0, &input_wait_mask
);
4607 Vprocess_alist
= Qnil
;
4608 for (i
= 0; i
< MAXDESC
; i
++)
4610 chan_process
[i
] = Qnil
;
4611 proc_buffered_char
[i
] = -1;
4613 bzero (proc_decode_coding_system
, sizeof proc_decode_coding_system
);
4614 bzero (proc_encode_coding_system
, sizeof proc_encode_coding_system
);
4616 Vdefault_process_coding_system
4617 = (NILP (buffer_defaults
.enable_multibyte_characters
)
4618 ? Fcons (Qraw_text
, Qnil
)
4619 : Fcons (Qemacs_mule
, Qnil
));
4625 Qprocessp
= intern ("processp");
4626 staticpro (&Qprocessp
);
4627 Qrun
= intern ("run");
4629 Qstop
= intern ("stop");
4631 Qsignal
= intern ("signal");
4632 staticpro (&Qsignal
);
4634 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
4637 Qexit = intern ("exit");
4638 staticpro (&Qexit); */
4640 Qopen
= intern ("open");
4642 Qclosed
= intern ("closed");
4643 staticpro (&Qclosed
);
4645 Qlast_nonmenu_event
= intern ("last-nonmenu-event");
4646 staticpro (&Qlast_nonmenu_event
);
4648 staticpro (&Vprocess_alist
);
4650 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes
,
4651 "*Non-nil means delete processes immediately when they exit.\n\
4652 nil means don't delete them until `list-processes' is run.");
4654 delete_exited_processes
= 1;
4656 DEFVAR_LISP ("process-connection-type", &Vprocess_connection_type
,
4657 "Control type of device used to communicate with subprocesses.\n\
4658 Values are nil to use a pipe, or t or `pty' to use a pty.\n\
4659 The value has no effect if the system has no ptys or if all ptys are busy:\n\
4660 then a pipe is used in any case.\n\
4661 The value takes effect when `start-process' is called.");
4662 Vprocess_connection_type
= Qt
;
4664 defsubr (&Sprocessp
);
4665 defsubr (&Sget_process
);
4666 defsubr (&Sget_buffer_process
);
4667 defsubr (&Sdelete_process
);
4668 defsubr (&Sprocess_status
);
4669 defsubr (&Sprocess_exit_status
);
4670 defsubr (&Sprocess_id
);
4671 defsubr (&Sprocess_name
);
4672 defsubr (&Sprocess_tty_name
);
4673 defsubr (&Sprocess_command
);
4674 defsubr (&Sset_process_buffer
);
4675 defsubr (&Sprocess_buffer
);
4676 defsubr (&Sprocess_mark
);
4677 defsubr (&Sset_process_filter
);
4678 defsubr (&Sprocess_filter
);
4679 defsubr (&Sset_process_sentinel
);
4680 defsubr (&Sprocess_sentinel
);
4681 defsubr (&Sset_process_window_size
);
4682 defsubr (&Sset_process_inherit_coding_system_flag
);
4683 defsubr (&Sprocess_inherit_coding_system_flag
);
4684 defsubr (&Sprocess_kill_without_query
);
4685 defsubr (&Sprocess_contact
);
4686 defsubr (&Slist_processes
);
4687 defsubr (&Sprocess_list
);
4688 defsubr (&Sstart_process
);
4690 defsubr (&Sopen_network_stream
);
4691 #endif /* HAVE_SOCKETS */
4692 defsubr (&Saccept_process_output
);
4693 defsubr (&Sprocess_send_region
);
4694 defsubr (&Sprocess_send_string
);
4695 defsubr (&Sinterrupt_process
);
4696 defsubr (&Skill_process
);
4697 defsubr (&Squit_process
);
4698 defsubr (&Sstop_process
);
4699 defsubr (&Scontinue_process
);
4700 defsubr (&Sprocess_running_child_p
);
4701 defsubr (&Sprocess_send_eof
);
4702 defsubr (&Ssignal_process
);
4703 defsubr (&Swaiting_for_user_input_p
);
4704 /* defsubr (&Sprocess_connection); */
4705 defsubr (&Sset_process_coding_system
);
4706 defsubr (&Sprocess_coding_system
);
4710 #else /* not subprocesses */
4712 #include <sys/types.h>
4716 #include "systime.h"
4717 #include "charset.h"
4719 #include "termopts.h"
4720 #include "sysselect.h"
4722 extern int frame_garbaged
;
4724 extern EMACS_TIME
timer_check ();
4725 extern int timers_run
;
4727 /* As described above, except assuming that there are no subprocesses:
4729 Wait for timeout to elapse and/or keyboard input to be available.
4732 timeout in seconds, or
4733 zero for no limit, or
4734 -1 means gobble data immediately available but don't wait for any.
4736 read_kbd is a Lisp_Object:
4737 0 to ignore keyboard input, or
4738 1 to return when input is available, or
4739 -1 means caller will actually read the input, so don't throw to
4741 a cons cell, meaning wait until its car is non-nil
4742 (and gobble terminal input into the buffer if any arrives), or
4743 We know that read_kbd will never be a Lisp_Process, since
4744 `subprocesses' isn't defined.
4746 do_display != 0 means redisplay should be done to show subprocess
4747 output that arrives.
4749 Return true iff we received input from any process. */
4752 wait_reading_process_input (time_limit
, microsecs
, read_kbd
, do_display
)
4753 int time_limit
, microsecs
;
4754 Lisp_Object read_kbd
;
4758 EMACS_TIME end_time
, timeout
;
4759 SELECT_TYPE waitchannels
;
4761 Lisp_Object
*wait_for_cell
= 0;
4763 /* If waiting for non-nil in a cell, record where. */
4764 if (CONSP (read_kbd
))
4766 wait_for_cell
= &XCAR (read_kbd
);
4767 XSETFASTINT (read_kbd
, 0);
4770 /* What does time_limit really mean? */
4771 if (time_limit
|| microsecs
)
4773 EMACS_GET_TIME (end_time
);
4774 EMACS_SET_SECS_USECS (timeout
, time_limit
, microsecs
);
4775 EMACS_ADD_TIME (end_time
, end_time
, timeout
);
4778 /* Turn off periodic alarms (in case they are in use)
4779 because the select emulator uses alarms. */
4780 turn_on_atimers (0);
4784 int timeout_reduced_for_timers
= 0;
4786 /* If calling from keyboard input, do not quit
4787 since we want to return C-g as an input character.
4788 Otherwise, do pending quit if requested. */
4789 if (XINT (read_kbd
) >= 0)
4792 /* Exit now if the cell we're waiting for became non-nil. */
4793 if (wait_for_cell
&& ! NILP (*wait_for_cell
))
4796 /* Compute time from now till when time limit is up */
4797 /* Exit if already run out */
4798 if (time_limit
== -1)
4800 /* -1 specified for timeout means
4801 gobble output available now
4802 but don't wait at all. */
4804 EMACS_SET_SECS_USECS (timeout
, 0, 0);
4806 else if (time_limit
|| microsecs
)
4808 EMACS_GET_TIME (timeout
);
4809 EMACS_SUB_TIME (timeout
, end_time
, timeout
);
4810 if (EMACS_TIME_NEG_P (timeout
))
4815 EMACS_SET_SECS_USECS (timeout
, 100000, 0);
4818 /* If our caller will not immediately handle keyboard events,
4819 run timer events directly.
4820 (Callers that will immediately read keyboard events
4821 call timer_delay on their own.) */
4822 if (! wait_for_cell
)
4824 EMACS_TIME timer_delay
;
4828 old_timers_run
= timers_run
;
4829 timer_delay
= timer_check (1);
4830 if (timers_run
!= old_timers_run
&& do_display
)
4832 redisplay_preserve_echo_area ();
4833 /* We must retry, since a timer may have requeued itself
4834 and that could alter the time delay. */
4838 /* If there is unread keyboard input, also return. */
4839 if (XINT (read_kbd
) != 0
4840 && requeued_events_pending_p ())
4843 if (! EMACS_TIME_NEG_P (timer_delay
) && time_limit
!= -1)
4845 EMACS_TIME difference
;
4846 EMACS_SUB_TIME (difference
, timer_delay
, timeout
);
4847 if (EMACS_TIME_NEG_P (difference
))
4849 timeout
= timer_delay
;
4850 timeout_reduced_for_timers
= 1;
4855 /* Cause C-g and alarm signals to take immediate action,
4856 and cause input available signals to zero out timeout. */
4857 if (XINT (read_kbd
) < 0)
4858 set_waiting_for_input (&timeout
);
4860 /* Wait till there is something to do. */
4862 if (! XINT (read_kbd
) && wait_for_cell
== 0)
4863 FD_ZERO (&waitchannels
);
4865 FD_SET (0, &waitchannels
);
4867 /* If a frame has been newly mapped and needs updating,
4868 reprocess its display stuff. */
4869 if (frame_garbaged
&& do_display
)
4871 clear_waiting_for_input ();
4872 redisplay_preserve_echo_area ();
4873 if (XINT (read_kbd
) < 0)
4874 set_waiting_for_input (&timeout
);
4877 if (XINT (read_kbd
) && detect_input_pending ())
4880 FD_ZERO (&waitchannels
);
4883 nfds
= select (1, &waitchannels
, (SELECT_TYPE
*)0, (SELECT_TYPE
*)0,
4888 /* Make C-g and alarm signals set flags again */
4889 clear_waiting_for_input ();
4891 /* If we woke up due to SIGWINCH, actually change size now. */
4892 do_pending_window_change (0);
4894 if (time_limit
&& nfds
== 0 && ! timeout_reduced_for_timers
)
4895 /* We waited the full specified time, so return now. */
4900 /* If the system call was interrupted, then go around the
4902 if (xerrno
== EINTR
)
4903 FD_ZERO (&waitchannels
);
4905 error ("select error: %s", emacs_strerror (xerrno
));
4908 else if (nfds
> 0 && (waitchannels
& 1) && interrupt_input
)
4909 /* System sometimes fails to deliver SIGIO. */
4910 kill (getpid (), SIGIO
);
4913 if (XINT (read_kbd
) && interrupt_input
&& (waitchannels
& 1))
4914 kill (getpid (), SIGIO
);
4917 /* Check for keyboard input */
4919 if ((XINT (read_kbd
) != 0)
4920 && detect_input_pending_run_timers (do_display
))
4922 swallow_events (do_display
);
4923 if (detect_input_pending_run_timers (do_display
))
4927 /* If there is unread keyboard input, also return. */
4928 if (XINT (read_kbd
) != 0
4929 && requeued_events_pending_p ())
4932 /* If wait_for_cell. check for keyboard input
4933 but don't run any timers.
4934 ??? (It seems wrong to me to check for keyboard
4935 input at all when wait_for_cell, but the code
4936 has been this way since July 1994.
4937 Try changing this after version 19.31.) */
4939 && detect_input_pending ())
4941 swallow_events (do_display
);
4942 if (detect_input_pending ())
4946 /* Exit now if the cell we're waiting for became non-nil. */
4947 if (wait_for_cell
&& ! NILP (*wait_for_cell
))
4957 DEFUN ("get-buffer-process", Fget_buffer_process
, Sget_buffer_process
, 1, 1, 0,
4958 /* Don't confuse make-docfile by having two doc strings for this function.
4959 make-docfile does not pay attention to #if, for good reason! */
4962 register Lisp_Object name
;
4967 DEFUN ("process-inherit-coding-system-flag",
4968 Fprocess_inherit_coding_system_flag
, Sprocess_inherit_coding_system_flag
,
4970 /* Don't confuse make-docfile by having two doc strings for this function.
4971 make-docfile does not pay attention to #if, for good reason! */
4974 register Lisp_Object process
;
4976 /* Ignore the argument and return the value of
4977 inherit-process-coding-system. */
4978 return inherit_process_coding_system
? Qt
: Qnil
;
4981 /* Kill all processes associated with `buffer'.
4982 If `buffer' is nil, kill all processes.
4983 Since we have no subprocesses, this does nothing. */
4986 kill_buffer_processes (buffer
)
4999 defsubr (&Sget_buffer_process
);
5000 defsubr (&Sprocess_inherit_coding_system_flag
);
5004 #endif /* not subprocesses */