1 /* Asynchronous subprocess control for GNU Emacs.
2 Copyright (C) 1985, 1986, 1987, 1988, 1992, 1993 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
25 /* This file is split into two parts by the following preprocessor
26 conditional. The 'then' clause contains all of the support for
27 asynchronous subprocesses. The 'else' clause contains stub
28 versions of some of the asynchronous subprocess routines that are
29 often called elsewhere in Emacs, so we don't have to #ifdef the
30 sections that call them. */
38 #include <sys/types.h> /* some typedefs are used in sys/file.h */
42 #ifdef HAVE_SOCKETS /* TCP connection support, if kernel can do it */
43 #include <sys/socket.h>
45 #include <netinet/in.h>
46 #include <arpa/inet.h>
47 #endif /* HAVE_SOCKETS */
49 #if defined(BSD) || defined(STRIDE)
50 #include <sys/ioctl.h>
51 #if !defined (O_NDELAY) && defined (HAVE_PTYS) && !defined(USG5)
53 #endif /* HAVE_PTYS and no O_NDELAY */
54 #endif /* BSD or STRIDE */
61 #include <sys/sysmacros.h> /* for "minor" */
71 #include "termhooks.h"
76 Lisp_Object Qrun
, Qstop
, Qsignal
, Qopen
, Qclosed
;
77 /* Qexit is declared and initialized in eval.c. */
79 /* a process object is a network connection when its childp field is neither
80 Qt nor Qnil but is instead a string (name of foreign host we
81 are connected to + name of port we are connected to) */
84 static Lisp_Object stream_process
;
86 #define NETCONN_P(p) (XGCTYPE (XPROCESS (p)->childp) == Lisp_String)
88 #define NETCONN_P(p) 0
89 #endif /* HAVE_SOCKETS */
91 /* Define first descriptor number available for subprocesses. */
93 #define FIRST_PROC_DESC 1
95 #define FIRST_PROC_DESC 3
98 /* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
101 #if !defined (SIGCHLD) && defined (SIGCLD)
102 #define SIGCHLD SIGCLD
105 #include "syssignal.h"
107 /* Define the structure that the wait system call stores.
108 On many systems, there is a structure defined for this.
109 But on vanilla-ish USG systems there is not. */
113 #if !defined (BSD) && !defined (UNIPLUS) && !defined (STRIDE) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER)
115 #define WIFSTOPPED(w) ((w&0377) == 0177)
116 #define WIFSIGNALED(w) ((w&0377) != 0177 && (w&~0377) == 0)
117 #define WIFEXITED(w) ((w&0377) == 0)
118 #define WRETCODE(w) (w >> 8)
119 #define WSTOPSIG(w) (w >> 8)
120 #define WTERMSIG(w) (w & 0377)
122 #define WCOREDUMP(w) ((w&0200) != 0)
128 #include <sys/wait.h>
129 #endif /* not BSD 4.1 */
131 #define WAITTYPE union wait
132 #define WRETCODE(w) w.w_retcode
133 #define WCOREDUMP(w) w.w_coredump
136 /* HPUX version 7 has broken definitions of these. */
145 #define WTERMSIG(w) w.w_termsig
148 #define WSTOPSIG(w) w.w_stopsig
151 #define WIFSTOPPED(w) (WTERMSIG (w) == 0177)
154 #define WIFSIGNALED(w) (WTERMSIG (w) != 0177 && (WSTOPSIG (w)) == 0)
157 #define WIFEXITED(w) (WTERMSIG (w) == 0)
159 #endif /* BSD or UNIPLUS or STRIDE */
160 #endif /* no WAITTYPE */
163 #define WIFSTOPPED(w) 0
164 #define WIFSIGNALED(w) 0
165 #define WIFEXITED(w) ((w) != -1)
166 #define WRETCODE(w) (w)
167 #define WSTOPSIG(w) (w)
168 #define WCOREDUMP(w) 0
169 #define WTERMSIG(w) (w)
178 extern char *sys_errlist
[];
182 extern char *sys_siglist
[];
184 char *sys_siglist
[] =
190 "illegal instruction",
194 "floating point exception",
197 "segmentation violation",
198 "bad argument to system call",
199 "write on a pipe with no one to read it",
201 "software termination signal from kill",
203 "sendable stop signal not from tty",
204 "stop signal from tty",
205 "continue a stopped process",
206 "child status has changed",
207 "background read attempted from control tty",
208 "background write attempted from control tty",
209 "input record available at control tty",
210 "exceeded CPU time limit",
211 "exceeded file size limit"
216 /* t means use pty, nil means use a pipe,
217 maybe other values to come. */
218 Lisp_Object Vprocess_connection_type
;
222 #include <sys/socket.h>
226 /* Number of events of change of status of a process. */
229 /* Number of events for which the user or sentinel has been notified. */
233 /* We could get this from param.h, but better not to depend on finding that.
234 And better not to risk that it might define other symbols used in this
237 #define SELECT_TYPE fd_set
238 #else /* no FD_SET */
240 #define SELECT_TYPE int
242 /* Define the macros to access a single-int bitmap of descriptors. */
243 #define FD_SET(n, p) (*(p) |= (1 << (n)))
244 #define FD_CLR(n, p) (*(p) &= ~(1 << (n)))
245 #define FD_ISSET(n, p) (*(p) & (1 << (n)))
246 #define FD_ZERO(p) (*(p) = 0)
247 #endif /* no FD_SET */
249 /* Mask of bits indicating the descriptors that we wait for input on */
251 SELECT_TYPE input_wait_mask
;
253 int delete_exited_processes
;
255 /* Indexed by descriptor, gives the process (if any) for that descriptor */
256 Lisp_Object chan_process
[MAXDESC
];
258 /* Alist of elements (NAME . PROCESS) */
259 Lisp_Object Vprocess_alist
;
261 Lisp_Object Qprocessp
;
263 Lisp_Object
get_process ();
265 /* Buffered-ahead input char from process, indexed by channel.
266 -1 means empty (no char is buffered).
267 Used on sys V where the only way to tell if there is any
268 output from the process is to read at least one char.
269 Always -1 on systems that support FIONREAD. */
271 int proc_buffered_char
[MAXDESC
];
273 /* Compute the Lisp form of the process status, p->status, from
274 the numeric status that was returned by `wait'. */
276 Lisp_Object
status_convert ();
279 struct Lisp_Process
*p
;
281 union { int i
; WAITTYPE wt
; } u
;
282 u
.i
= XFASTINT (p
->raw_status_low
) + (XFASTINT (p
->raw_status_high
) << 16);
283 p
->status
= status_convert (u
.wt
);
284 p
->raw_status_low
= Qnil
;
285 p
->raw_status_high
= Qnil
;
288 /* Convert a process status work in Unix format to
289 the list that we use internally. */
296 return Fcons (Qstop
, Fcons (make_number (WSTOPSIG (w
)), Qnil
));
297 else if (WIFEXITED (w
))
298 return Fcons (Qexit
, Fcons (make_number (WRETCODE (w
)),
299 WCOREDUMP (w
) ? Qt
: Qnil
));
300 else if (WIFSIGNALED (w
))
301 return Fcons (Qsignal
, Fcons (make_number (WTERMSIG (w
)),
302 WCOREDUMP (w
) ? Qt
: Qnil
));
307 /* Given a status-list, extract the three pieces of information
308 and store them individually through the three pointers. */
311 decode_status (l
, symbol
, code
, coredump
)
319 if (XTYPE (l
) == Lisp_Symbol
)
327 *symbol
= XCONS (l
)->car
;
328 tem
= XCONS (l
)->cdr
;
329 *code
= XFASTINT (XCONS (tem
)->car
);
330 tem
= XCONS (tem
)->cdr
;
331 *coredump
= !NILP (tem
);
335 /* Return a string describing a process status list. */
338 status_message (status
)
343 Lisp_Object string
, string2
;
345 decode_status (status
, &symbol
, &code
, &coredump
);
347 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qstop
))
350 string
= build_string (code
< NSIG
? sys_siglist
[code
] : "unknown");
352 string
= build_string (code
< NSIG
? sys_errlist
[code
] : "unknown");
354 string2
= build_string (coredump
? " (core dumped)\n" : "\n");
355 XSTRING (string
)->data
[0] = DOWNCASE (XSTRING (string
)->data
[0]);
356 return concat2 (string
, string2
);
358 else if (EQ (symbol
, Qexit
))
361 return build_string ("finished\n");
362 string
= Fnumber_to_string (make_number (code
));
363 string2
= build_string (coredump
? " (core dumped)\n" : "\n");
364 return concat2 (build_string ("exited abnormally with code "),
365 concat2 (string
, string2
));
368 return Fcopy_sequence (Fsymbol_name (symbol
));
373 /* Open an available pty, returning a file descriptor.
374 Return -1 on failure.
375 The file name of the terminal corresponding to the pty
376 is left in the variable pty_name. */
387 /* Some systems name their pseudoterminals so that there are gaps in
388 the usual sequence - for example, on HP9000/S700 systems, there
389 are no pseudoterminals with names ending in 'f'. So we wait for
390 three failures in a row before deciding that we've reached the
392 int failed_count
= 0;
397 for (c
= FIRST_PTY_LETTER
; c
<= 'z'; c
++)
398 for (i
= 0; i
< 16; i
++)
401 #ifdef PTY_NAME_SPRINTF
404 sprintf (pty_name
, "/dev/pty%c%x", c
, i
);
405 #endif /* no PTY_NAME_SPRINTF */
409 #else /* no PTY_OPEN */
411 /* Unusual IRIS code */
412 *ptyv
= open ("/dev/ptc", O_RDWR
| O_NDELAY
, 0);
415 if (fstat (fd
, &stb
) < 0)
418 if (stat (pty_name
, &stb
) < 0)
421 if (failed_count
>= 3)
427 fd
= open (pty_name
, O_RDWR
| O_NONBLOCK
, 0);
429 fd
= open (pty_name
, O_RDWR
| O_NDELAY
, 0);
431 #endif /* not IRIS */
432 #endif /* no PTY_OPEN */
436 /* check to make certain that both sides are available
437 this avoids a nasty yet stupid bug in rlogins */
438 #ifdef PTY_TTY_NAME_SPRINTF
441 sprintf (pty_name
, "/dev/tty%c%x", c
, i
);
442 #endif /* no PTY_TTY_NAME_SPRINTF */
444 if (access (pty_name
, 6) != 0)
453 #endif /* not UNIPLUS */
460 #endif /* HAVE_PTYS */
466 register Lisp_Object val
, tem
, name1
;
467 register struct Lisp_Process
*p
;
471 /* size of process structure includes the vector header,
472 so deduct for that. But struct Lisp_Vector includes the first
473 element, thus deducts too much, so add it back. */
474 val
= Fmake_vector (make_number ((sizeof (struct Lisp_Process
)
475 - sizeof (struct Lisp_Vector
)
476 + sizeof (Lisp_Object
))
477 / sizeof (Lisp_Object
)),
479 XSETTYPE (val
, Lisp_Process
);
482 XFASTINT (p
->infd
) = 0;
483 XFASTINT (p
->outfd
) = 0;
484 XFASTINT (p
->pid
) = 0;
485 XFASTINT (p
->tick
) = 0;
486 XFASTINT (p
->update_tick
) = 0;
487 p
->raw_status_low
= Qnil
;
488 p
->raw_status_high
= Qnil
;
490 p
->mark
= Fmake_marker ();
492 /* If name is already in use, modify it until it is unused. */
497 tem
= Fget_process (name1
);
498 if (NILP (tem
)) break;
499 sprintf (suffix
, "<%d>", i
);
500 name1
= concat2 (name
, build_string (suffix
));
504 Vprocess_alist
= Fcons (Fcons (name
, val
), Vprocess_alist
);
508 remove_process (proc
)
509 register Lisp_Object proc
;
511 register Lisp_Object pair
;
513 pair
= Frassq (proc
, Vprocess_alist
);
514 Vprocess_alist
= Fdelq (pair
, Vprocess_alist
);
515 Fset_marker (XPROCESS (proc
)->mark
, Qnil
, Qnil
);
517 deactivate_process (proc
);
520 DEFUN ("processp", Fprocessp
, Sprocessp
, 1, 1, 0,
521 "Return t if OBJECT is a process.")
525 return XTYPE (obj
) == Lisp_Process
? Qt
: Qnil
;
528 DEFUN ("get-process", Fget_process
, Sget_process
, 1, 1, 0,
529 "Return the process named NAME, or nil if there is none.")
531 register Lisp_Object name
;
533 if (XTYPE (name
) == Lisp_Process
)
535 CHECK_STRING (name
, 0);
536 return Fcdr (Fassoc (name
, Vprocess_alist
));
539 DEFUN ("get-buffer-process", Fget_buffer_process
, Sget_buffer_process
, 1, 1, 0,
540 "Return the (or, a) process associated with BUFFER.\n\
541 BUFFER may be a buffer or the name of one.")
543 register Lisp_Object name
;
545 register Lisp_Object buf
, tail
, proc
;
547 if (NILP (name
)) return Qnil
;
548 buf
= Fget_buffer (name
);
549 if (NILP (buf
)) return Qnil
;
551 for (tail
= Vprocess_alist
; !NILP (tail
); tail
= Fcdr (tail
))
553 proc
= Fcdr (Fcar (tail
));
554 if (XTYPE (proc
) == Lisp_Process
&& EQ (XPROCESS (proc
)->buffer
, buf
))
560 /* This is how commands for the user decode process arguments. It
561 accepts a process, a process name, a buffer, a buffer name, or nil.
562 Buffers denote the first process in the buffer, and nil denotes the
567 register Lisp_Object name
;
569 register Lisp_Object proc
;
571 proc
= Fget_buffer_process (Fcurrent_buffer ());
574 proc
= Fget_process (name
);
576 proc
= Fget_buffer_process (Fget_buffer (name
));
583 error ("Current buffer has no process");
585 error ("Process %s does not exist", XSTRING (name
)->data
);
589 DEFUN ("delete-process", Fdelete_process
, Sdelete_process
, 1, 1, 0,
590 "Delete PROCESS: kill it and forget about it immediately.\n\
591 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
592 nil, indicating the current buffer's process.")
594 register Lisp_Object proc
;
596 proc
= get_process (proc
);
597 XPROCESS (proc
)->raw_status_low
= Qnil
;
598 XPROCESS (proc
)->raw_status_high
= Qnil
;
599 if (NETCONN_P (proc
))
601 XPROCESS (proc
)->status
= Fcons (Qexit
, Fcons (make_number (0), Qnil
));
602 XSETINT (XPROCESS (proc
)->tick
, ++process_tick
);
604 else if (XFASTINT (XPROCESS (proc
)->infd
))
606 Fkill_process (proc
, Qnil
);
607 /* Do this now, since remove_process will make sigchld_handler do nothing. */
608 XPROCESS (proc
)->status
609 = Fcons (Qsignal
, Fcons (make_number (SIGKILL
), Qnil
));
610 XSETINT (XPROCESS (proc
)->tick
, ++process_tick
);
613 remove_process (proc
);
617 DEFUN ("process-status", Fprocess_status
, Sprocess_status
, 1, 1, 0,
618 "Return the status of PROCESS: a symbol, one of these:\n\
619 run -- for a process that is running.\n\
620 stop -- for a process stopped but continuable.\n\
621 exit -- for a process that has exited.\n\
622 signal -- for a process that has got a fatal signal.\n\
623 open -- for a network stream connection that is open.\n\
624 closed -- for a network stream connection that is closed.\n\
625 nil -- if arg is a process name and no such process exists.\n\
626 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
627 nil, indicating the current buffer's process.")
628 /* command -- for a command channel opened to Emacs by another process.\n\
629 external -- for an i/o channel opened to Emacs by another process.\n\ */
631 register Lisp_Object proc
;
633 register struct Lisp_Process
*p
;
634 register Lisp_Object status
;
635 proc
= get_process (proc
);
639 if (!NILP (p
->raw_status_low
))
642 if (XTYPE (status
) == Lisp_Cons
)
643 status
= XCONS (status
)->car
;
644 if (NETCONN_P (proc
))
646 if (EQ (status
, Qrun
))
648 else if (EQ (status
, Qexit
))
654 DEFUN ("process-exit-status", Fprocess_exit_status
, Sprocess_exit_status
,
656 "Return the exit status of PROCESS or the signal number that killed it.\n\
657 If PROCESS has not yet exited or died, return 0.")
659 register Lisp_Object proc
;
661 CHECK_PROCESS (proc
, 0);
662 if (!NILP (XPROCESS (proc
)->raw_status_low
))
663 update_status (XPROCESS (proc
));
664 if (XTYPE (XPROCESS (proc
)->status
) == Lisp_Cons
)
665 return XCONS (XCONS (XPROCESS (proc
)->status
)->cdr
)->car
;
666 return make_number (0);
669 DEFUN ("process-id", Fprocess_id
, Sprocess_id
, 1, 1, 0,
670 "Return the process id of PROCESS.\n\
671 This is the pid of the Unix process which PROCESS uses or talks to.\n\
672 For a network connection, this value is nil.")
674 register Lisp_Object proc
;
676 CHECK_PROCESS (proc
, 0);
677 return XPROCESS (proc
)->pid
;
680 DEFUN ("process-name", Fprocess_name
, Sprocess_name
, 1, 1, 0,
681 "Return the name of PROCESS, as a string.\n\
682 This is the name of the program invoked in PROCESS,\n\
683 possibly modified to make it unique among process names.")
685 register Lisp_Object proc
;
687 CHECK_PROCESS (proc
, 0);
688 return XPROCESS (proc
)->name
;
691 DEFUN ("process-command", Fprocess_command
, Sprocess_command
, 1, 1, 0,
692 "Return the command that was executed to start PROCESS.\n\
693 This is a list of strings, the first string being the program executed\n\
694 and the rest of the strings being the arguments given to it.\n\
695 For a non-child channel, this is nil.")
697 register Lisp_Object proc
;
699 CHECK_PROCESS (proc
, 0);
700 return XPROCESS (proc
)->command
;
703 DEFUN ("set-process-buffer", Fset_process_buffer
, Sset_process_buffer
,
705 "Set buffer associated with PROCESS to BUFFER (a buffer, or nil).")
707 register Lisp_Object proc
, buffer
;
709 CHECK_PROCESS (proc
, 0);
711 CHECK_BUFFER (buffer
, 1);
712 XPROCESS (proc
)->buffer
= buffer
;
716 DEFUN ("process-buffer", Fprocess_buffer
, Sprocess_buffer
,
718 "Return the buffer PROCESS is associated with.\n\
719 Output from PROCESS is inserted in this buffer\n\
720 unless PROCESS has a filter.")
722 register Lisp_Object proc
;
724 CHECK_PROCESS (proc
, 0);
725 return XPROCESS (proc
)->buffer
;
728 DEFUN ("process-mark", Fprocess_mark
, Sprocess_mark
,
730 "Return the marker for the end of the last output from PROCESS.")
732 register Lisp_Object proc
;
734 CHECK_PROCESS (proc
, 0);
735 return XPROCESS (proc
)->mark
;
738 DEFUN ("set-process-filter", Fset_process_filter
, Sset_process_filter
,
740 "Give PROCESS the filter function FILTER; nil means no filter.\n\
741 When a process has a filter, each time it does output\n\
742 the entire string of output is passed to the filter.\n\
743 The filter gets two arguments: the process and the string of output.\n\
744 If the process has a filter, its buffer is not used for output.")
746 register Lisp_Object proc
, filter
;
748 CHECK_PROCESS (proc
, 0);
749 XPROCESS (proc
)->filter
= filter
;
753 DEFUN ("process-filter", Fprocess_filter
, Sprocess_filter
,
755 "Returns the filter function of PROCESS; nil if none.\n\
756 See `set-process-filter' for more info on filter functions.")
758 register Lisp_Object proc
;
760 CHECK_PROCESS (proc
, 0);
761 return XPROCESS (proc
)->filter
;
764 DEFUN ("set-process-sentinel", Fset_process_sentinel
, Sset_process_sentinel
,
766 "Give PROCESS the sentinel SENTINEL; nil for none.\n\
767 The sentinel is called as a function when the process changes state.\n\
768 It gets two arguments: the process, and a string describing the change.")
770 register Lisp_Object proc
, sentinel
;
772 CHECK_PROCESS (proc
, 0);
773 XPROCESS (proc
)->sentinel
= sentinel
;
777 DEFUN ("process-sentinel", Fprocess_sentinel
, Sprocess_sentinel
,
779 "Return the sentinel of PROCESS; nil if none.\n\
780 See `set-process-sentinel' for more info on sentinels.")
782 register Lisp_Object proc
;
784 CHECK_PROCESS (proc
, 0);
785 return XPROCESS (proc
)->sentinel
;
788 DEFUN ("process-kill-without-query", Fprocess_kill_without_query
,
789 Sprocess_kill_without_query
, 1, 2, 0,
790 "Say no query needed if PROCESS is running when Emacs is exited.\n\
791 Optional second argument if non-nill says to require a query.\n\
792 Value is t if a query was formerly required.")
794 register Lisp_Object proc
, value
;
798 CHECK_PROCESS (proc
, 0);
799 tem
= XPROCESS (proc
)->kill_without_query
;
800 XPROCESS (proc
)->kill_without_query
= Fnull (value
);
808 register Lisp_Object tail
, tem
;
809 Lisp_Object proc
, minspace
, tem1
;
810 register struct buffer
*old
= current_buffer
;
811 register struct Lisp_Process
*p
;
815 XFASTINT (minspace
) = 1;
817 set_buffer_internal (XBUFFER (Vstandard_output
));
818 Fbuffer_disable_undo (Vstandard_output
);
820 current_buffer
->truncate_lines
= Qt
;
823 Proc Status Buffer Command\n\
824 ---- ------ ------ -------\n", -1);
826 for (tail
= Vprocess_alist
; !NILP (tail
); tail
= Fcdr (tail
))
830 proc
= Fcdr (Fcar (tail
));
832 if (NILP (p
->childp
))
835 Finsert (1, &p
->name
);
836 Findent_to (make_number (13), minspace
);
838 if (!NILP (p
->raw_status_low
))
841 if (XTYPE (p
->status
) == Lisp_Cons
)
842 symbol
= XCONS (p
->status
)->car
;
845 if (EQ (symbol
, Qsignal
))
848 tem
= Fcar (Fcdr (p
->status
));
850 if (XINT (tem
) < NSIG
)
851 write_string (sys_errlist
[XINT (tem
)], -1);
854 Fprinc (symbol
, Qnil
);
856 else if (NETCONN_P (proc
))
858 if (EQ (symbol
, Qrun
))
859 write_string ("open", -1);
860 else if (EQ (symbol
, Qexit
))
861 write_string ("closed", -1);
863 Fprinc (symbol
, Qnil
);
866 Fprinc (symbol
, Qnil
);
868 if (EQ (symbol
, Qexit
))
871 tem
= Fcar (Fcdr (p
->status
));
874 sprintf (tembuf
, " %d", XFASTINT (tem
));
875 write_string (tembuf
, -1);
879 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qexit
))
880 remove_process (proc
);
882 Findent_to (make_number (22), minspace
);
883 if (NILP (p
->buffer
))
884 insert_string ("(none)");
885 else if (NILP (XBUFFER (p
->buffer
)->name
))
886 insert_string ("(Killed)");
888 Finsert (1, &XBUFFER (p
->buffer
)->name
);
890 Findent_to (make_number (37), minspace
);
892 if (NETCONN_P (proc
))
894 sprintf (tembuf
, "(network stream connection to %s)\n",
895 XSTRING (p
->childp
)->data
);
896 insert_string (tembuf
);
910 insert_string ("\n");
916 DEFUN ("list-processes", Flist_processes
, Slist_processes
, 0, 0, "",
917 "Display a list of all processes.\n\
918 \(Any processes listed as Exited or Signaled are actually eliminated\n\
919 after the listing is made.)")
922 internal_with_output_to_temp_buffer ("*Process List*",
923 list_processes_1
, Qnil
);
927 DEFUN ("process-list", Fprocess_list
, Sprocess_list
, 0, 0, 0,
928 "Return a list of all processes.")
931 return Fmapcar (Qcdr
, Vprocess_alist
);
934 /* Starting asynchronous inferior processes. */
936 static Lisp_Object
start_process_unwind ();
938 DEFUN ("start-process", Fstart_process
, Sstart_process
, 3, MANY
, 0,
939 "Start a program in a subprocess. Return the process object for it.\n\
940 Args are NAME BUFFER PROGRAM &rest PROGRAM-ARGS\n\
941 NAME is name for process. It is modified if necessary to make it unique.\n\
942 BUFFER is the buffer or (buffer-name) to associate with the process.\n\
943 Process output goes at end of that buffer, unless you specify\n\
944 an output stream or filter function to handle the output.\n\
945 BUFFER may be also nil, meaning that this process is not associated\n\
947 Third arg is program file name. It is searched for as in the shell.\n\
948 Remaining arguments are strings to give program as arguments.")
951 register Lisp_Object
*args
;
953 Lisp_Object buffer
, name
, program
, proc
, current_dir
, tem
;
955 register unsigned char *new_argv
;
958 register unsigned char **new_argv
;
961 int count
= specpdl_ptr
- specpdl
;
965 buffer
= Fget_buffer_create (buffer
);
967 /* Make sure that the child will be able to chdir to the current
968 buffer's current directory, or its unhandled equivalent. We
969 can't just have the child check for an error when it does the
970 chdir, since it's in a vfork.
972 We have to GCPRO around this because Fexpand_file_name and
973 Funhandled_file_name_directory might call a file name handling
974 function. The argument list is protected by the caller, so all
975 we really have to worry about is buffer. */
977 struct gcpro gcpro1
, gcpro2
;
979 current_dir
= current_buffer
->directory
;
981 GCPRO2 (buffer
, current_dir
);
984 expand_and_dir_to_file
985 (Funhandled_file_name_directory (current_dir
), Qnil
);
986 if (NILP (Ffile_accessible_directory_p (current_dir
)))
987 report_file_error ("Setting current directory",
988 Fcons (current_buffer
->directory
, Qnil
));
994 CHECK_STRING (name
, 0);
998 CHECK_STRING (program
, 2);
1001 /* Make a one member argv with all args concatenated
1002 together separated by a blank. */
1003 len
= XSTRING (program
)->size
+ 2;
1004 for (i
= 3; i
< nargs
; i
++)
1007 CHECK_STRING (tem
, i
);
1008 len
+= XSTRING (tem
)->size
+ 1; /* count the blank */
1010 new_argv
= (unsigned char *) alloca (len
);
1011 strcpy (new_argv
, XSTRING (program
)->data
);
1012 for (i
= 3; i
< nargs
; i
++)
1015 CHECK_STRING (tem
, i
);
1016 strcat (new_argv
, " ");
1017 strcat (new_argv
, XSTRING (tem
)->data
);
1019 /* Need to add code here to check for program existence on VMS */
1022 new_argv
= (unsigned char **) alloca ((nargs
- 1) * sizeof (char *));
1024 for (i
= 3; i
< nargs
; i
++)
1027 CHECK_STRING (tem
, i
);
1028 new_argv
[i
- 2] = XSTRING (tem
)->data
;
1030 new_argv
[i
- 2] = 0;
1031 new_argv
[0] = XSTRING (program
)->data
;
1033 /* If program file name is not absolute, search our path for it */
1034 if (new_argv
[0][0] != '/')
1037 openp (Vexec_path
, program
, EXEC_SUFFIXES
, &tem
, 1);
1039 report_file_error ("Searching for program", Fcons (program
, Qnil
));
1040 new_argv
[0] = XSTRING (tem
)->data
;
1042 #endif /* not VMS */
1044 proc
= make_process (name
);
1045 /* If an error occurs and we can't start the process, we want to
1046 remove it from the process list. This means that each error
1047 check in create_process doesn't need to call remove_process
1048 itself; it's all taken care of here. */
1049 record_unwind_protect (start_process_unwind
, proc
);
1051 XPROCESS (proc
)->childp
= Qt
;
1052 XPROCESS (proc
)->command_channel_p
= Qnil
;
1053 XPROCESS (proc
)->buffer
= buffer
;
1054 XPROCESS (proc
)->sentinel
= Qnil
;
1055 XPROCESS (proc
)->filter
= Qnil
;
1056 XPROCESS (proc
)->command
= Flist (nargs
- 2, args
+ 2);
1058 create_process (proc
, new_argv
, current_dir
);
1060 return unbind_to (count
, proc
);
1063 /* This function is the unwind_protect form for Fstart_process. If
1064 PROC doesn't have its pid set, then we know someone has signalled
1065 an error and the process wasn't started successfully, so we should
1066 remove it from the process list. */
1068 start_process_unwind (proc
)
1071 if (XTYPE (proc
) != Lisp_Process
)
1074 /* Was PROC started successfully? */
1075 if (XPROCESS (proc
)->pid
<= 0)
1076 remove_process (proc
);
1083 create_process_1 (signo
)
1087 /* USG systems forget handlers when they are used;
1088 must reestablish each time */
1089 signal (signo
, create_process_1
);
1093 #if 0 /* This doesn't work; see the note before sigchld_handler. */
1096 /* Mimic blocking of signals on system V, which doesn't really have it. */
1098 /* Nonzero means we got a SIGCHLD when it was supposed to be blocked. */
1099 int sigchld_deferred
;
1102 create_process_sigchld ()
1104 signal (SIGCHLD
, create_process_sigchld
);
1106 sigchld_deferred
= 1;
1112 #ifndef VMS /* VMS version of this function is in vmsproc.c. */
1113 create_process (process
, new_argv
, current_dir
)
1114 Lisp_Object process
;
1116 Lisp_Object current_dir
;
1118 int pid
, inchannel
, outchannel
, forkin
, forkout
;
1121 SIGTYPE (*sigchld
)();
1124 extern char **environ
;
1126 inchannel
= outchannel
= -1;
1129 if (EQ (Vprocess_connection_type
, Qt
))
1130 outchannel
= inchannel
= allocate_pty ();
1135 /* On USG systems it does not work to open the pty's tty here
1136 and then close and reopen it in the child. */
1138 /* Don't let this terminal become our controlling terminal
1139 (in case we don't have one). */
1140 forkout
= forkin
= open (pty_name
, O_RDWR
| O_NOCTTY
, 0);
1142 forkout
= forkin
= open (pty_name
, O_RDWR
, 0);
1145 report_file_error ("Opening pty", Qnil
);
1147 forkin
= forkout
= -1;
1148 #endif /* not USG */
1152 #endif /* HAVE_PTYS */
1155 if (socketpair (AF_UNIX
, SOCK_STREAM
, 0, sv
) < 0)
1156 report_file_error ("Opening socketpair", Qnil
);
1157 outchannel
= inchannel
= sv
[0];
1158 forkout
= forkin
= sv
[1];
1160 #else /* not SKTPAIR */
1169 #endif /* not SKTPAIR */
1172 /* Replaced by close_process_descs */
1173 set_exclusive_use (inchannel
);
1174 set_exclusive_use (outchannel
);
1177 /* Stride people say it's a mystery why this is needed
1178 as well as the O_NDELAY, but that it fails without this. */
1179 #if defined (STRIDE) || (defined (pfa) && defined (HAVE_PTYS))
1182 ioctl (inchannel
, FIONBIO
, &one
);
1187 fcntl (inchannel
, F_SETFL
, O_NONBLOCK
);
1190 fcntl (inchannel
, F_SETFL
, O_NDELAY
);
1194 /* Record this as an active process, with its channels.
1195 As a result, child_setup will close Emacs's side of the pipes. */
1196 chan_process
[inchannel
] = process
;
1197 XFASTINT (XPROCESS (process
)->infd
) = inchannel
;
1198 XFASTINT (XPROCESS (process
)->outfd
) = outchannel
;
1199 /* Record the tty descriptor used in the subprocess. */
1201 XPROCESS (process
)->subtty
= Qnil
;
1203 XFASTINT (XPROCESS (process
)->subtty
) = forkin
;
1204 XPROCESS (process
)->pty_flag
= (pty_flag
? Qt
: Qnil
);
1205 XPROCESS (process
)->status
= Qrun
;
1207 /* Delay interrupts until we have a chance to store
1208 the new fork's pid in its process structure */
1212 #else /* not BSD4_1 */
1213 #if defined (BSD) || defined (UNIPLUS) || defined (HPUX)
1214 sigsetmask (sigmask (SIGCHLD
));
1215 #else /* ordinary USG */
1217 sigchld_deferred
= 0;
1218 sigchld
= signal (SIGCHLD
, create_process_sigchld
);
1220 #endif /* ordinary USG */
1221 #endif /* not BSD4_1 */
1222 #endif /* SIGCHLD */
1224 /* Until we store the proper pid, enable sigchld_handler
1225 to recognize an unknown pid as standing for this process.
1226 It is very important not to let this `marker' value stay
1227 in the table after this function has returned; if it does
1228 it might cause call-process to hang and subsequent asynchronous
1229 processes to get their return values scrambled. */
1230 XSETINT (XPROCESS (process
)->pid
, -1);
1233 /* child_setup must clobber environ on systems with true vfork.
1234 Protect it from permanent change. */
1235 char **save_environ
= environ
;
1240 int xforkin
= forkin
;
1241 int xforkout
= forkout
;
1243 #if 0 /* This was probably a mistake--it duplicates code later on,
1244 but fails to handle all the cases. */
1245 /* Make sure SIGCHLD is not blocked in the child. */
1246 sigsetmask (SIGEMPTYMASK
);
1249 /* Make the pty be the controlling terminal of the process. */
1251 /* First, disconnect its current controlling terminal. */
1255 /* Make the pty's terminal the controlling terminal. */
1256 if (pty_flag
&& (ioctl (xforkin
, TIOCSCTTY
, 0) < 0))
1259 #else /* not HAVE_SETSID */
1261 /* It's very important to call setpgrp() here and no time
1262 afterwards. Otherwise, we lose our controlling tty which
1263 is set when we open the pty. */
1266 #endif /* not HAVE_SETSID */
1268 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
1269 can do TIOCSPGRP only to the process's controlling tty. */
1272 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
1273 I can't test it since I don't have 4.3. */
1274 int j
= open ("/dev/tty", O_RDWR
, 0);
1275 ioctl (j
, TIOCNOTTY
, 0);
1278 /* In order to get a controlling terminal on some versions
1279 of BSD, it is necessary to put the process in pgrp 0
1280 before it opens the terminal. */
1284 #endif /* TIOCNOTTY */
1286 #if !defined (RTU) && !defined (UNIPLUS)
1287 /*** There is a suggestion that this ought to be a
1288 conditional on TIOCSPGRP. */
1289 /* Now close the pty (if we had it open) and reopen it.
1290 This makes the pty the controlling terminal of the subprocess. */
1293 /* I wonder if close (open (pty_name, ...)) would work? */
1296 xforkout
= xforkin
= open (pty_name
, O_RDWR
, 0);
1301 #endif /* not UNIPLUS and not RTU */
1302 #ifdef SETUP_SLAVE_PTY
1304 #endif /* SETUP_SLAVE_PTY */
1306 /* On AIX, we've disabled SIGHUP above once we start a child on a pty.
1307 Now reenable it in the child, so it will die when we want it to. */
1309 signal (SIGHUP
, SIG_DFL
);
1311 #endif /* HAVE_PTYS */
1316 #else /* not BSD4_1 */
1317 #if defined (BSD) || defined (UNIPLUS) || defined (HPUX)
1318 sigsetmask (SIGEMPTYMASK
);
1319 #else /* ordinary USG */
1321 signal (SIGCHLD
, sigchld
);
1323 #endif /* ordinary USG */
1324 #endif /* not BSD4_1 */
1325 #endif /* SIGCHLD */
1327 child_setup_tty (xforkout
);
1328 child_setup (xforkin
, xforkout
, xforkout
,
1329 new_argv
, 1, current_dir
);
1331 environ
= save_environ
;
1335 report_file_error ("Doing vfork", Qnil
);
1337 XFASTINT (XPROCESS (process
)->pid
) = pid
;
1339 FD_SET (inchannel
, &input_wait_mask
);
1341 /* If the subfork execv fails, and it exits,
1342 this close hangs. I don't know why.
1343 So have an interrupt jar it loose. */
1345 signal (SIGALRM
, create_process_1
);
1348 /* OK to close only if it's not a pty. Otherwise we need to leave
1349 it open for ioctl to get pgrp when signals are sent, or to send
1350 the interrupt characters through if that's how we're signalling
1351 subprocesses. Alternately if you are concerned about running out
1352 of file descriptors, you could just save the tty name and open
1353 just to do the ioctl. */
1354 if (NILP (XFASTINT (XPROCESS (process
)->pty_flag
)))
1357 XPROCESS (process
)->subtty
= Qnil
;
1363 if (forkin
!= forkout
&& forkout
>= 0)
1369 #else /* not BSD4_1 */
1370 #if defined (BSD) || defined (UNIPLUS) || defined (HPUX)
1371 sigsetmask (SIGEMPTYMASK
);
1372 #else /* ordinary USG */
1374 signal (SIGCHLD
, sigchld
);
1375 /* Now really handle any of these signals
1376 that came in during this function. */
1377 if (sigchld_deferred
)
1378 kill (getpid (), SIGCHLD
);
1380 #endif /* ordinary USG */
1381 #endif /* not BSD4_1 */
1382 #endif /* SIGCHLD */
1384 #endif /* not VMS */
1388 /* open a TCP network connection to a given HOST/SERVICE. Treated
1389 exactly like a normal process when reading and writing. Only
1390 differences are in status display and process deletion. A network
1391 connection has no PID; you cannot signal it. All you can do is
1392 deactivate and close it via delete-process */
1394 DEFUN ("open-network-stream", Fopen_network_stream
, Sopen_network_stream
,
1396 "Open a TCP connection for a service to a host.\n\
1397 Returns a subprocess-object to represent the connection.\n\
1398 Input and output work as for subprocesses; `delete-process' closes it.\n\
1399 Args are NAME BUFFER HOST SERVICE.\n\
1400 NAME is name for process. It is modified if necessary to make it unique.\n\
1401 BUFFER is the buffer (or buffer-name) to associate with the process.\n\
1402 Process output goes at end of that buffer, unless you specify\n\
1403 an output stream or filter function to handle the output.\n\
1404 BUFFER may be also nil, meaning that this process is not associated\n\
1406 Third arg is name of the host to connect to, or its IP address.\n\
1407 Fourth arg SERVICE is name of the service desired, or an integer\n\
1408 specifying a port number to connect to.")
1409 (name
, buffer
, host
, service
)
1410 Lisp_Object name
, buffer
, host
, service
;
1414 struct sockaddr_in address
;
1415 struct servent
*svc_info
;
1416 struct hostent
*host_info_ptr
, host_info
;
1417 char *(addr_list
[2]);
1418 unsigned long numeric_addr
;
1422 struct hostent host_info_fixed
;
1423 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
1425 GCPRO4 (name
, buffer
, host
, service
);
1426 CHECK_STRING (name
, 0);
1427 CHECK_STRING (host
, 0);
1428 if (XTYPE(service
) == Lisp_Int
)
1429 port
= htons ((unsigned short) XINT (service
));
1432 CHECK_STRING (service
, 0);
1433 svc_info
= getservbyname (XSTRING (service
)->data
, "tcp");
1435 error ("Unknown service \"%s\"", XSTRING (service
)->data
);
1436 port
= svc_info
->s_port
;
1439 host_info_ptr
= gethostbyname (XSTRING (host
)->data
);
1440 if (host_info_ptr
== 0)
1441 /* Attempt to interpret host as numeric inet address */
1443 numeric_addr
= inet_addr (XSTRING (host
)->data
);
1444 if (numeric_addr
== -1)
1445 error ("Unknown host \"%s\"", XSTRING (host
)->data
);
1447 host_info_ptr
= &host_info
;
1448 host_info
.h_name
= 0;
1449 host_info
.h_aliases
= 0;
1450 host_info
.h_addrtype
= AF_INET
;
1451 host_info
.h_addr_list
= &(addr_list
[0]);
1452 addr_list
[0] = (char*)(&numeric_addr
);
1454 host_info
.h_length
= strlen (addr_list
[0]);
1457 bzero (&address
, sizeof address
);
1458 bcopy (host_info_ptr
->h_addr
, (char *) &address
.sin_addr
,
1459 host_info_ptr
->h_length
);
1460 address
.sin_family
= host_info_ptr
->h_addrtype
;
1461 address
.sin_port
= port
;
1463 s
= socket (host_info_ptr
->h_addrtype
, SOCK_STREAM
, 0);
1465 report_file_error ("error creating socket", Fcons (name
, Qnil
));
1468 if (connect (s
, &address
, sizeof address
) == -1)
1475 report_file_error ("connection failed",
1476 Fcons (host
, Fcons (name
, Qnil
)));
1482 report_file_error ("error duplicating socket", Fcons (name
, Qnil
));
1485 buffer
= Fget_buffer_create (buffer
);
1486 proc
= make_process (name
);
1488 chan_process
[inch
] = proc
;
1491 fcntl (inch
, F_SETFL
, O_NONBLOCK
);
1494 fcntl (inch
, F_SETFL
, O_NDELAY
);
1498 XPROCESS (proc
)->childp
= host
;
1499 XPROCESS (proc
)->command_channel_p
= Qnil
;
1500 XPROCESS (proc
)->buffer
= buffer
;
1501 XPROCESS (proc
)->sentinel
= Qnil
;
1502 XPROCESS (proc
)->filter
= Qnil
;
1503 XPROCESS (proc
)->command
= Qnil
;
1504 XPROCESS (proc
)->pid
= Qnil
;
1505 XFASTINT (XPROCESS (proc
)->infd
) = s
;
1506 XFASTINT (XPROCESS (proc
)->outfd
) = outch
;
1507 XPROCESS (proc
)->status
= Qrun
;
1508 FD_SET (inch
, &input_wait_mask
);
1513 #endif /* HAVE_SOCKETS */
1515 deactivate_process (proc
)
1518 register int inchannel
, outchannel
;
1519 register struct Lisp_Process
*p
= XPROCESS (proc
);
1521 inchannel
= XFASTINT (p
->infd
);
1522 outchannel
= XFASTINT (p
->outfd
);
1526 /* Beware SIGCHLD hereabouts. */
1527 flush_pending_output (inchannel
);
1530 VMS_PROC_STUFF
*get_vms_process_pointer (), *vs
;
1531 sys$
dassgn (outchannel
);
1532 vs
= get_vms_process_pointer (p
->pid
);
1534 give_back_vms_process_stuff (vs
);
1538 if (outchannel
&& outchannel
!= inchannel
)
1542 XFASTINT (p
->infd
) = 0;
1543 XFASTINT (p
->outfd
) = 0;
1544 chan_process
[inchannel
] = Qnil
;
1545 FD_CLR (inchannel
, &input_wait_mask
);
1549 /* Close all descriptors currently in use for communication
1550 with subprocess. This is used in a newly-forked subprocess
1551 to get rid of irrelevant descriptors. */
1553 close_process_descs ()
1556 for (i
= 0; i
< MAXDESC
; i
++)
1558 Lisp_Object process
;
1559 process
= chan_process
[i
];
1560 if (!NILP (process
))
1562 int in
= XFASTINT (XPROCESS (process
)->infd
);
1563 int out
= XFASTINT (XPROCESS (process
)->outfd
);
1566 if (out
&& in
!= out
)
1572 DEFUN ("accept-process-output", Faccept_process_output
, Saccept_process_output
,
1574 "Allow any pending output from subprocesses to be read by Emacs.\n\
1575 It is read into the process' buffers or given to their filter functions.\n\
1576 Non-nil arg PROCESS means do not return until some output has been received\n\
1578 Non-nil second arg TIMEOUT and third arg TIMEOUT-MSECS are number of\n\
1579 seconds and microseconds to wait; return after that much time whether\n\
1580 or not there is input.\n\
1581 Return non-nil iff we received any output before the timeout expired.")
1582 (proc
, timeout
, timeout_msecs
)
1583 register Lisp_Object proc
, timeout
, timeout_msecs
;
1588 if (! NILP (timeout_msecs
))
1590 CHECK_NUMBER (timeout_msecs
, 2);
1591 useconds
= XINT (timeout_msecs
);
1592 if (XTYPE (timeout
) != Lisp_Int
)
1593 XSET (timeout
, Lisp_Int
, 0);
1596 int carry
= useconds
/ 1000000;
1598 XSETINT (timeout
, XINT (timeout
) + carry
);
1599 useconds
-= carry
* 1000000;
1601 /* I think this clause is necessary because C doesn't
1602 guarantee a particular rounding direction for negative
1606 XSETINT (timeout
, XINT (timeout
) - 1);
1607 useconds
+= 1000000;
1614 if (! NILP (timeout
))
1616 CHECK_NUMBER (timeout
, 1);
1617 seconds
= XINT (timeout
);
1630 XFASTINT (proc
) = 0;
1633 (wait_reading_process_input (seconds
, useconds
, proc
, 0)
1637 /* This variable is different from waiting_for_input in keyboard.c.
1638 It is used to communicate to a lisp process-filter/sentinel (via the
1639 function Fwaiting_for_user_input_p below) whether emacs was waiting
1640 for user-input when that process-filter was called.
1641 waiting_for_input cannot be used as that is by definition 0 when
1642 lisp code is being evalled */
1643 static int waiting_for_user_input_p
;
1645 /* Read and dispose of subprocess output while waiting for timeout to
1646 elapse and/or keyboard input to be available.
1649 timeout in seconds, or
1650 zero for no limit, or
1651 -1 means gobble data immediately available but don't wait for any.
1654 an additional duration to wait (if time_limit is greater than
1655 zero), specified in millisec.
1657 read_kbd is a lisp value:
1658 0 to ignore keyboard input, or
1659 1 to return when input is available, or
1660 -1 meaning caller will actually read the input, so don't throw to
1661 the quit handler, or
1662 a cons cell, meaning wait wait until its car is non-nil, or
1663 a process object, meaning wait until something arrives from that
1664 process. The return value is true iff we read some input from
1667 do_display != 0 means redisplay should be done to show subprocess
1668 output that arrives.
1670 If read_kbd is a pointer to a struct Lisp_Process, then the
1671 function returns true iff we received input from that process
1672 before the timeout elapsed.
1673 Otherwise, return true iff we recieved input from any process. */
1675 wait_reading_process_input (time_limit
, microsecs
, read_kbd
, do_display
)
1676 int time_limit
, microsecs
;
1677 Lisp_Object read_kbd
;
1680 register int channel
, nfds
, m
;
1681 static SELECT_TYPE Available
;
1684 EMACS_TIME timeout
, end_time
, garbage
;
1686 int wait_channel
= 0;
1687 struct Lisp_Process
*wait_proc
= 0;
1688 int got_some_input
= 0;
1689 Lisp_Object
*wait_for_cell
= 0;
1691 FD_ZERO (&Available
);
1693 /* If read_kbd is a process to watch, set wait_proc and wait_channel
1695 if (XTYPE (read_kbd
) == Lisp_Process
)
1697 wait_proc
= XPROCESS (read_kbd
);
1698 wait_channel
= XFASTINT (wait_proc
->infd
);
1699 XFASTINT (read_kbd
) = 0;
1702 /* If waiting for non-nil in a cell, record where. */
1703 if (XTYPE (read_kbd
) == Lisp_Cons
)
1705 wait_for_cell
= &XCONS (read_kbd
)->car
;
1706 XFASTINT (read_kbd
) = 0;
1709 waiting_for_user_input_p
= XINT (read_kbd
);
1711 /* Since we may need to wait several times,
1712 compute the absolute time to return at. */
1713 if (time_limit
|| microsecs
)
1715 EMACS_GET_TIME (end_time
);
1716 EMACS_SET_SECS_USECS (timeout
, time_limit
, microsecs
);
1717 EMACS_ADD_TIME (end_time
, end_time
, timeout
);
1722 /* If calling from keyboard input, do not quit
1723 since we want to return C-g as an input character.
1724 Otherwise, do pending quit if requested. */
1725 if (XINT (read_kbd
) >= 0)
1728 /* Compute time from now till when time limit is up */
1729 /* Exit if already run out */
1730 if (time_limit
== -1)
1732 /* -1 specified for timeout means
1733 gobble output available now
1734 but don't wait at all. */
1736 EMACS_SET_SECS_USECS (timeout
, 0, 0);
1738 else if (time_limit
|| microsecs
)
1740 EMACS_GET_TIME (timeout
);
1741 EMACS_SUB_TIME (timeout
, end_time
, timeout
);
1742 if (EMACS_TIME_NEG_P (timeout
))
1747 EMACS_SET_SECS_USECS (timeout
, 100000, 0);
1750 /* Cause C-g and alarm signals to take immediate action,
1751 and cause input available signals to zero out timeout.
1753 It is important that we do this before checking for process
1754 activity. If we get a SIGCHLD after the explicit checks for
1755 process activity, timeout is the only way we will know. */
1756 if (XINT (read_kbd
) < 0)
1757 set_waiting_for_input (&timeout
);
1759 /* If status of something has changed, and no input is
1760 available, notify the user of the change right away. After
1761 this explicit check, we'll let the SIGCHLD handler zap
1762 timeout to get our attention. */
1763 if (update_tick
!= process_tick
&& do_display
)
1765 Atemp
= input_wait_mask
;
1766 EMACS_SET_SECS_USECS (timeout
, 0, 0);
1767 if (select (MAXDESC
, &Atemp
, 0, 0, &timeout
) <= 0)
1771 /* Don't wait for output from a non-running process. */
1772 if (wait_proc
!= 0 && !NILP (wait_proc
->raw_status_low
))
1773 update_status (wait_proc
);
1775 && ! EQ (wait_proc
->status
, Qrun
))
1778 /* Wait till there is something to do */
1780 Available
= input_wait_mask
;
1781 if (! XINT (read_kbd
))
1782 FD_CLR (0, &Available
);
1784 /* If frame size has changed or the window is newly mapped,
1785 redisplay now, before we start to wait. There is a race
1786 condition here; if a SIGIO arrives between now and the select
1787 and indicates that a frame is trashed, the select may block
1788 displaying a trashed screen. */
1790 redisplay_preserve_echo_area ();
1792 if (XINT (read_kbd
) && detect_input_pending ())
1795 nfds
= select (MAXDESC
, &Available
, 0, 0, &timeout
);
1799 /* Make C-g and alarm signals set flags again */
1800 clear_waiting_for_input ();
1802 /* If we woke up due to SIGWINCH, actually change size now. */
1803 do_pending_window_change ();
1805 if (time_limit
&& nfds
== 0) /* timeout elapsed */
1809 if (xerrno
== EINTR
)
1810 FD_ZERO (&Available
);
1812 /* Ultrix select seems to return ENOMEM when it is
1813 interrupted. Treat it just like EINTR. Bleah. Note
1814 that we want to test for the "ultrix" CPP symbol, not
1815 "__ultrix__"; the latter is only defined under GCC, but
1816 not by DEC's bundled CC. -JimB */
1817 else if (xerrno
== ENOMEM
)
1818 FD_ZERO (&Available
);
1821 /* This happens for no known reason on ALLIANT.
1822 I am guessing that this is the right response. -- RMS. */
1823 else if (xerrno
== EFAULT
)
1824 FD_ZERO (&Available
);
1826 else if (xerrno
== EBADF
)
1829 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
1830 the child's closure of the pts gives the parent a SIGHUP, and
1831 the ptc file descriptor is automatically closed,
1832 yielding EBADF here or at select() call above.
1833 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
1834 in m-ibmrt-aix.h), and here we just ignore the select error.
1835 Cleanup occurs c/o status_notify after SIGCLD. */
1836 FD_ZERO (&Available
); /* Cannot depend on values returned */
1842 error("select error: %s", sys_errlist
[xerrno
]);
1845 else if (nfds
> 0 && FD_ISSET (0, &Available
) && interrupt_input
)
1846 /* System sometimes fails to deliver SIGIO. */
1847 kill (getpid (), SIGIO
);
1850 /* Check for keyboard input */
1851 /* If there is any, return immediately
1852 to give it higher priority than subprocesses */
1854 if (XINT (read_kbd
) && detect_input_pending ())
1857 /* Exit now if the cell we're waiting for became non-nil. */
1858 if (wait_for_cell
&& ! NILP (*wait_for_cell
))
1862 /* If we think we have keyboard input waiting, but didn't get SIGIO
1863 go read it. This can happen with X on BSD after logging out.
1864 In that case, there really is no input and no SIGIO,
1865 but select says there is input. */
1867 if (XINT (read_kbd
) && interrupt_input
&& (FD_ISSET (fileno (stdin
), &Available
)))
1872 got_some_input
|= nfds
> 0;
1874 /* If checking input just got us a size-change event from X,
1875 obey it now if we should. */
1876 if (XINT (read_kbd
))
1877 do_pending_window_change ();
1879 /* Check for data from a process or a command channel */
1880 for (channel
= FIRST_PROC_DESC
; channel
< MAXDESC
; channel
++)
1882 if (FD_ISSET (channel
, &Available
))
1886 /* If waiting for this channel, arrange to return as
1887 soon as no more input to be processed. No more
1889 if (wait_channel
== channel
)
1895 proc
= chan_process
[channel
];
1899 /* Read data from the process, starting with our
1900 buffered-ahead character if we have one. */
1902 nread
= read_process_output (proc
, channel
);
1905 /* Since read_process_output can run a filter,
1906 which can call accept-process-output,
1907 don't try to read from any other processes
1908 before doing the select again. */
1909 FD_ZERO (&Available
);
1912 redisplay_preserve_echo_area ();
1915 else if (nread
== -1 && errno
== EWOULDBLOCK
)
1919 else if (nread
== -1 && errno
== EAGAIN
)
1923 else if (nread
== -1 && errno
== EAGAIN
)
1925 /* Note that we cannot distinguish between no input
1926 available now and a closed pipe.
1927 With luck, a closed pipe will be accompanied by
1928 subprocess termination and SIGCHLD. */
1929 else if (nread
== 0 && !NETCONN_P (proc
))
1931 #endif /* O_NDELAY */
1932 #endif /* O_NONBLOCK */
1933 #endif /* EWOULDBLOCK */
1935 /* On some OSs with ptys, when the process on one end of
1936 a pty exits, the other end gets an error reading with
1937 errno = EIO instead of getting an EOF (0 bytes read).
1938 Therefore, if we get an error reading and errno =
1939 EIO, just continue, because the child process has
1940 exited and should clean itself up soon (e.g. when we
1942 else if (nread
== -1 && errno
== EIO
)
1944 #endif /* HAVE_PTYS */
1945 /* If we can detect process termination, don't consider the process
1946 gone just because its pipe is closed. */
1948 else if (nread
== 0 && !NETCONN_P (proc
))
1953 /* Preserve status of processes already terminated. */
1954 XSETINT (XPROCESS (proc
)->tick
, ++process_tick
);
1955 deactivate_process (proc
);
1956 if (!NILP (XPROCESS (proc
)->raw_status_low
))
1957 update_status (XPROCESS (proc
));
1958 if (EQ (XPROCESS (proc
)->status
, Qrun
))
1959 XPROCESS (proc
)->status
1960 = Fcons (Qexit
, Fcons (make_number (256), Qnil
));
1963 } /* end for each file descriptor */
1964 } /* end while exit conditions not met */
1966 /* If calling from keyboard input, do not quit
1967 since we want to return C-g as an input character.
1968 Otherwise, do pending quit if requested. */
1969 if (XINT (read_kbd
) >= 0)
1971 /* Prevent input_pending from remaining set if we quit. */
1972 clear_input_pending ();
1976 return got_some_input
;
1979 /* Read pending output from the process channel,
1980 starting with our buffered-ahead character if we have one.
1981 Yield number of characters read.
1983 This function reads at most 1024 characters.
1984 If you want to read all available subprocess output,
1985 you must call it repeatedly until it returns zero. */
1987 read_process_output (proc
, channel
)
1989 register int channel
;
1991 register int nchars
;
1997 register Lisp_Object outstream
;
1998 register struct buffer
*old
= current_buffer
;
1999 register struct Lisp_Process
*p
= XPROCESS (proc
);
2000 register int opoint
;
2003 VMS_PROC_STUFF
*vs
, *get_vms_process_pointer();
2005 vs
= get_vms_process_pointer (p
->pid
);
2009 return(0); /* Really weird if it does this */
2010 if (!(vs
->iosb
[0] & 1))
2011 return -1; /* I/O error */
2014 error ("Could not get VMS process pointer");
2015 chars
= vs
->inputBuffer
;
2016 nchars
= clean_vms_buffer (chars
, vs
->iosb
[1]);
2019 start_vms_process_read (vs
); /* Crank up the next read on the process */
2020 return 1; /* Nothing worth printing, say we got 1 */
2024 if (proc_buffered_char
[channel
] < 0)
2025 nchars
= read (channel
, chars
, sizeof chars
);
2028 chars
[0] = proc_buffered_char
[channel
];
2029 proc_buffered_char
[channel
] = -1;
2030 nchars
= read (channel
, chars
+ 1, sizeof chars
- 1);
2034 nchars
= nchars
+ 1;
2036 #endif /* not VMS */
2038 if (nchars
<= 0) return nchars
;
2040 outstream
= p
->filter
;
2041 if (!NILP (outstream
))
2043 /* We inhibit quit here instead of just catching it so that
2044 hitting ^G when a filter happens to be running won't screw
2046 int count
= specpdl_ptr
- specpdl
;
2047 specbind (Qinhibit_quit
, Qt
);
2048 call2 (outstream
, proc
, make_string (chars
, nchars
));
2051 start_vms_process_read (vs
);
2057 /* If no filter, write into buffer if it isn't dead. */
2058 if (!NILP (p
->buffer
) && !NILP (XBUFFER (p
->buffer
)->name
))
2060 Lisp_Object old_read_only
;
2061 Lisp_Object old_begv
, old_zv
;
2063 Fset_buffer (p
->buffer
);
2065 old_read_only
= current_buffer
->read_only
;
2066 XFASTINT (old_begv
) = BEGV
;
2067 XFASTINT (old_zv
) = ZV
;
2069 current_buffer
->read_only
= Qnil
;
2071 /* Insert new output into buffer
2072 at the current end-of-output marker,
2073 thus preserving logical ordering of input and output. */
2074 if (XMARKER (p
->mark
)->buffer
)
2075 SET_PT (marker_position (p
->mark
));
2079 /* If the output marker is outside of the visible region, save
2080 the restriction and widen. */
2081 if (! (BEGV
<= point
&& point
<= ZV
))
2084 /* Make sure opoint floats ahead of any new text, just as point
2086 if (point
<= opoint
)
2089 /* Insert after old_begv, but before old_zv. */
2090 if (point
< XFASTINT (old_begv
))
2091 XFASTINT (old_begv
) += nchars
;
2092 if (point
<= XFASTINT (old_zv
))
2093 XFASTINT (old_zv
) += nchars
;
2095 /* Insert before markers in case we are inserting where
2096 the buffer's mark is, and the user's next command is Meta-y. */
2097 insert_before_markers (chars
, nchars
);
2098 Fset_marker (p
->mark
, make_number (point
), p
->buffer
);
2100 update_mode_lines
++;
2102 /* If the restriction isn't what it should be, set it. */
2103 if (XFASTINT (old_begv
) != BEGV
|| XFASTINT (old_zv
) != ZV
)
2104 Fnarrow_to_region (old_begv
, old_zv
);
2106 current_buffer
->read_only
= old_read_only
;
2108 set_buffer_internal (old
);
2111 start_vms_process_read (vs
);
2116 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p
, Swaiting_for_user_input_p
,
2118 "Returns non-NIL if emacs is waiting for input from the user.\n\
2119 This is intended for use by asynchronous process output filters and sentinels.")
2122 return ((waiting_for_user_input_p
) ? Qt
: Qnil
);
2125 /* Sending data to subprocess */
2127 jmp_buf send_process_frame
;
2130 send_process_trap ()
2136 longjmp (send_process_frame
, 1);
2139 send_process (proc
, buf
, len
)
2144 /* Don't use register vars; longjmp can lose them. */
2146 unsigned char *procname
= XSTRING (XPROCESS (proc
)->name
)->data
;
2150 struct Lisp_Process
*p
= XPROCESS (proc
);
2151 VMS_PROC_STUFF
*vs
, *get_vms_process_pointer();
2154 if (! NILP (XPROCESS (proc
)->raw_status_low
))
2155 update_status (XPROCESS (proc
));
2156 if (! EQ (XPROCESS (proc
)->status
, Qrun
))
2157 error ("Process %s not running", procname
);
2160 vs
= get_vms_process_pointer (p
->pid
);
2162 error ("Could not find this process: %x", p
->pid
);
2163 else if (write_to_vms_process (vs
, buf
, len
))
2166 if (!setjmp (send_process_frame
))
2170 SIGTYPE (*old_sigpipe
)();
2172 /* Don't send more than 500 bytes at a time. */
2175 old_sigpipe
= (SIGTYPE (*) ()) signal (SIGPIPE
, send_process_trap
);
2176 rv
= write (XFASTINT (XPROCESS (proc
)->outfd
), buf
, this);
2177 signal (SIGPIPE
, old_sigpipe
);
2182 || errno
== EWOULDBLOCK
2189 /* It would be nice to accept process output here,
2190 but that is difficult. For example, it could
2191 garbage what we are sending if that is from a buffer. */
2198 report_file_error ("writing to process", Fcons (proc
, Qnil
));
2202 /* Allow input from processes between bursts of sending.
2203 Otherwise things may get stopped up. */
2208 XFASTINT (zero
) = 0;
2209 wait_reading_process_input (-1, 0, zero
, 0);
2215 XPROCESS (proc
)->raw_status_low
= Qnil
;
2216 XPROCESS (proc
)->raw_status_high
= Qnil
;
2217 XPROCESS (proc
)->status
= Fcons (Qexit
, Fcons (make_number (256), Qnil
));
2218 XSETINT (XPROCESS (proc
)->tick
, ++process_tick
);
2219 deactivate_process (proc
);
2221 error ("Error writing to process %s; closed it", procname
);
2223 error ("SIGPIPE raised on process %s; closed it", procname
);
2228 DEFUN ("process-send-region", Fprocess_send_region
, Sprocess_send_region
,
2230 "Send current contents of region as input to PROCESS.\n\
2231 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
2232 nil, indicating the current buffer's process.\n\
2233 Called from program, takes three arguments, PROCESS, START and END.\n\
2234 If the region is more than 500 characters long,\n\
2235 it is sent in several bunches. This may happen even for shorter regions.\n\
2236 Output from processes can arrive in between bunches.")
2237 (process
, start
, end
)
2238 Lisp_Object process
, start
, end
;
2243 proc
= get_process (process
);
2244 validate_region (&start
, &end
);
2246 if (XINT (start
) < GPT
&& XINT (end
) > GPT
)
2249 start1
= XINT (start
);
2250 send_process (proc
, &FETCH_CHAR (start1
), XINT (end
) - XINT (start
));
2255 DEFUN ("process-send-string", Fprocess_send_string
, Sprocess_send_string
,
2257 "Send PROCESS the contents of STRING as input.\n\
2258 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
2259 nil, indicating the current buffer's process.\n\
2260 If STRING is more than 500 characters long,\n\
2261 it is sent in several bunches. This may happen even for shorter strings.\n\
2262 Output from processes can arrive in between bunches.")
2264 Lisp_Object process
, string
;
2267 CHECK_STRING (string
, 1);
2268 proc
= get_process (process
);
2269 send_process (proc
, XSTRING (string
)->data
, XSTRING (string
)->size
);
2273 /* send a signal number SIGNO to PROCESS.
2274 CURRENT_GROUP means send to the process group that currently owns
2275 the terminal being used to communicate with PROCESS.
2276 This is used for various commands in shell mode.
2277 If NOMSG is zero, insert signal-announcements into process's buffers
2280 If we can, we try to signal PROCESS by sending control characters
2281 down the pipe. This allows us to signal inferiors who have changed
2282 their uid, for which killpg would return an EPERM error. */
2285 process_send_signal (process
, signo
, current_group
, nomsg
)
2286 Lisp_Object process
;
2288 Lisp_Object current_group
;
2292 register struct Lisp_Process
*p
;
2296 proc
= get_process (process
);
2297 p
= XPROCESS (proc
);
2299 if (!EQ (p
->childp
, Qt
))
2300 error ("Process %s is not a subprocess",
2301 XSTRING (p
->name
)->data
);
2302 if (!XFASTINT (p
->infd
))
2303 error ("Process %s is not active",
2304 XSTRING (p
->name
)->data
);
2306 if (NILP (p
->pty_flag
))
2307 current_group
= Qnil
;
2309 /* If we are using pgrps, get a pgrp number and make it negative. */
2310 if (!NILP (current_group
))
2312 #ifdef SIGNALS_VIA_CHARACTERS
2313 /* If possible, send signals to the entire pgrp
2314 by sending an input character to it. */
2316 /* TERMIOS is the latest and bestest, and seems most likely to
2317 work. If the system has it, use it. */
2324 tcgetattr (XFASTINT (p
->infd
), &t
);
2325 send_process (proc
, &t
.c_cc
[VINTR
], 1);
2329 tcgetattr (XFASTINT (p
->infd
), &t
);
2330 send_process (proc
, &t
.c_cc
[VQUIT
], 1);
2334 tcgetattr (XFASTINT (p
->infd
), &t
);
2336 send_process (proc
, &t
.c_cc
[VSWTCH
], 1);
2338 send_process (proc
, &t
.c_cc
[VSUSP
], 1);
2343 #else /* ! HAVE_TERMIOS */
2345 /* On Berkeley descendants, the following IOCTL's retrieve the
2346 current control characters. */
2347 #if defined (TIOCGLTC) && defined (TIOCGETC)
2355 ioctl (XFASTINT (p
->infd
), TIOCGETC
, &c
);
2356 send_process (proc
, &c
.t_intrc
, 1);
2359 ioctl (XFASTINT (p
->infd
), TIOCGETC
, &c
);
2360 send_process (proc
, &c
.t_quitc
, 1);
2364 ioctl (XFASTINT (p
->infd
), TIOCGLTC
, &lc
);
2365 send_process (proc
, &lc
.t_suspc
, 1);
2367 #endif /* ! defined (SIGTSTP) */
2370 #else /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
2372 /* On SYSV descendants, the TCGETA ioctl retrieves the current control
2379 ioctl (XFASTINT (p
->infd
), TCGETA
, &t
);
2380 send_process (proc
, &t
.c_cc
[VINTR
], 1);
2383 ioctl (XFASTINT (p
->infd
), TCGETA
, &t
);
2384 send_process (proc
, &t
.c_cc
[VQUIT
], 1);
2388 ioctl (XFASTINT (p
->infd
), TCGETA
, &t
);
2389 send_process (proc
, &t
.c_cc
[VSWTCH
], 1);
2391 #endif /* ! defined (SIGTSTP) */
2393 #else /* ! defined (TCGETA) */
2394 Your configuration files are messed up
.
2395 /* If your system configuration files define SIGNALS_VIA_CHARACTERS,
2396 you'd better be using one of the alternatives above! */
2397 #endif /* ! defined (TCGETA) */
2398 #endif /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
2399 #endif /* ! defined HAVE_TERMIOS */
2400 #endif /* ! defined (SIGNALS_VIA_CHARACTERS) */
2403 /* Get the pgrp using the tty itself, if we have that.
2404 Otherwise, use the pty to get the pgrp.
2405 On pfa systems, saka@pfu.fujitsu.co.JP writes:
2406 "TIOCGPGRP symbol defined in sys/ioctl.h at E50.
2407 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
2408 His patch indicates that if TIOCGPGRP returns an error, then
2409 we should just assume that p->pid is also the process group id. */
2413 if (!NILP (p
->subtty
))
2414 err
= ioctl (XFASTINT (p
->subtty
), TIOCGPGRP
, &gid
);
2416 err
= ioctl (XFASTINT (p
->infd
), TIOCGPGRP
, &gid
);
2420 gid
= - XFASTINT (p
->pid
);
2421 #endif /* ! defined (pfa) */
2427 #else /* ! defined (TIOCGPGRP ) */
2428 /* Can't select pgrps on this system, so we know that
2429 the child itself heads the pgrp. */
2430 gid
= - XFASTINT (p
->pid
);
2431 #endif /* ! defined (TIOCGPGRP ) */
2434 gid
= - XFASTINT (p
->pid
);
2440 p
->raw_status_low
= Qnil
;
2441 p
->raw_status_high
= Qnil
;
2443 XSETINT (p
->tick
, ++process_tick
);
2447 #endif /* ! defined (SIGCONT) */
2450 send_process (proc
, "\003", 1); /* ^C */
2455 send_process (proc
, "\031", 1); /* ^Y */
2460 sys$
forcex (&(XFASTINT (p
->pid
)), 0, 1);
2463 flush_pending_output (XFASTINT (p
->infd
));
2467 /* If we don't have process groups, send the signal to the immediate
2468 subprocess. That isn't really right, but it's better than any
2469 obvious alternative. */
2472 kill (XFASTINT (p
->pid
), signo
);
2476 /* gid may be a pid, or minus a pgrp's number */
2478 if (!NILP (current_group
))
2479 ioctl (XFASTINT (p
->infd
), TIOCSIGSEND
, signo
);
2482 gid
= - XFASTINT (p
->pid
);
2485 #else /* ! defined (TIOCSIGSEND) */
2486 EMACS_KILLPG (-gid
, signo
);
2487 #endif /* ! defined (TIOCSIGSEND) */
2490 DEFUN ("interrupt-process", Finterrupt_process
, Sinterrupt_process
, 0, 2, 0,
2491 "Interrupt process PROCESS. May be process or name of one.\n\
2492 PROCESS may be a process, a buffer, or the name of a process or buffer.\n\
2493 Nil or no arg means current buffer's process.\n\
2494 Second arg CURRENT-GROUP non-nil means send signal to\n\
2495 the current process-group of the process's controlling terminal\n\
2496 rather than to the process's own process group.\n\
2497 If the process is a shell, this means interrupt current subjob\n\
2498 rather than the shell.")
2499 (process
, current_group
)
2500 Lisp_Object process
, current_group
;
2502 process_send_signal (process
, SIGINT
, current_group
, 0);
2506 DEFUN ("kill-process", Fkill_process
, Skill_process
, 0, 2, 0,
2507 "Kill process PROCESS. May be process or name of one.\n\
2508 See function `interrupt-process' for more details on usage.")
2509 (process
, current_group
)
2510 Lisp_Object process
, current_group
;
2512 process_send_signal (process
, SIGKILL
, current_group
, 0);
2516 DEFUN ("quit-process", Fquit_process
, Squit_process
, 0, 2, 0,
2517 "Send QUIT signal to process PROCESS. May be process or name of one.\n\
2518 See function `interrupt-process' for more details on usage.")
2519 (process
, current_group
)
2520 Lisp_Object process
, current_group
;
2522 process_send_signal (process
, SIGQUIT
, current_group
, 0);
2526 DEFUN ("stop-process", Fstop_process
, Sstop_process
, 0, 2, 0,
2527 "Stop process PROCESS. May be process or name of one.\n\
2528 See function `interrupt-process' for more details on usage.")
2529 (process
, current_group
)
2530 Lisp_Object process
, current_group
;
2533 error ("no SIGTSTP support");
2535 process_send_signal (process
, SIGTSTP
, current_group
, 0);
2540 DEFUN ("continue-process", Fcontinue_process
, Scontinue_process
, 0, 2, 0,
2541 "Continue process PROCESS. May be process or name of one.\n\
2542 See function `interrupt-process' for more details on usage.")
2543 (process
, current_group
)
2544 Lisp_Object process
, current_group
;
2547 process_send_signal (process
, SIGCONT
, current_group
, 0);
2549 error ("no SIGCONT support");
2554 DEFUN ("signal-process", Fsignal_process
, Ssignal_process
,
2555 2, 2, "nProcess number: \nnSignal code: ",
2556 "Send the process with number PID the signal with code CODE.\n\
2557 Both PID and CODE are integers.")
2559 Lisp_Object pid
, sig
;
2561 CHECK_NUMBER (pid
, 0);
2562 CHECK_NUMBER (sig
, 1);
2563 return make_number (kill (XINT (pid
), XINT (sig
)));
2566 DEFUN ("process-send-eof", Fprocess_send_eof
, Sprocess_send_eof
, 0, 1, 0,
2567 "Make PROCESS see end-of-file in its input.\n\
2568 Eof comes after any text already sent to it.\n\
2569 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
2570 nil, indicating the current buffer's process.")
2572 Lisp_Object process
;
2576 proc
= get_process (process
);
2578 /* Make sure the process is really alive. */
2579 if (! NILP (XPROCESS (proc
)->raw_status_low
))
2580 update_status (XPROCESS (proc
));
2581 if (! EQ (XPROCESS (proc
)->status
, Qrun
))
2582 error ("Process %s not running", XSTRING (XPROCESS (proc
)->name
)->data
);
2584 /* Sending a zero-length record is supposed to mean eof
2585 when TIOCREMOTE is turned on. */
2589 write (XFASTINT (XPROCESS (proc
)->outfd
), buf
, 0);
2591 #else /* did not do TOICREMOTE */
2593 send_process (proc
, "\032", 1); /* ^z */
2595 if (!NILP (XPROCESS (proc
)->pty_flag
))
2596 send_process (proc
, "\004", 1);
2599 close (XPROCESS (proc
)->outfd
);
2600 XFASTINT (XPROCESS (proc
)->outfd
) = open (NULL_DEVICE
, O_WRONLY
);
2603 #endif /* did not do TOICREMOTE */
2607 /* Kill all processes associated with `buffer'.
2608 If `buffer' is nil, kill all processes */
2610 kill_buffer_processes (buffer
)
2613 Lisp_Object tail
, proc
;
2615 for (tail
= Vprocess_alist
; XGCTYPE (tail
) == Lisp_Cons
;
2616 tail
= XCONS (tail
)->cdr
)
2618 proc
= XCONS (XCONS (tail
)->car
)->cdr
;
2619 if (XGCTYPE (proc
) == Lisp_Process
2620 && (NILP (buffer
) || EQ (XPROCESS (proc
)->buffer
, buffer
)))
2622 if (NETCONN_P (proc
))
2623 deactivate_process (proc
);
2624 else if (XFASTINT (XPROCESS (proc
)->infd
))
2625 process_send_signal (proc
, SIGHUP
, Qnil
, 1);
2630 /* On receipt of a signal that a child status has changed,
2631 loop asking about children with changed statuses until
2632 the system says there are no more.
2633 All we do is change the status;
2634 we do not run sentinels or print notifications.
2635 That is saved for the next time keyboard input is done,
2636 in order to avoid timing errors. */
2638 /** WARNING: this can be called during garbage collection.
2639 Therefore, it must not be fooled by the presence of mark bits in
2642 /** USG WARNING: Although it is not obvious from the documentation
2643 in signal(2), on a USG system the SIGCLD handler MUST NOT call
2644 signal() before executing at least one wait(), otherwise the handler
2645 will be called again, resulting in an infinite loop. The relevant
2646 portion of the documentation reads "SIGCLD signals will be queued
2647 and the signal-catching function will be continually reentered until
2648 the queue is empty". Invoking signal() causes the kernel to reexamine
2649 the SIGCLD queue. Fred Fish, UniSoft Systems Inc. */
2652 sigchld_handler (signo
)
2655 int old_errno
= errno
;
2657 register struct Lisp_Process
*p
;
2658 extern EMACS_TIME
*input_available_clear_time
;
2662 sigheld
|= sigbit (SIGCHLD
);
2674 #endif /* no WUNTRACED */
2675 /* Keep trying to get a status until we get a definitive result. */
2679 pid
= wait3 (&w
, WNOHANG
| WUNTRACED
, 0);
2681 while (pid
<= 0 && errno
== EINTR
);
2685 /* A real failure. We have done all our job, so return. */
2687 /* USG systems forget handlers when they are used;
2688 must reestablish each time */
2690 signal (signo
, sigchld_handler
); /* WARNING - must come after wait3() */
2693 sigheld
&= ~sigbit (SIGCHLD
);
2701 #endif /* no WNOHANG */
2703 /* Find the process that signaled us, and record its status. */
2706 for (tail
= Vprocess_alist
; XSYMBOL (tail
) != XSYMBOL (Qnil
); tail
= XCONS (tail
)->cdr
)
2708 proc
= XCONS (XCONS (tail
)->car
)->cdr
;
2709 p
= XPROCESS (proc
);
2710 if (EQ (p
->childp
, Qt
) && XFASTINT (p
->pid
) == pid
)
2715 /* Look for an asynchronous process whose pid hasn't been filled
2718 for (tail
= Vprocess_alist
; XSYMBOL (tail
) != XSYMBOL (Qnil
); tail
= XCONS (tail
)->cdr
)
2720 proc
= XCONS (XCONS (tail
)->car
)->cdr
;
2721 p
= XPROCESS (proc
);
2722 if (XTYPE (p
->pid
) == Lisp_Int
&& XINT (p
->pid
) == -1)
2727 /* Change the status of the process that was found. */
2730 union { int i
; WAITTYPE wt
; } u
;
2732 XSETINT (p
->tick
, ++process_tick
);
2734 XFASTINT (p
->raw_status_low
) = u
.i
& 0xffff;
2735 XFASTINT (p
->raw_status_high
) = u
.i
>> 16;
2737 /* If process has terminated, stop waiting for its output. */
2738 if (WIFSIGNALED (w
) || WIFEXITED (w
))
2739 if (XFASTINT (p
->infd
))
2740 FD_CLR (XFASTINT (p
->infd
), &input_wait_mask
);
2742 /* Tell wait_reading_process_input that it needs to wake up and
2744 if (input_available_clear_time
)
2745 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
2748 /* There was no asynchronous process found for that id. Check
2749 if we have a synchronous process. */
2752 synch_process_alive
= 0;
2754 /* Report the status of the synchronous process. */
2756 synch_process_retcode
= WRETCODE (w
);
2757 else if (WIFSIGNALED (w
))
2759 synch_process_death
= sys_siglist
[WTERMSIG (w
)];
2761 synch_process_death
= sys_errlist
[WTERMSIG (w
)];
2764 /* Tell wait_reading_process_input that it needs to wake up and
2766 if (input_available_clear_time
)
2767 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
2770 /* On some systems, we must return right away.
2771 If any more processes want to signal us, we will
2773 Otherwise (on systems that have WNOHANG), loop around
2774 to use up all the processes that have something to tell us. */
2775 #if defined (USG) && ! (defined (HPUX) && defined (WNOHANG))
2777 signal (signo
, sigchld_handler
);
2781 #endif /* USG, but not HPUX with WNOHANG */
2787 exec_sentinel_unwind (data
)
2790 XPROCESS (XCONS (data
)->car
)->sentinel
= XCONS (data
)->cdr
;
2795 exec_sentinel (proc
, reason
)
2796 Lisp_Object proc
, reason
;
2798 Lisp_Object sentinel
;
2799 register struct Lisp_Process
*p
= XPROCESS (proc
);
2800 int count
= specpdl_ptr
- specpdl
;
2802 sentinel
= p
->sentinel
;
2803 if (NILP (sentinel
))
2806 /* Zilch the sentinel while it's running, to avoid recursive invocations;
2807 assure that it gets restored no matter how the sentinel exits. */
2809 record_unwind_protect (exec_sentinel_unwind
, Fcons (proc
, sentinel
));
2810 /* Inhibit quit so that random quits don't screw up a running filter. */
2811 specbind (Qinhibit_quit
, Qt
);
2812 call2 (sentinel
, proc
, reason
);
2816 /* Report all recent events of a change in process status
2817 (either run the sentinel or output a message).
2818 This is done while Emacs is waiting for keyboard input. */
2822 register Lisp_Object proc
, buffer
;
2823 Lisp_Object tail
= Qnil
;
2824 Lisp_Object msg
= Qnil
;
2825 struct gcpro gcpro1
, gcpro2
;
2827 /* We need to gcpro tail; if read_process_output calls a filter
2828 which deletes a process and removes the cons to which tail points
2829 from Vprocess_alist, and then causes a GC, tail is an unprotected
2833 for (tail
= Vprocess_alist
; !NILP (tail
); tail
= Fcdr (tail
))
2836 register struct Lisp_Process
*p
;
2838 proc
= Fcdr (Fcar (tail
));
2839 p
= XPROCESS (proc
);
2841 if (XINT (p
->tick
) != XINT (p
->update_tick
))
2843 XSETINT (p
->update_tick
, XINT (p
->tick
));
2845 /* If process is still active, read any output that remains. */
2846 if (XFASTINT (p
->infd
))
2847 while (read_process_output (proc
, XFASTINT (p
->infd
)) > 0);
2851 /* Get the text to use for the message. */
2852 if (!NILP (p
->raw_status_low
))
2854 msg
= status_message (p
->status
);
2856 /* If process is terminated, deactivate it or delete it. */
2858 if (XTYPE (p
->status
) == Lisp_Cons
)
2859 symbol
= XCONS (p
->status
)->car
;
2861 if (EQ (symbol
, Qsignal
) || EQ (symbol
, Qexit
)
2862 || EQ (symbol
, Qclosed
))
2864 if (delete_exited_processes
)
2865 remove_process (proc
);
2867 deactivate_process (proc
);
2870 /* Now output the message suitably. */
2871 if (!NILP (p
->sentinel
))
2872 exec_sentinel (proc
, msg
);
2873 /* Don't bother with a message in the buffer
2874 when a process becomes runnable. */
2875 else if (!EQ (symbol
, Qrun
) && !NILP (buffer
))
2877 Lisp_Object ro
= XBUFFER (buffer
)->read_only
;
2879 struct buffer
*old
= current_buffer
;
2882 /* Avoid error if buffer is deleted
2883 (probably that's why the process is dead, too) */
2884 if (NILP (XBUFFER (buffer
)->name
))
2886 Fset_buffer (buffer
);
2888 /* Insert new output into buffer
2889 at the current end-of-output marker,
2890 thus preserving logical ordering of input and output. */
2891 if (XMARKER (p
->mark
)->buffer
)
2892 SET_PT (marker_position (p
->mark
));
2895 if (point
<= opoint
)
2896 opoint
+= XSTRING (msg
)->size
+ XSTRING (p
->name
)->size
+ 10;
2898 tem
= current_buffer
->read_only
;
2899 current_buffer
->read_only
= Qnil
;
2900 insert_string ("\nProcess ");
2901 Finsert (1, &p
->name
);
2902 insert_string (" ");
2904 current_buffer
->read_only
= tem
;
2905 Fset_marker (p
->mark
, make_number (point
), p
->buffer
);
2908 set_buffer_internal (old
);
2913 update_mode_lines
++; /* in case buffers use %s in mode-line-format */
2914 redisplay_preserve_echo_area ();
2916 update_tick
= process_tick
;
2927 if (! noninteractive
|| initialized
)
2929 signal (SIGCHLD
, sigchld_handler
);
2932 FD_ZERO (&input_wait_mask
);
2933 FD_SET (0, &input_wait_mask
);
2934 Vprocess_alist
= Qnil
;
2935 for (i
= 0; i
< MAXDESC
; i
++)
2937 chan_process
[i
] = Qnil
;
2938 proc_buffered_char
[i
] = -1;
2942 DEFUN ("process-connection", Fprocess_connection
, Sprocess_connection
, 0, 1, 0,
2943 "Return the connection type of `PROCESS'. This can be nil (pipe),\n\
2944 t or pty (pty) or stream (socket connection).")
2946 Lisp_Object process
;
2948 return XPROCESS (process
)->type
;
2954 stream_process
= intern ("stream");
2956 Qprocessp
= intern ("processp");
2957 staticpro (&Qprocessp
);
2958 Qrun
= intern ("run");
2960 Qstop
= intern ("stop");
2962 Qsignal
= intern ("signal");
2963 staticpro (&Qsignal
);
2965 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
2968 Qexit = intern ("exit");
2969 staticpro (&Qexit); */
2971 Qopen
= intern ("open");
2973 Qclosed
= intern ("closed");
2974 staticpro (&Qclosed
);
2976 staticpro (&Vprocess_alist
);
2978 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes
,
2979 "*Non-nil means delete processes immediately when they exit.\n\
2980 nil means don't delete them until `list-processes' is run.");
2982 delete_exited_processes
= 1;
2984 DEFVAR_LISP ("process-connection-type", &Vprocess_connection_type
,
2985 "Control type of device used to communicate with subprocesses.\n\
2986 Values are nil to use a pipe, and t or 'pty for a pty. Note that if\n\
2987 pty's are not available, this variable will be ignored. The value takes\n\
2988 effect when `start-process' is called.");
2989 Vprocess_connection_type
= Qt
;
2991 defsubr (&Sprocessp
);
2992 defsubr (&Sget_process
);
2993 defsubr (&Sget_buffer_process
);
2994 defsubr (&Sdelete_process
);
2995 defsubr (&Sprocess_status
);
2996 defsubr (&Sprocess_exit_status
);
2997 defsubr (&Sprocess_id
);
2998 defsubr (&Sprocess_name
);
2999 defsubr (&Sprocess_command
);
3000 defsubr (&Sset_process_buffer
);
3001 defsubr (&Sprocess_buffer
);
3002 defsubr (&Sprocess_mark
);
3003 defsubr (&Sset_process_filter
);
3004 defsubr (&Sprocess_filter
);
3005 defsubr (&Sset_process_sentinel
);
3006 defsubr (&Sprocess_sentinel
);
3007 defsubr (&Sprocess_kill_without_query
);
3008 defsubr (&Slist_processes
);
3009 defsubr (&Sprocess_list
);
3010 defsubr (&Sstart_process
);
3012 defsubr (&Sopen_network_stream
);
3013 #endif /* HAVE_SOCKETS */
3014 defsubr (&Saccept_process_output
);
3015 defsubr (&Sprocess_send_region
);
3016 defsubr (&Sprocess_send_string
);
3017 defsubr (&Sinterrupt_process
);
3018 defsubr (&Skill_process
);
3019 defsubr (&Squit_process
);
3020 defsubr (&Sstop_process
);
3021 defsubr (&Scontinue_process
);
3022 defsubr (&Sprocess_send_eof
);
3023 defsubr (&Ssignal_process
);
3024 defsubr (&Swaiting_for_user_input_p
);
3025 /* defsubr (&Sprocess_connection); */
3029 #else /* not subprocesses */
3031 #include <sys/types.h>
3035 #include "systime.h"
3036 #include "termopts.h"
3038 extern int frame_garbaged
;
3041 /* As described above, except assuming that there are no subprocesses:
3043 Wait for timeout to elapse and/or keyboard input to be available.
3046 timeout in seconds, or
3047 zero for no limit, or
3048 -1 means gobble data immediately available but don't wait for any.
3050 read_kbd is a Lisp_Object:
3051 0 to ignore keyboard input, or
3052 1 to return when input is available, or
3053 -1 means caller will actually read the input, so don't throw to
3055 We know that read_kbd will never be a Lisp_Process, since
3056 `subprocesses' isn't defined.
3058 do_display != 0 means redisplay should be done to show subprocess
3059 output that arrives. This version of the function ignores it.
3061 Return true iff we recieved input from any process. */
3064 wait_reading_process_input (time_limit
, microsecs
, read_kbd
, do_display
)
3065 int time_limit
, microsecs
;
3066 Lisp_Object read_kbd
;
3069 EMACS_TIME end_time
, timeout
, *timeout_p
;
3072 /* What does time_limit really mean? */
3073 if (time_limit
|| microsecs
)
3075 /* It's not infinite. */
3076 timeout_p
= &timeout
;
3078 if (time_limit
== -1)
3079 /* In fact, it's zero. */
3080 EMACS_SET_SECS_USECS (timeout
, 0, 0);
3082 EMACS_SET_SECS_USECS (timeout
, time_limit
, microsecs
);
3084 /* How far in the future is that? */
3085 EMACS_GET_TIME (end_time
);
3086 EMACS_ADD_TIME (end_time
, end_time
, timeout
);
3089 /* It's infinite. */
3092 /* Turn off periodic alarms (in case they are in use)
3093 because the select emulator uses alarms. */
3100 waitchannels
= XINT (read_kbd
) ? 1 : 0;
3102 /* If calling from keyboard input, do not quit
3103 since we want to return C-g as an input character.
3104 Otherwise, do pending quit if requested. */
3105 if (XINT (read_kbd
) >= 0)
3110 EMACS_GET_TIME (*timeout_p
);
3111 EMACS_SUB_TIME (*timeout_p
, end_time
, *timeout_p
);
3112 if (EMACS_TIME_NEG_P (*timeout_p
))
3116 /* Cause C-g and alarm signals to take immediate action,
3117 and cause input available signals to zero out timeout. */
3118 if (XINT (read_kbd
) < 0)
3119 set_waiting_for_input (&timeout
);
3121 /* If a frame has been newly mapped and needs updating,
3122 reprocess its display stuff. */
3124 redisplay_preserve_echo_area ();
3126 if (XINT (read_kbd
) && detect_input_pending ())
3129 nfds
= select (1, &waitchannels
, 0, 0, timeout_p
);
3131 /* Make C-g and alarm signals set flags again */
3132 clear_waiting_for_input ();
3134 /* If we woke up due to SIGWINCH, actually change size now. */
3135 do_pending_window_change ();
3139 /* If the system call was interrupted, then go around the
3145 else if (nfds
> 0 && (waitchannels
& 1) && interrupt_input
)
3146 /* System sometimes fails to deliver SIGIO. */
3147 kill (getpid (), SIGIO
);
3149 if (XINT (read_kbd
) && interrupt_input
&& (waitchannels
& 1))
3152 /* If we have timed out (nfds == 0) or found some input (nfds > 0),
3164 DEFUN ("get-buffer-process", Fget_buffer_process
, Sget_buffer_process
, 1, 1, 0,
3165 "Return the (or, a) process associated with BUFFER.\n\
3166 This copy of Emacs has not been built to support subprocesses, so this\n\
3167 function always returns nil.")
3169 register Lisp_Object name
;
3174 /* Kill all processes associated with `buffer'.
3175 If `buffer' is nil, kill all processes.
3176 Since we have no subprocesses, this does nothing. */
3178 kill_buffer_processes (buffer
)
3189 defsubr (&Sget_buffer_process
);
3193 #endif /* not subprocesses */