(Fprocess_status): Use get_process, not Fget_process.
[bpt/emacs.git] / src / process.c
CommitLineData
d0d6b7c5 1/* Asynchronous subprocess control for GNU Emacs.
c6c5df7f 2 Copyright (C) 1985, 1986, 1987, 1988, 1993 Free Software Foundation, Inc.
d0d6b7c5
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
1dc77cc3 8the Free Software Foundation; either version 2, or (at your option)
d0d6b7c5
JB
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
18the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20
21#include <signal.h>
22
18160b98 23#include <config.h>
d0d6b7c5 24
6720a7fb
JB
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. */
31
32\f
d0d6b7c5 33#ifdef subprocesses
d0d6b7c5
JB
34
35#include <stdio.h>
36#include <errno.h>
37#include <setjmp.h>
38#include <sys/types.h> /* some typedefs are used in sys/file.h */
39#include <sys/file.h>
40#include <sys/stat.h>
41
42#ifdef HAVE_SOCKETS /* TCP connection support, if kernel can do it */
43#include <sys/socket.h>
44#include <netdb.h>
45#include <netinet/in.h>
46#include <arpa/inet.h>
47#endif /* HAVE_SOCKETS */
48
1d2c16fa
RS
49/* TERM is a poor-man's SLIP, used on Linux. */
50#ifdef TERM
51#include <client.h>
52#endif
53
79967d5e
RS
54/* DGUX inet_addr returns a 'struct in_addr'. */
55#ifdef DGUX
56#define IN_ADDR struct in_addr
57#define NUMERIC_ADDR_ERROR (numeric_addr.s_addr == -1)
58#else
59#define IN_ADDR unsigned long
60#define NUMERIC_ADDR_ERROR (numeric_addr == -1)
61#endif
62
d0d6b7c5
JB
63#if defined(BSD) || defined(STRIDE)
64#include <sys/ioctl.h>
0ad77c54 65#if !defined (O_NDELAY) && defined (HAVE_PTYS) && !defined(USG5)
d0d6b7c5
JB
66#include <fcntl.h>
67#endif /* HAVE_PTYS and no O_NDELAY */
68#endif /* BSD or STRIDE */
d0d6b7c5 69
99e3d726
RS
70#ifdef BROKEN_O_NONBLOCK
71#undef O_NONBLOCK
72#endif /* BROKEN_O_NONBLOCK */
73
d0d6b7c5
JB
74#ifdef NEED_BSDTTY
75#include <bsdtty.h>
76#endif
77
d0d6b7c5
JB
78#ifdef IRIS
79#include <sys/sysmacros.h> /* for "minor" */
80#endif /* not IRIS */
81
82#include "systime.h"
36ebaafa 83#include "systty.h"
d0d6b7c5
JB
84
85#include "lisp.h"
86#include "window.h"
87#include "buffer.h"
88#include "process.h"
89#include "termhooks.h"
90#include "termopts.h"
91#include "commands.h"
1dc77cc3 92#include "frame.h"
d0d6b7c5 93
dd2281ae 94Lisp_Object Qprocessp;
d0d6b7c5
JB
95Lisp_Object Qrun, Qstop, Qsignal, Qopen, Qclosed;
96/* Qexit is declared and initialized in eval.c. */
97
98/* a process object is a network connection when its childp field is neither
99 Qt nor Qnil but is instead a string (name of foreign host we
100 are connected to + name of port we are connected to) */
101
102#ifdef HAVE_SOCKETS
103static Lisp_Object stream_process;
104
105#define NETCONN_P(p) (XGCTYPE (XPROCESS (p)->childp) == Lisp_String)
106#else
107#define NETCONN_P(p) 0
108#endif /* HAVE_SOCKETS */
109
110/* Define first descriptor number available for subprocesses. */
111#ifdef VMS
112#define FIRST_PROC_DESC 1
113#else /* Not VMS */
114#define FIRST_PROC_DESC 3
115#endif
116
117/* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
118 testing SIGCHLD. */
119
120#if !defined (SIGCHLD) && defined (SIGCLD)
121#define SIGCHLD SIGCLD
122#endif /* SIGCLD */
123
124#include "syssignal.h"
125
889255b4 126#include "syswait.h"
d0d6b7c5
JB
127
128extern errno;
129extern sys_nerr;
130extern char *sys_errlist[];
131
132#ifndef VMS
133#ifndef BSD4_1
084fd64a 134#ifndef LINUX
d0d6b7c5 135extern char *sys_siglist[];
084fd64a 136#endif
d0d6b7c5
JB
137#else
138char *sys_siglist[] =
139 {
140 "bum signal!!",
141 "hangup",
142 "interrupt",
143 "quit",
144 "illegal instruction",
145 "trace trap",
146 "iot instruction",
147 "emt instruction",
148 "floating point exception",
149 "kill",
150 "bus error",
151 "segmentation violation",
152 "bad argument to system call",
153 "write on a pipe with no one to read it",
154 "alarm clock",
155 "software termination signal from kill",
156 "status signal",
157 "sendable stop signal not from tty",
158 "stop signal from tty",
159 "continue a stopped process",
160 "child status has changed",
161 "background read attempted from control tty",
162 "background write attempted from control tty",
163 "input record available at control tty",
164 "exceeded CPU time limit",
165 "exceeded file size limit"
166 };
167#endif
168#endif /* VMS */
169
d0d6b7c5
JB
170/* t means use pty, nil means use a pipe,
171 maybe other values to come. */
dd2281ae 172static Lisp_Object Vprocess_connection_type;
d0d6b7c5
JB
173
174#ifdef SKTPAIR
175#ifndef HAVE_SOCKETS
176#include <sys/socket.h>
177#endif
178#endif /* SKTPAIR */
179
180/* Number of events of change of status of a process. */
dd2281ae 181static int process_tick;
d0d6b7c5
JB
182
183/* Number of events for which the user or sentinel has been notified. */
dd2281ae 184static int update_tick;
d0d6b7c5
JB
185
186#ifdef FD_SET
187/* We could get this from param.h, but better not to depend on finding that.
188 And better not to risk that it might define other symbols used in this
189 file. */
334c4f2f
RS
190#ifdef FD_SETSIZE
191#define MAXDESC FD_SETSIZE
192#else
d0d6b7c5 193#define MAXDESC 64
334c4f2f 194#endif
d0d6b7c5
JB
195#define SELECT_TYPE fd_set
196#else /* no FD_SET */
197#define MAXDESC 32
198#define SELECT_TYPE int
199
200/* Define the macros to access a single-int bitmap of descriptors. */
201#define FD_SET(n, p) (*(p) |= (1 << (n)))
202#define FD_CLR(n, p) (*(p) &= ~(1 << (n)))
203#define FD_ISSET(n, p) (*(p) & (1 << (n)))
204#define FD_ZERO(p) (*(p) = 0)
205#endif /* no FD_SET */
206
207/* Mask of bits indicating the descriptors that we wait for input on */
208
dd2281ae
RS
209static SELECT_TYPE input_wait_mask;
210
211/* Descriptor to use for keyboard input. */
212static int keyboard_descriptor;
d0d6b7c5 213
dd2281ae
RS
214/* Nonzero means delete a process right away if it exits. */
215static int delete_exited_processes;
d0d6b7c5
JB
216
217/* Indexed by descriptor, gives the process (if any) for that descriptor */
dd2281ae 218static Lisp_Object chan_process[MAXDESC];
d0d6b7c5
JB
219
220/* Alist of elements (NAME . PROCESS) */
dd2281ae 221static Lisp_Object Vprocess_alist;
d0d6b7c5
JB
222
223/* Buffered-ahead input char from process, indexed by channel.
224 -1 means empty (no char is buffered).
225 Used on sys V where the only way to tell if there is any
226 output from the process is to read at least one char.
227 Always -1 on systems that support FIONREAD. */
228
dd2281ae
RS
229static int proc_buffered_char[MAXDESC];
230
231static Lisp_Object get_process ();
d0d6b7c5
JB
232\f
233/* Compute the Lisp form of the process status, p->status, from
234 the numeric status that was returned by `wait'. */
235
f9738840
JB
236Lisp_Object status_convert ();
237
d0d6b7c5
JB
238update_status (p)
239 struct Lisp_Process *p;
240{
241 union { int i; WAITTYPE wt; } u;
242 u.i = XFASTINT (p->raw_status_low) + (XFASTINT (p->raw_status_high) << 16);
243 p->status = status_convert (u.wt);
244 p->raw_status_low = Qnil;
245 p->raw_status_high = Qnil;
246}
247
91d10fa8 248/* Convert a process status word in Unix format to
d0d6b7c5
JB
249 the list that we use internally. */
250
251Lisp_Object
252status_convert (w)
253 WAITTYPE w;
254{
255 if (WIFSTOPPED (w))
256 return Fcons (Qstop, Fcons (make_number (WSTOPSIG (w)), Qnil));
257 else if (WIFEXITED (w))
258 return Fcons (Qexit, Fcons (make_number (WRETCODE (w)),
259 WCOREDUMP (w) ? Qt : Qnil));
260 else if (WIFSIGNALED (w))
261 return Fcons (Qsignal, Fcons (make_number (WTERMSIG (w)),
262 WCOREDUMP (w) ? Qt : Qnil));
263 else
264 return Qrun;
265}
266
267/* Given a status-list, extract the three pieces of information
268 and store them individually through the three pointers. */
269
270void
271decode_status (l, symbol, code, coredump)
272 Lisp_Object l;
273 Lisp_Object *symbol;
274 int *code;
275 int *coredump;
276{
277 Lisp_Object tem;
278
279 if (XTYPE (l) == Lisp_Symbol)
280 {
281 *symbol = l;
282 *code = 0;
283 *coredump = 0;
284 }
285 else
286 {
287 *symbol = XCONS (l)->car;
288 tem = XCONS (l)->cdr;
289 *code = XFASTINT (XCONS (tem)->car);
f9738840 290 tem = XCONS (tem)->cdr;
d0d6b7c5
JB
291 *coredump = !NILP (tem);
292 }
293}
294
295/* Return a string describing a process status list. */
296
297Lisp_Object
298status_message (status)
299 Lisp_Object status;
300{
301 Lisp_Object symbol;
302 int code, coredump;
303 Lisp_Object string, string2;
304
305 decode_status (status, &symbol, &code, &coredump);
306
307 if (EQ (symbol, Qsignal) || EQ (symbol, Qstop))
308 {
b0310da4 309#ifndef VMS
d0d6b7c5 310 string = build_string (code < NSIG ? sys_siglist[code] : "unknown");
b0310da4
JB
311#else
312 string = build_string (code < NSIG ? sys_errlist[code] : "unknown");
313#endif
d0d6b7c5
JB
314 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
315 XSTRING (string)->data[0] = DOWNCASE (XSTRING (string)->data[0]);
316 return concat2 (string, string2);
317 }
318 else if (EQ (symbol, Qexit))
319 {
320 if (code == 0)
321 return build_string ("finished\n");
f2980264 322 string = Fnumber_to_string (make_number (code));
d0d6b7c5
JB
323 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
324 return concat2 (build_string ("exited abnormally with code "),
325 concat2 (string, string2));
326 }
327 else
328 return Fcopy_sequence (Fsymbol_name (symbol));
329}
330\f
331#ifdef HAVE_PTYS
d0d6b7c5
JB
332
333/* Open an available pty, returning a file descriptor.
334 Return -1 on failure.
335 The file name of the terminal corresponding to the pty
336 is left in the variable pty_name. */
337
338char pty_name[24];
339
340int
341allocate_pty ()
342{
343 struct stat stb;
344 register c, i;
345 int fd;
346
32676c08
JB
347 /* Some systems name their pseudoterminals so that there are gaps in
348 the usual sequence - for example, on HP9000/S700 systems, there
349 are no pseudoterminals with names ending in 'f'. So we wait for
350 three failures in a row before deciding that we've reached the
351 end of the ptys. */
352 int failed_count = 0;
353
d0d6b7c5
JB
354#ifdef PTY_ITERATION
355 PTY_ITERATION
356#else
357 for (c = FIRST_PTY_LETTER; c <= 'z'; c++)
358 for (i = 0; i < 16; i++)
359#endif
360 {
361#ifdef PTY_NAME_SPRINTF
362 PTY_NAME_SPRINTF
d0d6b7c5
JB
363#else
364 sprintf (pty_name, "/dev/pty%c%x", c, i);
d0d6b7c5
JB
365#endif /* no PTY_NAME_SPRINTF */
366
4d7c105e
RS
367#ifdef PTY_OPEN
368 PTY_OPEN;
369#else /* no PTY_OPEN */
32676c08
JB
370#ifdef IRIS
371 /* Unusual IRIS code */
372 *ptyv = open ("/dev/ptc", O_RDWR | O_NDELAY, 0);
373 if (fd < 0)
374 return -1;
375 if (fstat (fd, &stb) < 0)
d0d6b7c5 376 return -1;
4d7c105e 377#else /* not IRIS */
32676c08
JB
378 if (stat (pty_name, &stb) < 0)
379 {
380 failed_count++;
381 if (failed_count >= 3)
382 return -1;
383 }
384 else
385 failed_count = 0;
d0d6b7c5
JB
386#ifdef O_NONBLOCK
387 fd = open (pty_name, O_RDWR | O_NONBLOCK, 0);
388#else
389 fd = open (pty_name, O_RDWR | O_NDELAY, 0);
390#endif
4d7c105e
RS
391#endif /* not IRIS */
392#endif /* no PTY_OPEN */
d0d6b7c5
JB
393
394 if (fd >= 0)
395 {
396 /* check to make certain that both sides are available
397 this avoids a nasty yet stupid bug in rlogins */
398#ifdef PTY_TTY_NAME_SPRINTF
399 PTY_TTY_NAME_SPRINTF
d0d6b7c5
JB
400#else
401 sprintf (pty_name, "/dev/tty%c%x", c, i);
d0d6b7c5
JB
402#endif /* no PTY_TTY_NAME_SPRINTF */
403#ifndef UNIPLUS
404 if (access (pty_name, 6) != 0)
405 {
406 close (fd);
fad97cbe 407#if !defined(IRIS) && !defined(__sgi)
d0d6b7c5
JB
408 continue;
409#else
410 return -1;
411#endif /* IRIS */
412 }
413#endif /* not UNIPLUS */
414 setup_pty (fd);
415 return fd;
416 }
417 }
418 return -1;
419}
420#endif /* HAVE_PTYS */
421\f
422Lisp_Object
423make_process (name)
424 Lisp_Object name;
425{
426 register Lisp_Object val, tem, name1;
427 register struct Lisp_Process *p;
428 char suffix[10];
429 register int i;
430
431 /* size of process structure includes the vector header,
432 so deduct for that. But struct Lisp_Vector includes the first
433 element, thus deducts too much, so add it back. */
434 val = Fmake_vector (make_number ((sizeof (struct Lisp_Process)
435 - sizeof (struct Lisp_Vector)
436 + sizeof (Lisp_Object))
437 / sizeof (Lisp_Object)),
438 Qnil);
439 XSETTYPE (val, Lisp_Process);
440
441 p = XPROCESS (val);
a9f2c884
RS
442 XSET (p->infd, Lisp_Int, -1);
443 XSET (p->outfd, Lisp_Int, -1);
d0d6b7c5
JB
444 XFASTINT (p->pid) = 0;
445 XFASTINT (p->tick) = 0;
446 XFASTINT (p->update_tick) = 0;
447 p->raw_status_low = Qnil;
448 p->raw_status_high = Qnil;
449 p->status = Qrun;
450 p->mark = Fmake_marker ();
451
452 /* If name is already in use, modify it until it is unused. */
453
454 name1 = name;
455 for (i = 1; ; i++)
456 {
457 tem = Fget_process (name1);
458 if (NILP (tem)) break;
459 sprintf (suffix, "<%d>", i);
460 name1 = concat2 (name, build_string (suffix));
461 }
462 name = name1;
463 p->name = name;
464 Vprocess_alist = Fcons (Fcons (name, val), Vprocess_alist);
465 return val;
466}
467
468remove_process (proc)
469 register Lisp_Object proc;
470{
471 register Lisp_Object pair;
472
473 pair = Frassq (proc, Vprocess_alist);
474 Vprocess_alist = Fdelq (pair, Vprocess_alist);
475 Fset_marker (XPROCESS (proc)->mark, Qnil, Qnil);
476
477 deactivate_process (proc);
478}
479\f
480DEFUN ("processp", Fprocessp, Sprocessp, 1, 1, 0,
481 "Return t if OBJECT is a process.")
482 (obj)
483 Lisp_Object obj;
484{
485 return XTYPE (obj) == Lisp_Process ? Qt : Qnil;
486}
487
488DEFUN ("get-process", Fget_process, Sget_process, 1, 1, 0,
489 "Return the process named NAME, or nil if there is none.")
490 (name)
491 register Lisp_Object name;
492{
493 if (XTYPE (name) == Lisp_Process)
494 return name;
495 CHECK_STRING (name, 0);
496 return Fcdr (Fassoc (name, Vprocess_alist));
497}
498
499DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
500 "Return the (or, a) process associated with BUFFER.\n\
501BUFFER may be a buffer or the name of one.")
502 (name)
503 register Lisp_Object name;
504{
505 register Lisp_Object buf, tail, proc;
506
507 if (NILP (name)) return Qnil;
508 buf = Fget_buffer (name);
509 if (NILP (buf)) return Qnil;
510
511 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
512 {
513 proc = Fcdr (Fcar (tail));
514 if (XTYPE (proc) == Lisp_Process && EQ (XPROCESS (proc)->buffer, buf))
515 return proc;
516 }
517 return Qnil;
518}
519
ebb9e16f
JB
520/* This is how commands for the user decode process arguments. It
521 accepts a process, a process name, a buffer, a buffer name, or nil.
522 Buffers denote the first process in the buffer, and nil denotes the
523 current buffer. */
d0d6b7c5 524
77b221b1 525static Lisp_Object
d0d6b7c5
JB
526get_process (name)
527 register Lisp_Object name;
528{
529 register Lisp_Object proc;
530 if (NILP (name))
531 proc = Fget_buffer_process (Fcurrent_buffer ());
532 else
533 {
534 proc = Fget_process (name);
535 if (NILP (proc))
536 proc = Fget_buffer_process (Fget_buffer (name));
537 }
538
539 if (!NILP (proc))
540 return proc;
541
542 if (NILP (name))
543 error ("Current buffer has no process");
544 else
545 error ("Process %s does not exist", XSTRING (name)->data);
546 /* NOTREACHED */
547}
548
549DEFUN ("delete-process", Fdelete_process, Sdelete_process, 1, 1, 0,
550 "Delete PROCESS: kill it and forget about it immediately.\n\
ebb9e16f
JB
551PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
552nil, indicating the current buffer's process.")
d0d6b7c5
JB
553 (proc)
554 register Lisp_Object proc;
555{
556 proc = get_process (proc);
557 XPROCESS (proc)->raw_status_low = Qnil;
558 XPROCESS (proc)->raw_status_high = Qnil;
559 if (NETCONN_P (proc))
560 {
561 XPROCESS (proc)->status = Fcons (Qexit, Fcons (make_number (0), Qnil));
562 XSETINT (XPROCESS (proc)->tick, ++process_tick);
563 }
6c955bcb 564 else if (XINT (XPROCESS (proc)->infd) >= 0)
d0d6b7c5
JB
565 {
566 Fkill_process (proc, Qnil);
567 /* Do this now, since remove_process will make sigchld_handler do nothing. */
568 XPROCESS (proc)->status
569 = Fcons (Qsignal, Fcons (make_number (SIGKILL), Qnil));
570 XSETINT (XPROCESS (proc)->tick, ++process_tick);
571 status_notify ();
572 }
573 remove_process (proc);
574 return Qnil;
575}
576\f
577DEFUN ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0,
578 "Return the status of PROCESS: a symbol, one of these:\n\
579run -- for a process that is running.\n\
580stop -- for a process stopped but continuable.\n\
581exit -- for a process that has exited.\n\
582signal -- for a process that has got a fatal signal.\n\
583open -- for a network stream connection that is open.\n\
584closed -- for a network stream connection that is closed.\n\
ebb9e16f
JB
585nil -- if arg is a process name and no such process exists.\n\
586PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
587nil, indicating the current buffer's process.")
d0d6b7c5
JB
588 (proc)
589 register Lisp_Object proc;
590{
591 register struct Lisp_Process *p;
592 register Lisp_Object status;
99e3d726 593 proc = get_process (proc);
d0d6b7c5
JB
594 if (NILP (proc))
595 return proc;
596 p = XPROCESS (proc);
597 if (!NILP (p->raw_status_low))
598 update_status (p);
599 status = p->status;
600 if (XTYPE (status) == Lisp_Cons)
601 status = XCONS (status)->car;
602 if (NETCONN_P (proc))
603 {
604 if (EQ (status, Qrun))
605 status = Qopen;
606 else if (EQ (status, Qexit))
607 status = Qclosed;
608 }
609 return status;
610}
611
612DEFUN ("process-exit-status", Fprocess_exit_status, Sprocess_exit_status,
613 1, 1, 0,
614 "Return the exit status of PROCESS or the signal number that killed it.\n\
615If PROCESS has not yet exited or died, return 0.")
616 (proc)
617 register Lisp_Object proc;
618{
619 CHECK_PROCESS (proc, 0);
620 if (!NILP (XPROCESS (proc)->raw_status_low))
621 update_status (XPROCESS (proc));
622 if (XTYPE (XPROCESS (proc)->status) == Lisp_Cons)
623 return XCONS (XCONS (XPROCESS (proc)->status)->cdr)->car;
624 return make_number (0);
625}
626
627DEFUN ("process-id", Fprocess_id, Sprocess_id, 1, 1, 0,
628 "Return the process id of PROCESS.\n\
629This is the pid of the Unix process which PROCESS uses or talks to.\n\
630For a network connection, this value is nil.")
631 (proc)
632 register Lisp_Object proc;
633{
634 CHECK_PROCESS (proc, 0);
635 return XPROCESS (proc)->pid;
636}
637
638DEFUN ("process-name", Fprocess_name, Sprocess_name, 1, 1, 0,
639 "Return the name of PROCESS, as a string.\n\
640This is the name of the program invoked in PROCESS,\n\
641possibly modified to make it unique among process names.")
642 (proc)
643 register Lisp_Object proc;
644{
645 CHECK_PROCESS (proc, 0);
646 return XPROCESS (proc)->name;
647}
648
649DEFUN ("process-command", Fprocess_command, Sprocess_command, 1, 1, 0,
650 "Return the command that was executed to start PROCESS.\n\
651This is a list of strings, the first string being the program executed\n\
652and the rest of the strings being the arguments given to it.\n\
653For a non-child channel, this is nil.")
654 (proc)
655 register Lisp_Object proc;
656{
657 CHECK_PROCESS (proc, 0);
658 return XPROCESS (proc)->command;
659}
660
661DEFUN ("set-process-buffer", Fset_process_buffer, Sset_process_buffer,
662 2, 2, 0,
663 "Set buffer associated with PROCESS to BUFFER (a buffer, or nil).")
664 (proc, buffer)
665 register Lisp_Object proc, buffer;
666{
667 CHECK_PROCESS (proc, 0);
668 if (!NILP (buffer))
669 CHECK_BUFFER (buffer, 1);
670 XPROCESS (proc)->buffer = buffer;
671 return buffer;
672}
673
674DEFUN ("process-buffer", Fprocess_buffer, Sprocess_buffer,
675 1, 1, 0,
676 "Return the buffer PROCESS is associated with.\n\
677Output from PROCESS is inserted in this buffer\n\
678unless PROCESS has a filter.")
679 (proc)
680 register Lisp_Object proc;
681{
682 CHECK_PROCESS (proc, 0);
683 return XPROCESS (proc)->buffer;
684}
685
686DEFUN ("process-mark", Fprocess_mark, Sprocess_mark,
687 1, 1, 0,
688 "Return the marker for the end of the last output from PROCESS.")
689 (proc)
690 register Lisp_Object proc;
691{
692 CHECK_PROCESS (proc, 0);
693 return XPROCESS (proc)->mark;
694}
695
696DEFUN ("set-process-filter", Fset_process_filter, Sset_process_filter,
697 2, 2, 0,
698 "Give PROCESS the filter function FILTER; nil means no filter.\n\
20ddfff7 699t means stop accepting output from the process.\n\
d0d6b7c5
JB
700When a process has a filter, each time it does output\n\
701the entire string of output is passed to the filter.\n\
702The filter gets two arguments: the process and the string of output.\n\
703If the process has a filter, its buffer is not used for output.")
704 (proc, filter)
705 register Lisp_Object proc, filter;
706{
707 CHECK_PROCESS (proc, 0);
20ddfff7 708 if (EQ (filter, Qt))
a9f2c884 709 FD_CLR (XINT (XPROCESS (proc)->infd), &input_wait_mask);
20ddfff7 710 else if (EQ (XPROCESS (proc)->filter, Qt))
a9f2c884 711 FD_SET (XINT (XPROCESS (proc)->infd), &input_wait_mask);
d0d6b7c5
JB
712 XPROCESS (proc)->filter = filter;
713 return filter;
714}
715
716DEFUN ("process-filter", Fprocess_filter, Sprocess_filter,
717 1, 1, 0,
718 "Returns the filter function of PROCESS; nil if none.\n\
719See `set-process-filter' for more info on filter functions.")
720 (proc)
721 register Lisp_Object proc;
722{
723 CHECK_PROCESS (proc, 0);
724 return XPROCESS (proc)->filter;
725}
726
727DEFUN ("set-process-sentinel", Fset_process_sentinel, Sset_process_sentinel,
728 2, 2, 0,
729 "Give PROCESS the sentinel SENTINEL; nil for none.\n\
730The sentinel is called as a function when the process changes state.\n\
731It gets two arguments: the process, and a string describing the change.")
732 (proc, sentinel)
733 register Lisp_Object proc, sentinel;
734{
735 CHECK_PROCESS (proc, 0);
736 XPROCESS (proc)->sentinel = sentinel;
737 return sentinel;
738}
739
740DEFUN ("process-sentinel", Fprocess_sentinel, Sprocess_sentinel,
741 1, 1, 0,
742 "Return the sentinel of PROCESS; nil if none.\n\
743See `set-process-sentinel' for more info on sentinels.")
744 (proc)
745 register Lisp_Object proc;
746{
747 CHECK_PROCESS (proc, 0);
748 return XPROCESS (proc)->sentinel;
749}
750
751DEFUN ("process-kill-without-query", Fprocess_kill_without_query,
752 Sprocess_kill_without_query, 1, 2, 0,
753 "Say no query needed if PROCESS is running when Emacs is exited.\n\
754Optional second argument if non-nill says to require a query.\n\
755Value is t if a query was formerly required.")
756 (proc, value)
757 register Lisp_Object proc, value;
758{
759 Lisp_Object tem;
760
761 CHECK_PROCESS (proc, 0);
762 tem = XPROCESS (proc)->kill_without_query;
763 XPROCESS (proc)->kill_without_query = Fnull (value);
764
765 return Fnull (tem);
766}
312c9964
RS
767
768#if 0 /* Turned off because we don't currently record this info
769 in the process. Perhaps add it. */
770DEFUN ("process-connection", Fprocess_connection, Sprocess_connection, 1, 1, 0,
771 "Return the connection type of `PROCESS'.\n\
772The value is `nil' for a pipe,\n\
773`t' or `pty' for a pty, or `stream' for a socket connection.")
774 (process)
775 Lisp_Object process;
776{
777 return XPROCESS (process)->type;
778}
779#endif
d0d6b7c5
JB
780\f
781Lisp_Object
782list_processes_1 ()
783{
784 register Lisp_Object tail, tem;
785 Lisp_Object proc, minspace, tem1;
786 register struct buffer *old = current_buffer;
787 register struct Lisp_Process *p;
788 register int state;
789 char tembuf[80];
790
791 XFASTINT (minspace) = 1;
792
793 set_buffer_internal (XBUFFER (Vstandard_output));
794 Fbuffer_disable_undo (Vstandard_output);
795
796 current_buffer->truncate_lines = Qt;
797
798 write_string ("\
799Proc Status Buffer Command\n\
800---- ------ ------ -------\n", -1);
801
802 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
803 {
804 Lisp_Object symbol;
805
806 proc = Fcdr (Fcar (tail));
807 p = XPROCESS (proc);
808 if (NILP (p->childp))
809 continue;
810
811 Finsert (1, &p->name);
812 Findent_to (make_number (13), minspace);
813
814 if (!NILP (p->raw_status_low))
815 update_status (p);
816 symbol = p->status;
817 if (XTYPE (p->status) == Lisp_Cons)
818 symbol = XCONS (p->status)->car;
819
820
821 if (EQ (symbol, Qsignal))
822 {
823 Lisp_Object tem;
824 tem = Fcar (Fcdr (p->status));
825#ifdef VMS
826 if (XINT (tem) < NSIG)
b0310da4 827 write_string (sys_errlist [XINT (tem)], -1);
d0d6b7c5
JB
828 else
829#endif
830 Fprinc (symbol, Qnil);
831 }
832 else if (NETCONN_P (proc))
833 {
834 if (EQ (symbol, Qrun))
835 write_string ("open", -1);
836 else if (EQ (symbol, Qexit))
837 write_string ("closed", -1);
838 else
839 Fprinc (symbol, Qnil);
840 }
841 else
842 Fprinc (symbol, Qnil);
843
844 if (EQ (symbol, Qexit))
845 {
846 Lisp_Object tem;
847 tem = Fcar (Fcdr (p->status));
848 if (XFASTINT (tem))
849 {
850 sprintf (tembuf, " %d", XFASTINT (tem));
851 write_string (tembuf, -1);
852 }
853 }
854
855 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit))
856 remove_process (proc);
857
858 Findent_to (make_number (22), minspace);
859 if (NILP (p->buffer))
860 insert_string ("(none)");
861 else if (NILP (XBUFFER (p->buffer)->name))
862 insert_string ("(Killed)");
863 else
864 Finsert (1, &XBUFFER (p->buffer)->name);
865
866 Findent_to (make_number (37), minspace);
867
868 if (NETCONN_P (proc))
869 {
870 sprintf (tembuf, "(network stream connection to %s)\n",
871 XSTRING (p->childp)->data);
872 insert_string (tembuf);
873 }
874 else
875 {
876 tem = p->command;
877 while (1)
878 {
879 tem1 = Fcar (tem);
880 Finsert (1, &tem1);
881 tem = Fcdr (tem);
882 if (NILP (tem))
883 break;
884 insert_string (" ");
885 }
886 insert_string ("\n");
887 }
888 }
889 return Qnil;
890}
891
892DEFUN ("list-processes", Flist_processes, Slist_processes, 0, 0, "",
893 "Display a list of all processes.\n\
894\(Any processes listed as Exited or Signaled are actually eliminated\n\
895after the listing is made.)")
896 ()
897{
898 internal_with_output_to_temp_buffer ("*Process List*",
899 list_processes_1, Qnil);
900 return Qnil;
901}
902
903DEFUN ("process-list", Fprocess_list, Sprocess_list, 0, 0, 0,
904 "Return a list of all processes.")
905 ()
906{
907 return Fmapcar (Qcdr, Vprocess_alist);
908}
909\f
b0310da4
JB
910/* Starting asynchronous inferior processes. */
911
912static Lisp_Object start_process_unwind ();
913
d0d6b7c5
JB
914DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0,
915 "Start a program in a subprocess. Return the process object for it.\n\
916Args are NAME BUFFER PROGRAM &rest PROGRAM-ARGS\n\
917NAME is name for process. It is modified if necessary to make it unique.\n\
918BUFFER is the buffer or (buffer-name) to associate with the process.\n\
919 Process output goes at end of that buffer, unless you specify\n\
920 an output stream or filter function to handle the output.\n\
921 BUFFER may be also nil, meaning that this process is not associated\n\
922 with any buffer\n\
923Third arg is program file name. It is searched for as in the shell.\n\
924Remaining arguments are strings to give program as arguments.")
925 (nargs, args)
926 int nargs;
927 register Lisp_Object *args;
928{
1e30af70 929 Lisp_Object buffer, name, program, proc, current_dir, tem;
d0d6b7c5
JB
930#ifdef VMS
931 register unsigned char *new_argv;
932 int len;
933#else
934 register unsigned char **new_argv;
935#endif
936 register int i;
b0310da4 937 int count = specpdl_ptr - specpdl;
d0d6b7c5
JB
938
939 buffer = args[1];
940 if (!NILP (buffer))
941 buffer = Fget_buffer_create (buffer);
942
1e30af70
JB
943 /* Make sure that the child will be able to chdir to the current
944 buffer's current directory, or its unhandled equivalent. We
945 can't just have the child check for an error when it does the
946 chdir, since it's in a vfork.
947
948 We have to GCPRO around this because Fexpand_file_name and
949 Funhandled_file_name_directory might call a file name handling
950 function. The argument list is protected by the caller, so all
951 we really have to worry about is buffer. */
952 {
953 struct gcpro gcpro1, gcpro2;
954
955 current_dir = current_buffer->directory;
956
957 GCPRO2 (buffer, current_dir);
958
959 current_dir =
960 expand_and_dir_to_file
82df4891 961 (Funhandled_file_name_directory (current_dir), Qnil);
1e30af70
JB
962 if (NILP (Ffile_accessible_directory_p (current_dir)))
963 report_file_error ("Setting current directory",
964 Fcons (current_buffer->directory, Qnil));
965
966 UNGCPRO;
967 }
968
d0d6b7c5
JB
969 name = args[0];
970 CHECK_STRING (name, 0);
971
972 program = args[2];
973
974 CHECK_STRING (program, 2);
975
976#ifdef VMS
977 /* Make a one member argv with all args concatenated
978 together separated by a blank. */
979 len = XSTRING (program)->size + 2;
980 for (i = 3; i < nargs; i++)
981 {
982 tem = args[i];
983 CHECK_STRING (tem, i);
984 len += XSTRING (tem)->size + 1; /* count the blank */
985 }
986 new_argv = (unsigned char *) alloca (len);
987 strcpy (new_argv, XSTRING (program)->data);
988 for (i = 3; i < nargs; i++)
989 {
990 tem = args[i];
991 CHECK_STRING (tem, i);
992 strcat (new_argv, " ");
993 strcat (new_argv, XSTRING (tem)->data);
994 }
b0310da4
JB
995 /* Need to add code here to check for program existence on VMS */
996
d0d6b7c5
JB
997#else /* not VMS */
998 new_argv = (unsigned char **) alloca ((nargs - 1) * sizeof (char *));
999
1000 for (i = 3; i < nargs; i++)
1001 {
1002 tem = args[i];
1003 CHECK_STRING (tem, i);
1004 new_argv[i - 2] = XSTRING (tem)->data;
1005 }
1006 new_argv[i - 2] = 0;
1007 new_argv[0] = XSTRING (program)->data;
1008
1009 /* If program file name is not absolute, search our path for it */
1010 if (new_argv[0][0] != '/')
1011 {
1012 tem = Qnil;
5437e9f9 1013 openp (Vexec_path, program, EXEC_SUFFIXES, &tem, 1);
d0d6b7c5
JB
1014 if (NILP (tem))
1015 report_file_error ("Searching for program", Fcons (program, Qnil));
1016 new_argv[0] = XSTRING (tem)->data;
1017 }
1018#endif /* not VMS */
1019
1020 proc = make_process (name);
b0310da4
JB
1021 /* If an error occurs and we can't start the process, we want to
1022 remove it from the process list. This means that each error
1023 check in create_process doesn't need to call remove_process
1024 itself; it's all taken care of here. */
1025 record_unwind_protect (start_process_unwind, proc);
d0d6b7c5
JB
1026
1027 XPROCESS (proc)->childp = Qt;
1028 XPROCESS (proc)->command_channel_p = Qnil;
1029 XPROCESS (proc)->buffer = buffer;
1030 XPROCESS (proc)->sentinel = Qnil;
1031 XPROCESS (proc)->filter = Qnil;
1032 XPROCESS (proc)->command = Flist (nargs - 2, args + 2);
1033
1e30af70 1034 create_process (proc, new_argv, current_dir);
d0d6b7c5 1035
b0310da4 1036 return unbind_to (count, proc);
d0d6b7c5
JB
1037}
1038
b0310da4
JB
1039/* This function is the unwind_protect form for Fstart_process. If
1040 PROC doesn't have its pid set, then we know someone has signalled
1041 an error and the process wasn't started successfully, so we should
1042 remove it from the process list. */
1043static Lisp_Object
1044start_process_unwind (proc)
1045 Lisp_Object proc;
1046{
1047 if (XTYPE (proc) != Lisp_Process)
1048 abort ();
1049
1050 /* Was PROC started successfully? */
188d6c4e 1051 if (XINT (XPROCESS (proc)->pid) <= 0)
b0310da4
JB
1052 remove_process (proc);
1053
1054 return Qnil;
1055}
1056
1057
d0d6b7c5
JB
1058SIGTYPE
1059create_process_1 (signo)
1060 int signo;
1061{
1062#ifdef USG
1063 /* USG systems forget handlers when they are used;
1064 must reestablish each time */
1065 signal (signo, create_process_1);
1066#endif /* USG */
1067}
1068
1069#if 0 /* This doesn't work; see the note before sigchld_handler. */
1070#ifdef USG
1071#ifdef SIGCHLD
1072/* Mimic blocking of signals on system V, which doesn't really have it. */
1073
1074/* Nonzero means we got a SIGCHLD when it was supposed to be blocked. */
1075int sigchld_deferred;
1076
1077SIGTYPE
1078create_process_sigchld ()
1079{
1080 signal (SIGCHLD, create_process_sigchld);
1081
1082 sigchld_deferred = 1;
1083}
1084#endif
1085#endif
1086#endif
1087
1088#ifndef VMS /* VMS version of this function is in vmsproc.c. */
1e30af70 1089create_process (process, new_argv, current_dir)
d0d6b7c5
JB
1090 Lisp_Object process;
1091 char **new_argv;
1e30af70 1092 Lisp_Object current_dir;
d0d6b7c5
JB
1093{
1094 int pid, inchannel, outchannel, forkin, forkout;
1095 int sv[2];
1096#ifdef SIGCHLD
1097 SIGTYPE (*sigchld)();
1098#endif
1099 int pty_flag = 0;
d0d6b7c5
JB
1100 extern char **environ;
1101
d0d6b7c5
JB
1102 inchannel = outchannel = -1;
1103
1104#ifdef HAVE_PTYS
1105 if (EQ (Vprocess_connection_type, Qt))
1106 outchannel = inchannel = allocate_pty ();
1107
d0d6b7c5
JB
1108 if (inchannel >= 0)
1109 {
1110#ifndef USG
1111 /* On USG systems it does not work to open the pty's tty here
1112 and then close and reopen it in the child. */
1113#ifdef O_NOCTTY
1114 /* Don't let this terminal become our controlling terminal
1115 (in case we don't have one). */
1116 forkout = forkin = open (pty_name, O_RDWR | O_NOCTTY, 0);
1117#else
1118 forkout = forkin = open (pty_name, O_RDWR, 0);
1119#endif
1120 if (forkin < 0)
1121 report_file_error ("Opening pty", Qnil);
1122#else
1123 forkin = forkout = -1;
1124#endif /* not USG */
1125 pty_flag = 1;
1126 }
1127 else
1128#endif /* HAVE_PTYS */
1129#ifdef SKTPAIR
1130 {
1131 if (socketpair (AF_UNIX, SOCK_STREAM, 0, sv) < 0)
1132 report_file_error ("Opening socketpair", Qnil);
1133 outchannel = inchannel = sv[0];
1134 forkout = forkin = sv[1];
1135 }
1136#else /* not SKTPAIR */
1137 {
1138 pipe (sv);
1139 inchannel = sv[0];
1140 forkout = sv[1];
1141 pipe (sv);
1142 outchannel = sv[1];
1143 forkin = sv[0];
1144 }
1145#endif /* not SKTPAIR */
1146
1147#if 0
1148 /* Replaced by close_process_descs */
1149 set_exclusive_use (inchannel);
1150 set_exclusive_use (outchannel);
1151#endif
1152
1153/* Stride people say it's a mystery why this is needed
1154 as well as the O_NDELAY, but that it fails without this. */
1155#if defined (STRIDE) || (defined (pfa) && defined (HAVE_PTYS))
1156 {
1157 int one = 1;
1158 ioctl (inchannel, FIONBIO, &one);
1159 }
1160#endif
1161
1162#ifdef O_NONBLOCK
1163 fcntl (inchannel, F_SETFL, O_NONBLOCK);
1164#else
1165#ifdef O_NDELAY
1166 fcntl (inchannel, F_SETFL, O_NDELAY);
1167#endif
1168#endif
1169
1170 /* Record this as an active process, with its channels.
1171 As a result, child_setup will close Emacs's side of the pipes. */
1172 chan_process[inchannel] = process;
a9f2c884
RS
1173 XSET (XPROCESS (process)->infd, Lisp_Int, inchannel);
1174 XSET (XPROCESS (process)->outfd, Lisp_Int, outchannel);
d0d6b7c5
JB
1175 /* Record the tty descriptor used in the subprocess. */
1176 if (forkin < 0)
1177 XPROCESS (process)->subtty = Qnil;
1178 else
1179 XFASTINT (XPROCESS (process)->subtty) = forkin;
1180 XPROCESS (process)->pty_flag = (pty_flag ? Qt : Qnil);
1181 XPROCESS (process)->status = Qrun;
1182
1183 /* Delay interrupts until we have a chance to store
1184 the new fork's pid in its process structure */
1185#ifdef SIGCHLD
1186#ifdef BSD4_1
1187 sighold (SIGCHLD);
1188#else /* not BSD4_1 */
1189#if defined (BSD) || defined (UNIPLUS) || defined (HPUX)
1190 sigsetmask (sigmask (SIGCHLD));
1191#else /* ordinary USG */
1192#if 0
1193 sigchld_deferred = 0;
1194 sigchld = signal (SIGCHLD, create_process_sigchld);
1195#endif
1196#endif /* ordinary USG */
1197#endif /* not BSD4_1 */
1198#endif /* SIGCHLD */
1199
1200 /* Until we store the proper pid, enable sigchld_handler
1201 to recognize an unknown pid as standing for this process.
1202 It is very important not to let this `marker' value stay
1203 in the table after this function has returned; if it does
1204 it might cause call-process to hang and subsequent asynchronous
1205 processes to get their return values scrambled. */
1206 XSETINT (XPROCESS (process)->pid, -1);
1207
1208 {
1209 /* child_setup must clobber environ on systems with true vfork.
1210 Protect it from permanent change. */
1211 char **save_environ = environ;
1212
1213 pid = vfork ();
1214 if (pid == 0)
1215 {
1216 int xforkin = forkin;
1217 int xforkout = forkout;
1218
1219#if 0 /* This was probably a mistake--it duplicates code later on,
1220 but fails to handle all the cases. */
1221 /* Make sure SIGCHLD is not blocked in the child. */
1222 sigsetmask (SIGEMPTYMASK);
1223#endif
1224
1225 /* Make the pty be the controlling terminal of the process. */
1226#ifdef HAVE_PTYS
1227 /* First, disconnect its current controlling terminal. */
1228#ifdef HAVE_SETSID
1229 setsid ();
ce4c9c90
RS
1230#ifdef TIOCSCTTY
1231 /* Make the pty's terminal the controlling terminal. */
084fd64a
RS
1232 if (pty_flag)
1233 /* We ignore the return value
1234 because faith@cs.unc.edu says that is necessary on Linux. */
1235 ioctl (xforkin, TIOCSCTTY, 0);
ce4c9c90 1236#endif
d0d6b7c5 1237#else /* not HAVE_SETSID */
c14e53a4 1238#ifdef USG
d0d6b7c5
JB
1239 /* It's very important to call setpgrp() here and no time
1240 afterwards. Otherwise, we lose our controlling tty which
1241 is set when we open the pty. */
1242 setpgrp ();
1243#endif /* USG */
1244#endif /* not HAVE_SETSID */
1245#ifdef TIOCNOTTY
1246 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
1247 can do TIOCSPGRP only to the process's controlling tty. */
1248 if (pty_flag)
1249 {
1250 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
1251 I can't test it since I don't have 4.3. */
1252 int j = open ("/dev/tty", O_RDWR, 0);
1253 ioctl (j, TIOCNOTTY, 0);
1254 close (j);
5a570e37 1255#ifndef USG
d0d6b7c5
JB
1256 /* In order to get a controlling terminal on some versions
1257 of BSD, it is necessary to put the process in pgrp 0
1258 before it opens the terminal. */
1259 setpgrp (0, 0);
1260#endif
1261 }
1262#endif /* TIOCNOTTY */
1263
1264#if !defined (RTU) && !defined (UNIPLUS)
1265/*** There is a suggestion that this ought to be a
1266 conditional on TIOCSPGRP. */
1267 /* Now close the pty (if we had it open) and reopen it.
1268 This makes the pty the controlling terminal of the subprocess. */
1269 if (pty_flag)
1270 {
99e3d726
RS
1271#ifdef SET_CHILD_PTY_PGRP
1272 int pgrp = getpid ();
1273#endif
1274
d0d6b7c5
JB
1275 /* I wonder if close (open (pty_name, ...)) would work? */
1276 if (xforkin >= 0)
1277 close (xforkin);
1278 xforkout = xforkin = open (pty_name, O_RDWR, 0);
1279
99e3d726
RS
1280#ifdef SET_CHILD_PTY_PGRP
1281 ioctl (xforkin, TIOCSPGRP, &pgrp);
1282 ioctl (xforkout, TIOCSPGRP, &pgrp);
1283#endif
1284
d0d6b7c5
JB
1285 if (xforkin < 0)
1286 abort ();
1287 }
1288#endif /* not UNIPLUS and not RTU */
1289#ifdef SETUP_SLAVE_PTY
1290 SETUP_SLAVE_PTY;
1291#endif /* SETUP_SLAVE_PTY */
1292#ifdef AIX
1293 /* On AIX, we've disabled SIGHUP above once we start a child on a pty.
1294 Now reenable it in the child, so it will die when we want it to. */
1295 if (pty_flag)
1296 signal (SIGHUP, SIG_DFL);
1297#endif
1298#endif /* HAVE_PTYS */
1299
1300#ifdef SIGCHLD
1301#ifdef BSD4_1
1302 sigrelse (SIGCHLD);
1303#else /* not BSD4_1 */
1304#if defined (BSD) || defined (UNIPLUS) || defined (HPUX)
1305 sigsetmask (SIGEMPTYMASK);
1306#else /* ordinary USG */
63528b78 1307#if 0
d0d6b7c5 1308 signal (SIGCHLD, sigchld);
63528b78 1309#endif
d0d6b7c5
JB
1310#endif /* ordinary USG */
1311#endif /* not BSD4_1 */
1312#endif /* SIGCHLD */
1313
1314 child_setup_tty (xforkout);
1315 child_setup (xforkin, xforkout, xforkout,
e065a56e 1316 new_argv, 1, current_dir);
d0d6b7c5
JB
1317 }
1318 environ = save_environ;
1319 }
1320
1321 if (pid < 0)
b0310da4
JB
1322 report_file_error ("Doing vfork", Qnil);
1323
d0d6b7c5
JB
1324 XFASTINT (XPROCESS (process)->pid) = pid;
1325
1326 FD_SET (inchannel, &input_wait_mask);
1327
1328 /* If the subfork execv fails, and it exits,
1329 this close hangs. I don't know why.
1330 So have an interrupt jar it loose. */
1331 stop_polling ();
1332 signal (SIGALRM, create_process_1);
1333 alarm (1);
99e3d726
RS
1334 XPROCESS (process)->subtty = Qnil;
1335 if (forkin >= 0)
1336 close (forkin);
d0d6b7c5
JB
1337 alarm (0);
1338 start_polling ();
1339 if (forkin != forkout && forkout >= 0)
1340 close (forkout);
1341
1342#ifdef SIGCHLD
1343#ifdef BSD4_1
1344 sigrelse (SIGCHLD);
1345#else /* not BSD4_1 */
1346#if defined (BSD) || defined (UNIPLUS) || defined (HPUX)
1347 sigsetmask (SIGEMPTYMASK);
1348#else /* ordinary USG */
1349#if 0
1350 signal (SIGCHLD, sigchld);
1351 /* Now really handle any of these signals
1352 that came in during this function. */
1353 if (sigchld_deferred)
1354 kill (getpid (), SIGCHLD);
1355#endif
1356#endif /* ordinary USG */
1357#endif /* not BSD4_1 */
1358#endif /* SIGCHLD */
1359}
1360#endif /* not VMS */
1361
1362#ifdef HAVE_SOCKETS
1363
1364/* open a TCP network connection to a given HOST/SERVICE. Treated
1365 exactly like a normal process when reading and writing. Only
1366 differences are in status display and process deletion. A network
1367 connection has no PID; you cannot signal it. All you can do is
1368 deactivate and close it via delete-process */
1369
1370DEFUN ("open-network-stream", Fopen_network_stream, Sopen_network_stream,
1371 4, 4, 0,
1372 "Open a TCP connection for a service to a host.\n\
1373Returns a subprocess-object to represent the connection.\n\
1374Input and output work as for subprocesses; `delete-process' closes it.\n\
1375Args are NAME BUFFER HOST SERVICE.\n\
1376NAME is name for process. It is modified if necessary to make it unique.\n\
1377BUFFER is the buffer (or buffer-name) to associate with the process.\n\
1378 Process output goes at end of that buffer, unless you specify\n\
1379 an output stream or filter function to handle the output.\n\
1380 BUFFER may be also nil, meaning that this process is not associated\n\
1381 with any buffer\n\
1382Third arg is name of the host to connect to, or its IP address.\n\
1383Fourth arg SERVICE is name of the service desired, or an integer\n\
1384 specifying a port number to connect to.")
1385 (name, buffer, host, service)
1386 Lisp_Object name, buffer, host, service;
1387{
1388 Lisp_Object proc;
1389 register int i;
1390 struct sockaddr_in address;
1391 struct servent *svc_info;
1392 struct hostent *host_info_ptr, host_info;
1393 char *(addr_list[2]);
79967d5e 1394 IN_ADDR numeric_addr;
d0d6b7c5
JB
1395 int s, outch, inch;
1396 char errstring[80];
1397 int port;
1398 struct hostent host_info_fixed;
1399 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1400
1401 GCPRO4 (name, buffer, host, service);
1402 CHECK_STRING (name, 0);
1403 CHECK_STRING (host, 0);
1404 if (XTYPE(service) == Lisp_Int)
1405 port = htons ((unsigned short) XINT (service));
1406 else
1407 {
1408 CHECK_STRING (service, 0);
1409 svc_info = getservbyname (XSTRING (service)->data, "tcp");
1410 if (svc_info == 0)
1411 error ("Unknown service \"%s\"", XSTRING (service)->data);
1412 port = svc_info->s_port;
1413 }
1414
1d2c16fa 1415#ifndef TERM
d0d6b7c5
JB
1416 host_info_ptr = gethostbyname (XSTRING (host)->data);
1417 if (host_info_ptr == 0)
1418 /* Attempt to interpret host as numeric inet address */
1419 {
393a9679 1420 numeric_addr = inet_addr ((char *) XSTRING (host)->data);
79967d5e 1421 if (NUMERIC_ADDR_ERROR)
d0d6b7c5
JB
1422 error ("Unknown host \"%s\"", XSTRING (host)->data);
1423
1424 host_info_ptr = &host_info;
1425 host_info.h_name = 0;
1426 host_info.h_aliases = 0;
1427 host_info.h_addrtype = AF_INET;
39a21be6
JB
1428#ifdef h_addr
1429 /* Older machines have only one address slot called h_addr.
1430 Newer machines have h_addr_list, but #define h_addr to
1431 be its first element. */
1432 host_info.h_addr_list = &(addr_list[0]);
1433#endif
1434 host_info.h_addr = (char*)(&numeric_addr);
d0d6b7c5
JB
1435 addr_list[1] = 0;
1436 host_info.h_length = strlen (addr_list[0]);
1437 }
1438
1439 bzero (&address, sizeof address);
1440 bcopy (host_info_ptr->h_addr, (char *) &address.sin_addr,
1441 host_info_ptr->h_length);
1442 address.sin_family = host_info_ptr->h_addrtype;
1443 address.sin_port = port;
1444
1445 s = socket (host_info_ptr->h_addrtype, SOCK_STREAM, 0);
1446 if (s < 0)
1447 report_file_error ("error creating socket", Fcons (name, Qnil));
1448
1449 loop:
63826237 1450 if (connect (s, (struct sockaddr *) &address, sizeof address) == -1)
d0d6b7c5
JB
1451 {
1452 int xerrno = errno;
1453 if (errno == EINTR)
1454 goto loop;
1455 close (s);
1456 errno = xerrno;
1457 report_file_error ("connection failed",
1458 Fcons (host, Fcons (name, Qnil)));
1459 }
1d2c16fa
RS
1460#else /* TERM */
1461 s = connect_server (0);
1462 if (s < 0)
1463 report_file_error ("error creating socket", Fcons (name, Qnil));
1464 send_command (s, C_PORT, 0, "%s:%d", XSTRING (host)->data, ntohs (port));
1465 send_command (s, C_DUMB, 1, 0);
1466#endif /* TERM */
d0d6b7c5
JB
1467
1468 inch = s;
1469 outch = dup (s);
1470 if (outch < 0)
1471 report_file_error ("error duplicating socket", Fcons (name, Qnil));
1472
1473 if (!NILP (buffer))
1474 buffer = Fget_buffer_create (buffer);
1475 proc = make_process (name);
1476
1477 chan_process[inch] = proc;
1478
1479#ifdef O_NONBLOCK
1480 fcntl (inch, F_SETFL, O_NONBLOCK);
1481#else
1482#ifdef O_NDELAY
1483 fcntl (inch, F_SETFL, O_NDELAY);
1484#endif
1485#endif
1486
1487 XPROCESS (proc)->childp = host;
1488 XPROCESS (proc)->command_channel_p = Qnil;
1489 XPROCESS (proc)->buffer = buffer;
1490 XPROCESS (proc)->sentinel = Qnil;
1491 XPROCESS (proc)->filter = Qnil;
1492 XPROCESS (proc)->command = Qnil;
1493 XPROCESS (proc)->pid = Qnil;
a9f2c884
RS
1494 XSET (XPROCESS (proc)->infd, Lisp_Int, s);
1495 XSET (XPROCESS (proc)->outfd, Lisp_Int, outch);
d0d6b7c5
JB
1496 XPROCESS (proc)->status = Qrun;
1497 FD_SET (inch, &input_wait_mask);
1498
1499 UNGCPRO;
1500 return proc;
1501}
1502#endif /* HAVE_SOCKETS */
1503
1504deactivate_process (proc)
1505 Lisp_Object proc;
1506{
1507 register int inchannel, outchannel;
1508 register struct Lisp_Process *p = XPROCESS (proc);
1509
a9f2c884
RS
1510 inchannel = XINT (p->infd);
1511 outchannel = XINT (p->outfd);
d0d6b7c5 1512
a9f2c884 1513 if (inchannel >= 0)
d0d6b7c5
JB
1514 {
1515 /* Beware SIGCHLD hereabouts. */
1516 flush_pending_output (inchannel);
1517#ifdef VMS
1518 {
1519 VMS_PROC_STUFF *get_vms_process_pointer (), *vs;
1520 sys$dassgn (outchannel);
c6c6865d 1521 vs = get_vms_process_pointer (p->pid);
d0d6b7c5
JB
1522 if (vs)
1523 give_back_vms_process_stuff (vs);
1524 }
1525#else
1526 close (inchannel);
a9f2c884 1527 if (outchannel >= 0 && outchannel != inchannel)
d0d6b7c5
JB
1528 close (outchannel);
1529#endif
1530
a9f2c884
RS
1531 XSET (p->infd, Lisp_Int, -1);
1532 XSET (p->outfd, Lisp_Int, -1);
d0d6b7c5
JB
1533 chan_process[inchannel] = Qnil;
1534 FD_CLR (inchannel, &input_wait_mask);
1535 }
1536}
1537
1538/* Close all descriptors currently in use for communication
1539 with subprocess. This is used in a newly-forked subprocess
1540 to get rid of irrelevant descriptors. */
1541
1542close_process_descs ()
1543{
1544 int i;
1545 for (i = 0; i < MAXDESC; i++)
1546 {
1547 Lisp_Object process;
1548 process = chan_process[i];
1549 if (!NILP (process))
1550 {
a9f2c884
RS
1551 int in = XINT (XPROCESS (process)->infd);
1552 int out = XINT (XPROCESS (process)->outfd);
1553 if (in >= 0)
d0d6b7c5 1554 close (in);
a9f2c884 1555 if (out >= 0 && in != out)
d0d6b7c5
JB
1556 close (out);
1557 }
1558 }
1559}
1560\f
1561DEFUN ("accept-process-output", Faccept_process_output, Saccept_process_output,
1562 0, 3, 0,
1563 "Allow any pending output from subprocesses to be read by Emacs.\n\
1564It is read into the process' buffers or given to their filter functions.\n\
1565Non-nil arg PROCESS means do not return until some output has been received\n\
1566from PROCESS.\n\
1567Non-nil second arg TIMEOUT and third arg TIMEOUT-MSECS are number of\n\
1568seconds and microseconds to wait; return after that much time whether\n\
1569or not there is input.\n\
1570Return non-nil iff we received any output before the timeout expired.")
1571 (proc, timeout, timeout_msecs)
1572 register Lisp_Object proc, timeout, timeout_msecs;
1573{
1574 int seconds;
1575 int useconds;
1576
1577 if (! NILP (timeout_msecs))
1578 {
1579 CHECK_NUMBER (timeout_msecs, 2);
1580 useconds = XINT (timeout_msecs);
1581 if (XTYPE (timeout) != Lisp_Int)
1582 XSET (timeout, Lisp_Int, 0);
1583
1584 {
1585 int carry = useconds / 1000000;
1586
1587 XSETINT (timeout, XINT (timeout) + carry);
1588 useconds -= carry * 1000000;
1589
1590 /* I think this clause is necessary because C doesn't
1591 guarantee a particular rounding direction for negative
1592 integers. */
1593 if (useconds < 0)
1594 {
1595 XSETINT (timeout, XINT (timeout) - 1);
1596 useconds += 1000000;
1597 }
1598 }
1599 }
de946e5a
RS
1600 else
1601 useconds = 0;
d0d6b7c5
JB
1602
1603 if (! NILP (timeout))
1604 {
1605 CHECK_NUMBER (timeout, 1);
1606 seconds = XINT (timeout);
1607 if (seconds <= 0)
1608 seconds = -1;
1609 }
1610 else
1611 {
1612 if (NILP (proc))
1613 seconds = -1;
1614 else
1615 seconds = 0;
1616 }
1617
f76475ad
JB
1618 if (NILP (proc))
1619 XFASTINT (proc) = 0;
1620
d0d6b7c5 1621 return
f76475ad 1622 (wait_reading_process_input (seconds, useconds, proc, 0)
d0d6b7c5
JB
1623 ? Qt : Qnil);
1624}
1625
1626/* This variable is different from waiting_for_input in keyboard.c.
1627 It is used to communicate to a lisp process-filter/sentinel (via the
1628 function Fwaiting_for_user_input_p below) whether emacs was waiting
1629 for user-input when that process-filter was called.
1630 waiting_for_input cannot be used as that is by definition 0 when
1631 lisp code is being evalled */
1632static int waiting_for_user_input_p;
1633
1634/* Read and dispose of subprocess output while waiting for timeout to
1635 elapse and/or keyboard input to be available.
1636
de6fd4b9 1637 TIME_LIMIT is:
d0d6b7c5
JB
1638 timeout in seconds, or
1639 zero for no limit, or
1640 -1 means gobble data immediately available but don't wait for any.
1641
de6fd4b9
RS
1642 MICROSECS is:
1643 an additional duration to wait, measured in microseconds.
1644 If this is nonzero and time_limit is 0, then the timeout
1645 consists of MICROSECS only.
6e4f3667 1646
de6fd4b9 1647 READ_KBD is a lisp value:
d0d6b7c5
JB
1648 0 to ignore keyboard input, or
1649 1 to return when input is available, or
84aa3ace 1650 -1 meaning caller will actually read the input, so don't throw to
d0d6b7c5 1651 the quit handler, or
de6fd4b9
RS
1652 a cons cell, meaning wait wait until its car is non-nil
1653 (and gobble terminal input into the buffer if any arrives), or
f76475ad
JB
1654 a process object, meaning wait until something arrives from that
1655 process. The return value is true iff we read some input from
1656 that process.
d0d6b7c5 1657
de6fd4b9 1658 DO_DISPLAY != 0 means redisplay should be done to show subprocess
d0d6b7c5
JB
1659 output that arrives.
1660
de6fd4b9 1661 If READ_KBD is a pointer to a struct Lisp_Process, then the
d0d6b7c5
JB
1662 function returns true iff we received input from that process
1663 before the timeout elapsed.
eb8c3be9 1664 Otherwise, return true iff we received input from any process. */
d0d6b7c5
JB
1665
1666wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
f76475ad
JB
1667 int time_limit, microsecs;
1668 Lisp_Object read_kbd;
1669 int do_display;
d0d6b7c5
JB
1670{
1671 register int channel, nfds, m;
1672 static SELECT_TYPE Available;
1673 int xerrno;
1674 Lisp_Object proc;
1675 EMACS_TIME timeout, end_time, garbage;
1676 SELECT_TYPE Atemp;
a9f2c884 1677 int wait_channel = -1;
d0d6b7c5
JB
1678 struct Lisp_Process *wait_proc = 0;
1679 int got_some_input = 0;
84aa3ace 1680 Lisp_Object *wait_for_cell = 0;
d0d6b7c5
JB
1681
1682 FD_ZERO (&Available);
1683
f76475ad
JB
1684 /* If read_kbd is a process to watch, set wait_proc and wait_channel
1685 accordingly. */
1686 if (XTYPE (read_kbd) == Lisp_Process)
d0d6b7c5 1687 {
f76475ad 1688 wait_proc = XPROCESS (read_kbd);
a9f2c884 1689 wait_channel = XINT (wait_proc->infd);
f76475ad 1690 XFASTINT (read_kbd) = 0;
d0d6b7c5
JB
1691 }
1692
84aa3ace
RS
1693 /* If waiting for non-nil in a cell, record where. */
1694 if (XTYPE (read_kbd) == Lisp_Cons)
1695 {
1696 wait_for_cell = &XCONS (read_kbd)->car;
1697 XFASTINT (read_kbd) = 0;
1698 }
1699
f76475ad 1700 waiting_for_user_input_p = XINT (read_kbd);
d0d6b7c5
JB
1701
1702 /* Since we may need to wait several times,
1703 compute the absolute time to return at. */
1704 if (time_limit || microsecs)
1705 {
1706 EMACS_GET_TIME (end_time);
1707 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
1708 EMACS_ADD_TIME (end_time, end_time, timeout);
1709 }
1710
99e3d726
RS
1711 /* It would not be safe to call this below,
1712 where we call redisplay_preserve_echo_area. */
1713 prepare_menu_bars ();
1714
d0d6b7c5
JB
1715 while (1)
1716 {
1717 /* If calling from keyboard input, do not quit
1718 since we want to return C-g as an input character.
1719 Otherwise, do pending quit if requested. */
f76475ad 1720 if (XINT (read_kbd) >= 0)
d0d6b7c5
JB
1721 QUIT;
1722
889255b4
RS
1723 /* Exit now if the cell we're waiting for became non-nil. */
1724 if (wait_for_cell && ! NILP (*wait_for_cell))
1725 break;
1726
d0d6b7c5
JB
1727 /* Compute time from now till when time limit is up */
1728 /* Exit if already run out */
1729 if (time_limit == -1)
1730 {
1731 /* -1 specified for timeout means
1732 gobble output available now
1733 but don't wait at all. */
1734
1735 EMACS_SET_SECS_USECS (timeout, 0, 0);
1736 }
1737 else if (time_limit || microsecs)
1738 {
1739 EMACS_GET_TIME (timeout);
1740 EMACS_SUB_TIME (timeout, end_time, timeout);
1741 if (EMACS_TIME_NEG_P (timeout))
1742 break;
1743 }
1744 else
1745 {
1746 EMACS_SET_SECS_USECS (timeout, 100000, 0);
1747 }
1748
90ab1a81
JB
1749 /* Cause C-g and alarm signals to take immediate action,
1750 and cause input available signals to zero out timeout.
1751
1752 It is important that we do this before checking for process
1753 activity. If we get a SIGCHLD after the explicit checks for
1754 process activity, timeout is the only way we will know. */
1755 if (XINT (read_kbd) < 0)
1756 set_waiting_for_input (&timeout);
1757
6be429b1
JB
1758 /* If status of something has changed, and no input is
1759 available, notify the user of the change right away. After
1760 this explicit check, we'll let the SIGCHLD handler zap
1761 timeout to get our attention. */
1762 if (update_tick != process_tick && do_display)
1763 {
1764 Atemp = input_wait_mask;
1765 EMACS_SET_SECS_USECS (timeout, 0, 0);
1766 if (select (MAXDESC, &Atemp, 0, 0, &timeout) <= 0)
90ab1a81
JB
1767 {
1768 /* It's okay for us to do this and then continue with
1769 the loop, since timeout has already been zeroed out. */
1770 clear_waiting_for_input ();
1771 status_notify ();
1772 }
6be429b1
JB
1773 }
1774
1775 /* Don't wait for output from a non-running process. */
1776 if (wait_proc != 0 && !NILP (wait_proc->raw_status_low))
1777 update_status (wait_proc);
1778 if (wait_proc != 0
1779 && ! EQ (wait_proc->status, Qrun))
9aa2a7f4
JB
1780 {
1781 clear_waiting_for_input ();
1782 break;
1783 }
6be429b1 1784
d0d6b7c5
JB
1785 /* Wait till there is something to do */
1786
1787 Available = input_wait_mask;
6cbc22ed
RS
1788 /* We used to have && wait_for_cell == 0
1789 but that led to lossage handling selection_request events:
1790 within one, we would start to handle another. */
1791 if (! XINT (read_kbd))
dd2281ae 1792 FD_CLR (keyboard_descriptor, &Available);
d0d6b7c5 1793
ff11dfa1 1794 /* If frame size has changed or the window is newly mapped,
ffd56f97
JB
1795 redisplay now, before we start to wait. There is a race
1796 condition here; if a SIGIO arrives between now and the select
016899c0
JB
1797 and indicates that a frame is trashed, the select may block
1798 displaying a trashed screen. */
ff11dfa1 1799 if (frame_garbaged)
ffd56f97
JB
1800 redisplay_preserve_echo_area ();
1801
f76475ad 1802 if (XINT (read_kbd) && detect_input_pending ())
a9f2c884
RS
1803 {
1804 nfds = 0;
1805 FD_ZERO (&Available);
1806 }
d0d6b7c5 1807 else
d0d6b7c5 1808 nfds = select (MAXDESC, &Available, 0, 0, &timeout);
6720a7fb 1809
d0d6b7c5
JB
1810 xerrno = errno;
1811
1812 /* Make C-g and alarm signals set flags again */
1813 clear_waiting_for_input ();
1814
1815 /* If we woke up due to SIGWINCH, actually change size now. */
1816 do_pending_window_change ();
1817
ffd56f97 1818 if (time_limit && nfds == 0) /* timeout elapsed */
d0d6b7c5
JB
1819 break;
1820 if (nfds < 0)
1821 {
1822 if (xerrno == EINTR)
1823 FD_ZERO (&Available);
b0310da4
JB
1824#ifdef ultrix
1825 /* Ultrix select seems to return ENOMEM when it is
1826 interrupted. Treat it just like EINTR. Bleah. Note
1827 that we want to test for the "ultrix" CPP symbol, not
1828 "__ultrix__"; the latter is only defined under GCC, but
1829 not by DEC's bundled CC. -JimB */
8058415c
JB
1830 else if (xerrno == ENOMEM)
1831 FD_ZERO (&Available);
1832#endif
d0d6b7c5
JB
1833#ifdef ALLIANT
1834 /* This happens for no known reason on ALLIANT.
1835 I am guessing that this is the right response. -- RMS. */
1836 else if (xerrno == EFAULT)
1837 FD_ZERO (&Available);
1838#endif
1839 else if (xerrno == EBADF)
1840 {
1841#ifdef AIX
1842 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
1843 the child's closure of the pts gives the parent a SIGHUP, and
1844 the ptc file descriptor is automatically closed,
1845 yielding EBADF here or at select() call above.
1846 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
1847 in m-ibmrt-aix.h), and here we just ignore the select error.
1848 Cleanup occurs c/o status_notify after SIGCLD. */
ffd56f97 1849 FD_ZERO (&Available); /* Cannot depend on values returned */
d0d6b7c5
JB
1850#else
1851 abort ();
1852#endif
1853 }
1854 else
1855 error("select error: %s", sys_errlist[xerrno]);
1856 }
26ec91de 1857#if defined(sun) && !defined(USG5_4)
dd2281ae
RS
1858 else if (nfds > 0 && FD_ISSET (keyboard_descriptor, &Available)
1859 && interrupt_input)
e0109153
JB
1860 /* System sometimes fails to deliver SIGIO.
1861
1862 David J. Mackenzie says that Emacs doesn't compile under
1863 Solaris if this code is enabled, thus the USG5_4 in the CPP
1864 conditional. "I haven't noticed any ill effects so far.
1865 If you find a Solaris expert somewhere, they might know
1866 better." */
d0d6b7c5
JB
1867 kill (getpid (), SIGIO);
1868#endif
1869
1870 /* Check for keyboard input */
1871 /* If there is any, return immediately
1872 to give it higher priority than subprocesses */
1873
6cbc22ed
RS
1874 /* We used to do his if wait_for_cell,
1875 but that caused infinite recursion in selection request events. */
1876 if ((XINT (read_kbd))
97f3b3d6 1877 && detect_input_pending ())
6e103bac
RS
1878 {
1879 swallow_events ();
1880 if (detect_input_pending ())
1881 break;
1882 }
d0d6b7c5 1883
84aa3ace
RS
1884 /* Exit now if the cell we're waiting for became non-nil. */
1885 if (wait_for_cell && ! NILP (*wait_for_cell))
1886 break;
1887
4746118a 1888#ifdef SIGIO
d0d6b7c5
JB
1889 /* If we think we have keyboard input waiting, but didn't get SIGIO
1890 go read it. This can happen with X on BSD after logging out.
1891 In that case, there really is no input and no SIGIO,
1892 but select says there is input. */
1893
dd2281ae
RS
1894 if (XINT (read_kbd) && interrupt_input
1895 && (FD_ISSET (keyboard_descriptor, &Available)))
d0d6b7c5 1896 kill (0, SIGIO);
4746118a 1897#endif
d0d6b7c5 1898
d0d6b7c5
JB
1899 if (! wait_proc)
1900 got_some_input |= nfds > 0;
1901
32676c08
JB
1902 /* If checking input just got us a size-change event from X,
1903 obey it now if we should. */
97f3b3d6 1904 if (XINT (read_kbd) || wait_for_cell)
32676c08
JB
1905 do_pending_window_change ();
1906
a9f2c884
RS
1907 /* Check for data from a process. */
1908 /* Really FIRST_PROC_DESC should be 0 on Unix,
1909 but this is safer in the short run. */
1910 for (channel = keyboard_descriptor == 0 ? FIRST_PROC_DESC : 0;
1911 channel < MAXDESC; channel++)
d0d6b7c5
JB
1912 {
1913 if (FD_ISSET (channel, &Available))
1914 {
1915 int nread;
1916
1917 /* If waiting for this channel, arrange to return as
1918 soon as no more input to be processed. No more
1919 waiting. */
1920 if (wait_channel == channel)
1921 {
a9f2c884 1922 wait_channel = -1;
d0d6b7c5
JB
1923 time_limit = -1;
1924 got_some_input = 1;
1925 }
1926 proc = chan_process[channel];
1927 if (NILP (proc))
1928 continue;
1929
d0d6b7c5
JB
1930 /* Read data from the process, starting with our
1931 buffered-ahead character if we have one. */
1932
1933 nread = read_process_output (proc, channel);
1934 if (nread > 0)
1935 {
1936 /* Since read_process_output can run a filter,
1937 which can call accept-process-output,
1938 don't try to read from any other processes
1939 before doing the select again. */
1940 FD_ZERO (&Available);
1941
1942 if (do_display)
1943 redisplay_preserve_echo_area ();
1944 }
1945#ifdef EWOULDBLOCK
1946 else if (nread == -1 && errno == EWOULDBLOCK)
1947 ;
1948#else
1949#ifdef O_NONBLOCK
1950 else if (nread == -1 && errno == EAGAIN)
1951 ;
1952#else
1953#ifdef O_NDELAY
1954 else if (nread == -1 && errno == EAGAIN)
1955 ;
1956 /* Note that we cannot distinguish between no input
1957 available now and a closed pipe.
1958 With luck, a closed pipe will be accompanied by
1959 subprocess termination and SIGCHLD. */
1960 else if (nread == 0 && !NETCONN_P (proc))
1961 ;
ffd56f97
JB
1962#endif /* O_NDELAY */
1963#endif /* O_NONBLOCK */
1964#endif /* EWOULDBLOCK */
d0d6b7c5
JB
1965#ifdef HAVE_PTYS
1966 /* On some OSs with ptys, when the process on one end of
1967 a pty exits, the other end gets an error reading with
1968 errno = EIO instead of getting an EOF (0 bytes read).
1969 Therefore, if we get an error reading and errno =
1970 EIO, just continue, because the child process has
1971 exited and should clean itself up soon (e.g. when we
1972 get a SIGCHLD). */
1973 else if (nread == -1 && errno == EIO)
1974 ;
ffd56f97
JB
1975#endif /* HAVE_PTYS */
1976 /* If we can detect process termination, don't consider the process
1977 gone just because its pipe is closed. */
d0d6b7c5
JB
1978#ifdef SIGCHLD
1979 else if (nread == 0 && !NETCONN_P (proc))
1980 ;
1981#endif
1982 else
1983 {
1984 /* Preserve status of processes already terminated. */
1985 XSETINT (XPROCESS (proc)->tick, ++process_tick);
1986 deactivate_process (proc);
1987 if (!NILP (XPROCESS (proc)->raw_status_low))
1988 update_status (XPROCESS (proc));
1989 if (EQ (XPROCESS (proc)->status, Qrun))
1990 XPROCESS (proc)->status
1991 = Fcons (Qexit, Fcons (make_number (256), Qnil));
1992 }
1993 }
ffd56f97
JB
1994 } /* end for each file descriptor */
1995 } /* end while exit conditions not met */
d0d6b7c5 1996
ffd56f97
JB
1997 /* If calling from keyboard input, do not quit
1998 since we want to return C-g as an input character.
1999 Otherwise, do pending quit if requested. */
f76475ad 2000 if (XINT (read_kbd) >= 0)
ffd56f97
JB
2001 {
2002 /* Prevent input_pending from remaining set if we quit. */
2003 clear_input_pending ();
2004 QUIT;
2005 }
d0d6b7c5
JB
2006
2007 return got_some_input;
2008}
2009\f
2010/* Read pending output from the process channel,
2011 starting with our buffered-ahead character if we have one.
2012 Yield number of characters read.
2013
2014 This function reads at most 1024 characters.
2015 If you want to read all available subprocess output,
2016 you must call it repeatedly until it returns zero. */
2017
2018read_process_output (proc, channel)
2019 Lisp_Object proc;
2020 register int channel;
2021{
2022 register int nchars;
2023#ifdef VMS
2024 char *chars;
2025#else
2026 char chars[1024];
2027#endif
2028 register Lisp_Object outstream;
2029 register struct buffer *old = current_buffer;
2030 register struct Lisp_Process *p = XPROCESS (proc);
2031 register int opoint;
2032
2033#ifdef VMS
2034 VMS_PROC_STUFF *vs, *get_vms_process_pointer();
2035
2036 vs = get_vms_process_pointer (p->pid);
2037 if (vs)
2038 {
2039 if (!vs->iosb[0])
2040 return(0); /* Really weird if it does this */
2041 if (!(vs->iosb[0] & 1))
2042 return -1; /* I/O error */
2043 }
2044 else
2045 error ("Could not get VMS process pointer");
2046 chars = vs->inputBuffer;
2047 nchars = clean_vms_buffer (chars, vs->iosb[1]);
2048 if (nchars <= 0)
2049 {
2050 start_vms_process_read (vs); /* Crank up the next read on the process */
2051 return 1; /* Nothing worth printing, say we got 1 */
2052 }
2053#else /* not VMS */
2054
2055 if (proc_buffered_char[channel] < 0)
2056 nchars = read (channel, chars, sizeof chars);
2057 else
2058 {
2059 chars[0] = proc_buffered_char[channel];
2060 proc_buffered_char[channel] = -1;
2061 nchars = read (channel, chars + 1, sizeof chars - 1);
2062 if (nchars < 0)
2063 nchars = 1;
2064 else
2065 nchars = nchars + 1;
2066 }
2067#endif /* not VMS */
2068
2069 if (nchars <= 0) return nchars;
2070
2071 outstream = p->filter;
2072 if (!NILP (outstream))
2073 {
2074 /* We inhibit quit here instead of just catching it so that
2075 hitting ^G when a filter happens to be running won't screw
2076 it up. */
2077 int count = specpdl_ptr - specpdl;
30c78175
RS
2078 Lisp_Object odeactivate;
2079
2080 odeactivate = Vdeactivate_mark;
2081
d0d6b7c5
JB
2082 specbind (Qinhibit_quit, Qt);
2083 call2 (outstream, proc, make_string (chars, nchars));
2084
592ce97f 2085 /* Handling the process output should not deactivate the mark. */
30c78175
RS
2086 Vdeactivate_mark = odeactivate;
2087
d0d6b7c5
JB
2088#ifdef VMS
2089 start_vms_process_read (vs);
2090#endif
2091 unbind_to (count);
2092 return nchars;
2093 }
2094
2095 /* If no filter, write into buffer if it isn't dead. */
2096 if (!NILP (p->buffer) && !NILP (XBUFFER (p->buffer)->name))
2097 {
b0310da4
JB
2098 Lisp_Object old_read_only;
2099 Lisp_Object old_begv, old_zv;
30c78175
RS
2100 Lisp_Object odeactivate;
2101
2102 odeactivate = Vdeactivate_mark;
d0d6b7c5
JB
2103
2104 Fset_buffer (p->buffer);
2105 opoint = point;
b0310da4
JB
2106 old_read_only = current_buffer->read_only;
2107 XFASTINT (old_begv) = BEGV;
2108 XFASTINT (old_zv) = ZV;
2109
2110 current_buffer->read_only = Qnil;
d0d6b7c5
JB
2111
2112 /* Insert new output into buffer
2113 at the current end-of-output marker,
2114 thus preserving logical ordering of input and output. */
2115 if (XMARKER (p->mark)->buffer)
2116 SET_PT (marker_position (p->mark));
2117 else
2118 SET_PT (ZV);
b0310da4
JB
2119
2120 /* If the output marker is outside of the visible region, save
2121 the restriction and widen. */
2122 if (! (BEGV <= point && point <= ZV))
2123 Fwiden ();
2124
2125 /* Make sure opoint floats ahead of any new text, just as point
2126 would. */
d0d6b7c5
JB
2127 if (point <= opoint)
2128 opoint += nchars;
2129
b0310da4
JB
2130 /* Insert after old_begv, but before old_zv. */
2131 if (point < XFASTINT (old_begv))
2132 XFASTINT (old_begv) += nchars;
2133 if (point <= XFASTINT (old_zv))
2134 XFASTINT (old_zv) += nchars;
2135
d0d6b7c5
JB
2136 /* Insert before markers in case we are inserting where
2137 the buffer's mark is, and the user's next command is Meta-y. */
2138 insert_before_markers (chars, nchars);
d0d6b7c5 2139 Fset_marker (p->mark, make_number (point), p->buffer);
b0310da4 2140
d0d6b7c5
JB
2141 update_mode_lines++;
2142
b0310da4
JB
2143 /* If the restriction isn't what it should be, set it. */
2144 if (XFASTINT (old_begv) != BEGV || XFASTINT (old_zv) != ZV)
2145 Fnarrow_to_region (old_begv, old_zv);
2146
592ce97f 2147 /* Handling the process output should not deactivate the mark. */
30c78175
RS
2148 Vdeactivate_mark = odeactivate;
2149
b0310da4 2150 current_buffer->read_only = old_read_only;
d0d6b7c5
JB
2151 SET_PT (opoint);
2152 set_buffer_internal (old);
2153 }
2154#ifdef VMS
2155 start_vms_process_read (vs);
2156#endif
2157 return nchars;
2158}
2159
2160DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p, Swaiting_for_user_input_p,
2161 0, 0, 0,
2162 "Returns non-NIL if emacs is waiting for input from the user.\n\
2163This is intended for use by asynchronous process output filters and sentinels.")
2164 ()
2165{
2166 return ((waiting_for_user_input_p) ? Qt : Qnil);
2167}
2168\f
2169/* Sending data to subprocess */
2170
2171jmp_buf send_process_frame;
2172
2173SIGTYPE
2174send_process_trap ()
2175{
2176#ifdef BSD4_1
2177 sigrelse (SIGPIPE);
2178 sigrelse (SIGALRM);
2179#endif /* BSD4_1 */
2180 longjmp (send_process_frame, 1);
2181}
2182
2183send_process (proc, buf, len)
2184 Lisp_Object proc;
2185 char *buf;
2186 int len;
2187{
2188 /* Don't use register vars; longjmp can lose them. */
2189 int rv;
2190 unsigned char *procname = XSTRING (XPROCESS (proc)->name)->data;
2191
2192
2193#ifdef VMS
2194 struct Lisp_Process *p = XPROCESS (proc);
2195 VMS_PROC_STUFF *vs, *get_vms_process_pointer();
2196#endif /* VMS */
2197
2198 if (! NILP (XPROCESS (proc)->raw_status_low))
2199 update_status (XPROCESS (proc));
2200 if (! EQ (XPROCESS (proc)->status, Qrun))
2201 error ("Process %s not running", procname);
2202
2203#ifdef VMS
2204 vs = get_vms_process_pointer (p->pid);
2205 if (vs == 0)
2206 error ("Could not find this process: %x", p->pid);
2207 else if (write_to_vms_process (vs, buf, len))
2208 ;
2209#else
2210 if (!setjmp (send_process_frame))
2211 while (len > 0)
2212 {
2213 int this = len;
4746118a
JB
2214 SIGTYPE (*old_sigpipe)();
2215
d0d6b7c5
JB
2216 /* Don't send more than 500 bytes at a time. */
2217 if (this > 500)
2218 this = 500;
508b171c 2219 old_sigpipe = (SIGTYPE (*) ()) signal (SIGPIPE, send_process_trap);
a9f2c884 2220 rv = write (XINT (XPROCESS (proc)->outfd), buf, this);
4746118a 2221 signal (SIGPIPE, old_sigpipe);
d0d6b7c5
JB
2222 if (rv < 0)
2223 {
2224 if (0
2225#ifdef EWOULDBLOCK
2226 || errno == EWOULDBLOCK
2227#endif
2228#ifdef EAGAIN
2229 || errno == EAGAIN
2230#endif
2231 )
2232 {
2233 /* It would be nice to accept process output here,
2234 but that is difficult. For example, it could
2235 garbage what we are sending if that is from a buffer. */
2236 immediate_quit = 1;
2237 QUIT;
2238 sleep (1);
2239 immediate_quit = 0;
2240 continue;
2241 }
2242 report_file_error ("writing to process", Fcons (proc, Qnil));
2243 }
2244 buf += rv;
2245 len -= rv;
2246 /* Allow input from processes between bursts of sending.
2247 Otherwise things may get stopped up. */
2248 if (len > 0)
f76475ad
JB
2249 {
2250 Lisp_Object zero;
2251
2252 XFASTINT (zero) = 0;
2253 wait_reading_process_input (-1, 0, zero, 0);
2254 }
d0d6b7c5
JB
2255 }
2256#endif
2257 else
2258 {
2259 XPROCESS (proc)->raw_status_low = Qnil;
2260 XPROCESS (proc)->raw_status_high = Qnil;
2261 XPROCESS (proc)->status = Fcons (Qexit, Fcons (make_number (256), Qnil));
2262 XSETINT (XPROCESS (proc)->tick, ++process_tick);
2263 deactivate_process (proc);
2264#ifdef VMS
2265 error ("Error writing to process %s; closed it", procname);
2266#else
2267 error ("SIGPIPE raised on process %s; closed it", procname);
2268#endif
2269 }
2270}
2271
2272DEFUN ("process-send-region", Fprocess_send_region, Sprocess_send_region,
2273 3, 3, 0,
2274 "Send current contents of region as input to PROCESS.\n\
ebb9e16f
JB
2275PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
2276nil, indicating the current buffer's process.\n\
d0d6b7c5
JB
2277Called from program, takes three arguments, PROCESS, START and END.\n\
2278If the region is more than 500 characters long,\n\
2279it is sent in several bunches. This may happen even for shorter regions.\n\
2280Output from processes can arrive in between bunches.")
2281 (process, start, end)
2282 Lisp_Object process, start, end;
2283{
2284 Lisp_Object proc;
2285 int start1;
2286
2287 proc = get_process (process);
2288 validate_region (&start, &end);
2289
2290 if (XINT (start) < GPT && XINT (end) > GPT)
2291 move_gap (start);
2292
2293 start1 = XINT (start);
2294 send_process (proc, &FETCH_CHAR (start1), XINT (end) - XINT (start));
2295
2296 return Qnil;
2297}
2298
2299DEFUN ("process-send-string", Fprocess_send_string, Sprocess_send_string,
2300 2, 2, 0,
2301 "Send PROCESS the contents of STRING as input.\n\
ebb9e16f
JB
2302PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
2303nil, indicating the current buffer's process.\n\
d0d6b7c5
JB
2304If STRING is more than 500 characters long,\n\
2305it is sent in several bunches. This may happen even for shorter strings.\n\
2306Output from processes can arrive in between bunches.")
2307 (process, string)
2308 Lisp_Object process, string;
2309{
2310 Lisp_Object proc;
2311 CHECK_STRING (string, 1);
2312 proc = get_process (process);
2313 send_process (proc, XSTRING (string)->data, XSTRING (string)->size);
2314 return Qnil;
2315}
2316\f
2317/* send a signal number SIGNO to PROCESS.
2318 CURRENT_GROUP means send to the process group that currently owns
2319 the terminal being used to communicate with PROCESS.
2320 This is used for various commands in shell mode.
2321 If NOMSG is zero, insert signal-announcements into process's buffers
b0310da4
JB
2322 right away.
2323
2324 If we can, we try to signal PROCESS by sending control characters
2325 down the pipe. This allows us to signal inferiors who have changed
2326 their uid, for which killpg would return an EPERM error. */
d0d6b7c5 2327
f9738840 2328static void
d0d6b7c5
JB
2329process_send_signal (process, signo, current_group, nomsg)
2330 Lisp_Object process;
2331 int signo;
2332 Lisp_Object current_group;
2333 int nomsg;
2334{
2335 Lisp_Object proc;
2336 register struct Lisp_Process *p;
2337 int gid;
2338 int no_pgrp = 0;
2339
2340 proc = get_process (process);
2341 p = XPROCESS (proc);
2342
2343 if (!EQ (p->childp, Qt))
2344 error ("Process %s is not a subprocess",
2345 XSTRING (p->name)->data);
a9f2c884 2346 if (XINT (p->infd) < 0)
d0d6b7c5
JB
2347 error ("Process %s is not active",
2348 XSTRING (p->name)->data);
2349
2350 if (NILP (p->pty_flag))
2351 current_group = Qnil;
2352
d0d6b7c5
JB
2353 /* If we are using pgrps, get a pgrp number and make it negative. */
2354 if (!NILP (current_group))
2355 {
b0310da4 2356#ifdef SIGNALS_VIA_CHARACTERS
d0d6b7c5
JB
2357 /* If possible, send signals to the entire pgrp
2358 by sending an input character to it. */
b0310da4 2359
6be429b1
JB
2360 /* TERMIOS is the latest and bestest, and seems most likely to
2361 work. If the system has it, use it. */
2362#ifdef HAVE_TERMIOS
2363 struct termios t;
2364
2365 switch (signo)
2366 {
2367 case SIGINT:
a9f2c884 2368 tcgetattr (XINT (p->infd), &t);
6be429b1 2369 send_process (proc, &t.c_cc[VINTR], 1);
a87b802f 2370 return;
6be429b1
JB
2371
2372 case SIGQUIT:
a9f2c884 2373 tcgetattr (XINT (p->infd), &t);
6be429b1 2374 send_process (proc, &t.c_cc[VQUIT], 1);
a87b802f 2375 return;
6be429b1
JB
2376
2377 case SIGTSTP:
a9f2c884 2378 tcgetattr (XINT (p->infd), &t);
c14e53a4 2379#if defined (VSWTCH) && !defined (IRIX5)
6be429b1
JB
2380 send_process (proc, &t.c_cc[VSWTCH], 1);
2381#else
2382 send_process (proc, &t.c_cc[VSUSP], 1);
2383#endif
a87b802f 2384 return;
6be429b1
JB
2385 }
2386
2387#else /* ! HAVE_TERMIOS */
2388
b0310da4
JB
2389 /* On Berkeley descendants, the following IOCTL's retrieve the
2390 current control characters. */
d0d6b7c5 2391#if defined (TIOCGLTC) && defined (TIOCGETC)
b0310da4 2392
d0d6b7c5
JB
2393 struct tchars c;
2394 struct ltchars lc;
2395
2396 switch (signo)
2397 {
2398 case SIGINT:
a9f2c884 2399 ioctl (XINT (p->infd), TIOCGETC, &c);
d0d6b7c5 2400 send_process (proc, &c.t_intrc, 1);
f9738840 2401 return;
d0d6b7c5 2402 case SIGQUIT:
a9f2c884 2403 ioctl (XINT (p->infd), TIOCGETC, &c);
d0d6b7c5 2404 send_process (proc, &c.t_quitc, 1);
f9738840 2405 return;
0ad77c54 2406#ifdef SIGTSTP
d0d6b7c5 2407 case SIGTSTP:
a9f2c884 2408 ioctl (XINT (p->infd), TIOCGLTC, &lc);
d0d6b7c5 2409 send_process (proc, &lc.t_suspc, 1);
f9738840 2410 return;
b0310da4 2411#endif /* ! defined (SIGTSTP) */
d0d6b7c5 2412 }
b0310da4
JB
2413
2414#else /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
2415
2416 /* On SYSV descendants, the TCGETA ioctl retrieves the current control
2417 characters. */
2418#ifdef TCGETA
d0d6b7c5
JB
2419 struct termio t;
2420 switch (signo)
2421 {
2422 case SIGINT:
a9f2c884 2423 ioctl (XINT (p->infd), TCGETA, &t);
d0d6b7c5 2424 send_process (proc, &t.c_cc[VINTR], 1);
f9738840 2425 return;
d0d6b7c5 2426 case SIGQUIT:
a9f2c884 2427 ioctl (XINT (p->infd), TCGETA, &t);
d0d6b7c5 2428 send_process (proc, &t.c_cc[VQUIT], 1);
f9738840 2429 return;
7d79e3b4 2430#ifdef SIGTSTP
d0d6b7c5 2431 case SIGTSTP:
a9f2c884 2432 ioctl (XINT (p->infd), TCGETA, &t);
d0d6b7c5 2433 send_process (proc, &t.c_cc[VSWTCH], 1);
f9738840 2434 return;
b0310da4 2435#endif /* ! defined (SIGTSTP) */
d0d6b7c5 2436 }
b0310da4
JB
2437#else /* ! defined (TCGETA) */
2438 Your configuration files are messed up.
2439 /* If your system configuration files define SIGNALS_VIA_CHARACTERS,
2440 you'd better be using one of the alternatives above! */
2441#endif /* ! defined (TCGETA) */
2442#endif /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
6be429b1 2443#endif /* ! defined HAVE_TERMIOS */
b0310da4 2444#endif /* ! defined (SIGNALS_VIA_CHARACTERS) */
d0d6b7c5 2445
301c3fe4 2446#ifdef TIOCGPGRP
d0d6b7c5
JB
2447 /* Get the pgrp using the tty itself, if we have that.
2448 Otherwise, use the pty to get the pgrp.
2449 On pfa systems, saka@pfu.fujitsu.co.JP writes:
b0310da4
JB
2450 "TIOCGPGRP symbol defined in sys/ioctl.h at E50.
2451 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
d0d6b7c5
JB
2452 His patch indicates that if TIOCGPGRP returns an error, then
2453 we should just assume that p->pid is also the process group id. */
2454 {
2455 int err;
2456
2457 if (!NILP (p->subtty))
2458 err = ioctl (XFASTINT (p->subtty), TIOCGPGRP, &gid);
2459 else
a9f2c884 2460 err = ioctl (XINT (p->infd), TIOCGPGRP, &gid);
d0d6b7c5
JB
2461
2462#ifdef pfa
2463 if (err == -1)
2464 gid = - XFASTINT (p->pid);
301c3fe4 2465#endif /* ! defined (pfa) */
d0d6b7c5
JB
2466 }
2467 if (gid == -1)
2468 no_pgrp = 1;
2469 else
2470 gid = - gid;
b0310da4 2471#else /* ! defined (TIOCGPGRP ) */
301c3fe4
JB
2472 /* Can't select pgrps on this system, so we know that
2473 the child itself heads the pgrp. */
2474 gid = - XFASTINT (p->pid);
2475#endif /* ! defined (TIOCGPGRP ) */
d0d6b7c5
JB
2476 }
2477 else
2478 gid = - XFASTINT (p->pid);
d0d6b7c5
JB
2479
2480 switch (signo)
2481 {
2482#ifdef SIGCONT
2483 case SIGCONT:
2484 p->raw_status_low = Qnil;
2485 p->raw_status_high = Qnil;
2486 p->status = Qrun;
2487 XSETINT (p->tick, ++process_tick);
2488 if (!nomsg)
2489 status_notify ();
2490 break;
301c3fe4 2491#endif /* ! defined (SIGCONT) */
d0d6b7c5
JB
2492 case SIGINT:
2493#ifdef VMS
2494 send_process (proc, "\003", 1); /* ^C */
2495 goto whoosh;
2496#endif
2497 case SIGQUIT:
2498#ifdef VMS
2499 send_process (proc, "\031", 1); /* ^Y */
2500 goto whoosh;
2501#endif
2502 case SIGKILL:
2503#ifdef VMS
2504 sys$forcex (&(XFASTINT (p->pid)), 0, 1);
2505 whoosh:
2506#endif
a9f2c884 2507 flush_pending_output (XINT (p->infd));
d0d6b7c5
JB
2508 break;
2509 }
2510
2511 /* If we don't have process groups, send the signal to the immediate
2512 subprocess. That isn't really right, but it's better than any
2513 obvious alternative. */
2514 if (no_pgrp)
2515 {
2516 kill (XFASTINT (p->pid), signo);
2517 return;
2518 }
2519
2520 /* gid may be a pid, or minus a pgrp's number */
2521#ifdef TIOCSIGSEND
2522 if (!NILP (current_group))
a9f2c884 2523 ioctl (XINT (p->infd), TIOCSIGSEND, signo);
d0d6b7c5
JB
2524 else
2525 {
2526 gid = - XFASTINT (p->pid);
2527 kill (gid, signo);
2528 }
301c3fe4 2529#else /* ! defined (TIOCSIGSEND) */
d0d6b7c5 2530 EMACS_KILLPG (-gid, signo);
301c3fe4 2531#endif /* ! defined (TIOCSIGSEND) */
d0d6b7c5
JB
2532}
2533
2534DEFUN ("interrupt-process", Finterrupt_process, Sinterrupt_process, 0, 2, 0,
2535 "Interrupt process PROCESS. May be process or name of one.\n\
ebb9e16f 2536PROCESS may be a process, a buffer, or the name of a process or buffer.\n\
d0d6b7c5
JB
2537Nil or no arg means current buffer's process.\n\
2538Second arg CURRENT-GROUP non-nil means send signal to\n\
2539the current process-group of the process's controlling terminal\n\
2540rather than to the process's own process group.\n\
2541If the process is a shell, this means interrupt current subjob\n\
2542rather than the shell.")
2543 (process, current_group)
2544 Lisp_Object process, current_group;
2545{
2546 process_send_signal (process, SIGINT, current_group, 0);
2547 return process;
2548}
2549
2550DEFUN ("kill-process", Fkill_process, Skill_process, 0, 2, 0,
2551 "Kill process PROCESS. May be process or name of one.\n\
2552See function `interrupt-process' for more details on usage.")
2553 (process, current_group)
2554 Lisp_Object process, current_group;
2555{
2556 process_send_signal (process, SIGKILL, current_group, 0);
2557 return process;
2558}
2559
2560DEFUN ("quit-process", Fquit_process, Squit_process, 0, 2, 0,
2561 "Send QUIT signal to process PROCESS. May be process or name of one.\n\
2562See function `interrupt-process' for more details on usage.")
2563 (process, current_group)
2564 Lisp_Object process, current_group;
2565{
2566 process_send_signal (process, SIGQUIT, current_group, 0);
2567 return process;
2568}
2569
2570DEFUN ("stop-process", Fstop_process, Sstop_process, 0, 2, 0,
2571 "Stop process PROCESS. May be process or name of one.\n\
2572See function `interrupt-process' for more details on usage.")
2573 (process, current_group)
2574 Lisp_Object process, current_group;
2575{
2576#ifndef SIGTSTP
2577 error ("no SIGTSTP support");
2578#else
2579 process_send_signal (process, SIGTSTP, current_group, 0);
2580#endif
2581 return process;
2582}
2583
2584DEFUN ("continue-process", Fcontinue_process, Scontinue_process, 0, 2, 0,
2585 "Continue process PROCESS. May be process or name of one.\n\
2586See function `interrupt-process' for more details on usage.")
2587 (process, current_group)
2588 Lisp_Object process, current_group;
2589{
2590#ifdef SIGCONT
2591 process_send_signal (process, SIGCONT, current_group, 0);
2592#else
2593 error ("no SIGCONT support");
2594#endif
2595 return process;
2596}
2597
2598DEFUN ("signal-process", Fsignal_process, Ssignal_process,
2599 2, 2, "nProcess number: \nnSignal code: ",
2600 "Send the process with number PID the signal with code CODE.\n\
2601Both PID and CODE are integers.")
2602 (pid, sig)
2603 Lisp_Object pid, sig;
2604{
2605 CHECK_NUMBER (pid, 0);
2606 CHECK_NUMBER (sig, 1);
2607 return make_number (kill (XINT (pid), XINT (sig)));
2608}
2609
2610DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0,
2611 "Make PROCESS see end-of-file in its input.\n\
2612Eof comes after any text already sent to it.\n\
ebb9e16f
JB
2613PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
2614nil, indicating the current buffer's process.")
d0d6b7c5
JB
2615 (process)
2616 Lisp_Object process;
2617{
2618 Lisp_Object proc;
2619
2620 proc = get_process (process);
577d03d5
RS
2621
2622 /* Make sure the process is really alive. */
2623 if (! NILP (XPROCESS (proc)->raw_status_low))
2624 update_status (XPROCESS (proc));
2625 if (! EQ (XPROCESS (proc)->status, Qrun))
dcf970e6 2626 error ("Process %s not running", XSTRING (XPROCESS (proc)->name)->data);
577d03d5 2627
d0d6b7c5
JB
2628 /* Sending a zero-length record is supposed to mean eof
2629 when TIOCREMOTE is turned on. */
2630#ifdef DID_REMOTE
2631 {
2632 char buf[1];
a9f2c884 2633 write (XINT (XPROCESS (proc)->outfd), buf, 0);
d0d6b7c5
JB
2634 }
2635#else /* did not do TOICREMOTE */
2636#ifdef VMS
2637 send_process (proc, "\032", 1); /* ^z */
2638#else
2639 if (!NILP (XPROCESS (proc)->pty_flag))
2640 send_process (proc, "\004", 1);
2641 else
2642 {
a9f2c884
RS
2643 close (XINT (XPROCESS (proc)->outfd));
2644 XSET (XPROCESS (proc)->outfd, Lisp_Int, open (NULL_DEVICE, O_WRONLY));
d0d6b7c5
JB
2645 }
2646#endif /* VMS */
2647#endif /* did not do TOICREMOTE */
2648 return process;
2649}
2650
2651/* Kill all processes associated with `buffer'.
2652 If `buffer' is nil, kill all processes */
2653
2654kill_buffer_processes (buffer)
2655 Lisp_Object buffer;
2656{
2657 Lisp_Object tail, proc;
2658
2659 for (tail = Vprocess_alist; XGCTYPE (tail) == Lisp_Cons;
2660 tail = XCONS (tail)->cdr)
2661 {
2662 proc = XCONS (XCONS (tail)->car)->cdr;
2663 if (XGCTYPE (proc) == Lisp_Process
2664 && (NILP (buffer) || EQ (XPROCESS (proc)->buffer, buffer)))
2665 {
2666 if (NETCONN_P (proc))
2667 deactivate_process (proc);
a9f2c884 2668 else if (XINT (XPROCESS (proc)->infd) >= 0)
d0d6b7c5
JB
2669 process_send_signal (proc, SIGHUP, Qnil, 1);
2670 }
2671 }
2672}
2673\f
2674/* On receipt of a signal that a child status has changed,
2675 loop asking about children with changed statuses until
2676 the system says there are no more.
2677 All we do is change the status;
2678 we do not run sentinels or print notifications.
2679 That is saved for the next time keyboard input is done,
2680 in order to avoid timing errors. */
2681
2682/** WARNING: this can be called during garbage collection.
2683 Therefore, it must not be fooled by the presence of mark bits in
2684 Lisp objects. */
2685
2686/** USG WARNING: Although it is not obvious from the documentation
2687 in signal(2), on a USG system the SIGCLD handler MUST NOT call
2688 signal() before executing at least one wait(), otherwise the handler
2689 will be called again, resulting in an infinite loop. The relevant
2690 portion of the documentation reads "SIGCLD signals will be queued
2691 and the signal-catching function will be continually reentered until
2692 the queue is empty". Invoking signal() causes the kernel to reexamine
2693 the SIGCLD queue. Fred Fish, UniSoft Systems Inc. */
2694
2695SIGTYPE
2696sigchld_handler (signo)
2697 int signo;
2698{
2699 int old_errno = errno;
2700 Lisp_Object proc;
2701 register struct Lisp_Process *p;
6be429b1 2702 extern EMACS_TIME *input_available_clear_time;
d0d6b7c5
JB
2703
2704#ifdef BSD4_1
2705 extern int sigheld;
2706 sigheld |= sigbit (SIGCHLD);
2707#endif
2708
2709 while (1)
2710 {
2711 register int pid;
2712 WAITTYPE w;
2713 Lisp_Object tail;
2714
2715#ifdef WNOHANG
2716#ifndef WUNTRACED
2717#define WUNTRACED 0
2718#endif /* no WUNTRACED */
2719 /* Keep trying to get a status until we get a definitive result. */
2720 do
2721 {
2722 errno = 0;
2723 pid = wait3 (&w, WNOHANG | WUNTRACED, 0);
2724 }
2725 while (pid <= 0 && errno == EINTR);
2726
2727 if (pid <= 0)
2728 {
2729 /* A real failure. We have done all our job, so return. */
2730
2731 /* USG systems forget handlers when they are used;
2732 must reestablish each time */
2733#ifdef USG
2734 signal (signo, sigchld_handler); /* WARNING - must come after wait3() */
2735#endif
2736#ifdef BSD4_1
2737 sigheld &= ~sigbit (SIGCHLD);
2738 sigrelse (SIGCHLD);
2739#endif
2740 errno = old_errno;
2741 return;
2742 }
2743#else
2744 pid = wait (&w);
2745#endif /* no WNOHANG */
2746
2747 /* Find the process that signaled us, and record its status. */
2748
2749 p = 0;
2750 for (tail = Vprocess_alist; XSYMBOL (tail) != XSYMBOL (Qnil); tail = XCONS (tail)->cdr)
2751 {
2752 proc = XCONS (XCONS (tail)->car)->cdr;
2753 p = XPROCESS (proc);
2754 if (EQ (p->childp, Qt) && XFASTINT (p->pid) == pid)
2755 break;
2756 p = 0;
2757 }
2758
2759 /* Look for an asynchronous process whose pid hasn't been filled
2760 in yet. */
2761 if (p == 0)
2762 for (tail = Vprocess_alist; XSYMBOL (tail) != XSYMBOL (Qnil); tail = XCONS (tail)->cdr)
2763 {
2764 proc = XCONS (XCONS (tail)->car)->cdr;
2765 p = XPROCESS (proc);
2766 if (XTYPE (p->pid) == Lisp_Int && XINT (p->pid) == -1)
2767 break;
2768 p = 0;
2769 }
2770
2771 /* Change the status of the process that was found. */
2772 if (p != 0)
2773 {
2774 union { int i; WAITTYPE wt; } u;
2775
2776 XSETINT (p->tick, ++process_tick);
2777 u.wt = w;
2778 XFASTINT (p->raw_status_low) = u.i & 0xffff;
2779 XFASTINT (p->raw_status_high) = u.i >> 16;
2780
2781 /* If process has terminated, stop waiting for its output. */
2782 if (WIFSIGNALED (w) || WIFEXITED (w))
a9f2c884
RS
2783 if (XINT (p->infd) >= 0)
2784 FD_CLR (XINT (p->infd), &input_wait_mask);
6be429b1
JB
2785
2786 /* Tell wait_reading_process_input that it needs to wake up and
2787 look around. */
2788 if (input_available_clear_time)
2789 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
d0d6b7c5
JB
2790 }
2791
2792 /* There was no asynchronous process found for that id. Check
2793 if we have a synchronous process. */
2794 else
2795 {
2796 synch_process_alive = 0;
2797
2798 /* Report the status of the synchronous process. */
2799 if (WIFEXITED (w))
2800 synch_process_retcode = WRETCODE (w);
2801 else if (WIFSIGNALED (w))
b0310da4 2802#ifndef VMS
95e8068d 2803 synch_process_death = (char *) sys_siglist[WTERMSIG (w)];
b0310da4
JB
2804#else
2805 synch_process_death = sys_errlist[WTERMSIG (w)];
2806#endif
6be429b1
JB
2807
2808 /* Tell wait_reading_process_input that it needs to wake up and
2809 look around. */
2810 if (input_available_clear_time)
2811 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
d0d6b7c5
JB
2812 }
2813
2814 /* On some systems, we must return right away.
2815 If any more processes want to signal us, we will
2816 get another signal.
2817 Otherwise (on systems that have WNOHANG), loop around
2818 to use up all the processes that have something to tell us. */
2819#if defined (USG) && ! (defined (HPUX) && defined (WNOHANG))
2820#ifdef USG
2821 signal (signo, sigchld_handler);
2822#endif
2823 errno = old_errno;
2824 return;
2825#endif /* USG, but not HPUX with WNOHANG */
2826 }
2827}
2828\f
2829
2830static Lisp_Object
2831exec_sentinel_unwind (data)
2832 Lisp_Object data;
2833{
2834 XPROCESS (XCONS (data)->car)->sentinel = XCONS (data)->cdr;
2835 return Qnil;
2836}
2837
2838static void
2839exec_sentinel (proc, reason)
2840 Lisp_Object proc, reason;
2841{
2842 Lisp_Object sentinel;
2843 register struct Lisp_Process *p = XPROCESS (proc);
2844 int count = specpdl_ptr - specpdl;
2845
2846 sentinel = p->sentinel;
2847 if (NILP (sentinel))
2848 return;
2849
2850 /* Zilch the sentinel while it's running, to avoid recursive invocations;
2851 assure that it gets restored no matter how the sentinel exits. */
2852 p->sentinel = Qnil;
2853 record_unwind_protect (exec_sentinel_unwind, Fcons (proc, sentinel));
2854 /* Inhibit quit so that random quits don't screw up a running filter. */
2855 specbind (Qinhibit_quit, Qt);
2856 call2 (sentinel, proc, reason);
2857 unbind_to (count);
2858}
2859
2860/* Report all recent events of a change in process status
2861 (either run the sentinel or output a message).
2862 This is done while Emacs is waiting for keyboard input. */
2863
2864status_notify ()
2865{
2866 register Lisp_Object proc, buffer;
2867 Lisp_Object tail = Qnil;
2868 Lisp_Object msg = Qnil;
2869 struct gcpro gcpro1, gcpro2;
2870
2871 /* We need to gcpro tail; if read_process_output calls a filter
2872 which deletes a process and removes the cons to which tail points
2873 from Vprocess_alist, and then causes a GC, tail is an unprotected
2874 reference. */
2875 GCPRO2 (tail, msg);
2876
2877 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
2878 {
2879 Lisp_Object symbol;
2880 register struct Lisp_Process *p;
2881
2882 proc = Fcdr (Fcar (tail));
2883 p = XPROCESS (proc);
2884
2885 if (XINT (p->tick) != XINT (p->update_tick))
2886 {
2887 XSETINT (p->update_tick, XINT (p->tick));
2888
2889 /* If process is still active, read any output that remains. */
a9f2c884 2890 if (XINT (p->infd) >= 0)
20ddfff7 2891 while (! EQ (p->filter, Qt)
a9f2c884 2892 && read_process_output (proc, XINT (p->infd)) > 0);
d0d6b7c5
JB
2893
2894 buffer = p->buffer;
2895
2896 /* Get the text to use for the message. */
2897 if (!NILP (p->raw_status_low))
2898 update_status (p);
2899 msg = status_message (p->status);
2900
2901 /* If process is terminated, deactivate it or delete it. */
2902 symbol = p->status;
2903 if (XTYPE (p->status) == Lisp_Cons)
2904 symbol = XCONS (p->status)->car;
2905
2906 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit)
2907 || EQ (symbol, Qclosed))
2908 {
2909 if (delete_exited_processes)
2910 remove_process (proc);
2911 else
2912 deactivate_process (proc);
2913 }
2914
2915 /* Now output the message suitably. */
2916 if (!NILP (p->sentinel))
2917 exec_sentinel (proc, msg);
2918 /* Don't bother with a message in the buffer
2919 when a process becomes runnable. */
2920 else if (!EQ (symbol, Qrun) && !NILP (buffer))
2921 {
2922 Lisp_Object ro = XBUFFER (buffer)->read_only;
2923 Lisp_Object tem;
2924 struct buffer *old = current_buffer;
2925 int opoint;
2926
2927 /* Avoid error if buffer is deleted
2928 (probably that's why the process is dead, too) */
2929 if (NILP (XBUFFER (buffer)->name))
2930 continue;
2931 Fset_buffer (buffer);
2932 opoint = point;
2933 /* Insert new output into buffer
2934 at the current end-of-output marker,
2935 thus preserving logical ordering of input and output. */
2936 if (XMARKER (p->mark)->buffer)
2937 SET_PT (marker_position (p->mark));
2938 else
2939 SET_PT (ZV);
2940 if (point <= opoint)
2941 opoint += XSTRING (msg)->size + XSTRING (p->name)->size + 10;
2942
2943 tem = current_buffer->read_only;
2944 current_buffer->read_only = Qnil;
2945 insert_string ("\nProcess ");
2946 Finsert (1, &p->name);
2947 insert_string (" ");
2948 Finsert (1, &msg);
2949 current_buffer->read_only = tem;
2950 Fset_marker (p->mark, make_number (point), p->buffer);
2951
2952 SET_PT (opoint);
2953 set_buffer_internal (old);
2954 }
2955 }
2956 } /* end for */
2957
2958 update_mode_lines++; /* in case buffers use %s in mode-line-format */
2959 redisplay_preserve_echo_area ();
2960
2961 update_tick = process_tick;
2962
2963 UNGCPRO;
2964}
2965\f
2966init_process ()
2967{
2968 register int i;
2969
2970#ifdef SIGCHLD
2971#ifndef CANNOT_DUMP
2972 if (! noninteractive || initialized)
2973#endif
2974 signal (SIGCHLD, sigchld_handler);
2975#endif
2976
2977 FD_ZERO (&input_wait_mask);
dd2281ae
RS
2978
2979 keyboard_descriptor = 0;
2980 FD_SET (keyboard_descriptor, &input_wait_mask);
2981
d0d6b7c5
JB
2982 Vprocess_alist = Qnil;
2983 for (i = 0; i < MAXDESC; i++)
2984 {
2985 chan_process[i] = Qnil;
2986 proc_buffered_char[i] = -1;
2987 }
2988}
312c9964 2989
dd2281ae
RS
2990/* From now on, assume keyboard input comes from descriptor DESC. */
2991
2992void
2993change_keyboard_wait_descriptor (desc)
2994 int desc;
2995{
2996 FD_CLR (keyboard_descriptor, &input_wait_mask);
2997 keyboard_descriptor = desc;
2998 FD_SET (keyboard_descriptor, &input_wait_mask);
2999}
3000
d0d6b7c5
JB
3001syms_of_process ()
3002{
d0d6b7c5
JB
3003#ifdef HAVE_SOCKETS
3004 stream_process = intern ("stream");
3005#endif
3006 Qprocessp = intern ("processp");
3007 staticpro (&Qprocessp);
3008 Qrun = intern ("run");
3009 staticpro (&Qrun);
3010 Qstop = intern ("stop");
3011 staticpro (&Qstop);
3012 Qsignal = intern ("signal");
3013 staticpro (&Qsignal);
3014
3015 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
3016 here again.
3017
3018 Qexit = intern ("exit");
3019 staticpro (&Qexit); */
3020
3021 Qopen = intern ("open");
3022 staticpro (&Qopen);
3023 Qclosed = intern ("closed");
3024 staticpro (&Qclosed);
3025
3026 staticpro (&Vprocess_alist);
3027
3028 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes,
3029 "*Non-nil means delete processes immediately when they exit.\n\
3030nil means don't delete them until `list-processes' is run.");
3031
3032 delete_exited_processes = 1;
3033
3034 DEFVAR_LISP ("process-connection-type", &Vprocess_connection_type,
3035 "Control type of device used to communicate with subprocesses.\n\
3036Values are nil to use a pipe, and t or 'pty for a pty. Note that if\n\
3037pty's are not available, this variable will be ignored. The value takes\n\
3038effect when `start-process' is called.");
3039 Vprocess_connection_type = Qt;
3040
3041 defsubr (&Sprocessp);
3042 defsubr (&Sget_process);
3043 defsubr (&Sget_buffer_process);
3044 defsubr (&Sdelete_process);
3045 defsubr (&Sprocess_status);
3046 defsubr (&Sprocess_exit_status);
3047 defsubr (&Sprocess_id);
3048 defsubr (&Sprocess_name);
3049 defsubr (&Sprocess_command);
3050 defsubr (&Sset_process_buffer);
3051 defsubr (&Sprocess_buffer);
3052 defsubr (&Sprocess_mark);
3053 defsubr (&Sset_process_filter);
3054 defsubr (&Sprocess_filter);
3055 defsubr (&Sset_process_sentinel);
3056 defsubr (&Sprocess_sentinel);
3057 defsubr (&Sprocess_kill_without_query);
3058 defsubr (&Slist_processes);
3059 defsubr (&Sprocess_list);
3060 defsubr (&Sstart_process);
3061#ifdef HAVE_SOCKETS
3062 defsubr (&Sopen_network_stream);
3063#endif /* HAVE_SOCKETS */
3064 defsubr (&Saccept_process_output);
3065 defsubr (&Sprocess_send_region);
3066 defsubr (&Sprocess_send_string);
3067 defsubr (&Sinterrupt_process);
3068 defsubr (&Skill_process);
3069 defsubr (&Squit_process);
3070 defsubr (&Sstop_process);
3071 defsubr (&Scontinue_process);
3072 defsubr (&Sprocess_send_eof);
3073 defsubr (&Ssignal_process);
3074 defsubr (&Swaiting_for_user_input_p);
3075/* defsubr (&Sprocess_connection); */
3076}
3077
6720a7fb
JB
3078\f
3079#else /* not subprocesses */
3080
3081#include <sys/types.h>
3082#include <errno.h>
3083
3084#include "lisp.h"
3085#include "systime.h"
3086#include "termopts.h"
3087
ff11dfa1 3088extern int frame_garbaged;
6720a7fb
JB
3089
3090
3091/* As described above, except assuming that there are no subprocesses:
3092
3093 Wait for timeout to elapse and/or keyboard input to be available.
3094
3095 time_limit is:
3096 timeout in seconds, or
3097 zero for no limit, or
3098 -1 means gobble data immediately available but don't wait for any.
3099
f76475ad 3100 read_kbd is a Lisp_Object:
6720a7fb
JB
3101 0 to ignore keyboard input, or
3102 1 to return when input is available, or
3103 -1 means caller will actually read the input, so don't throw to
3104 the quit handler.
3105 We know that read_kbd will never be a Lisp_Process, since
3106 `subprocesses' isn't defined.
3107
3108 do_display != 0 means redisplay should be done to show subprocess
3109 output that arrives. This version of the function ignores it.
3110
eb8c3be9 3111 Return true iff we received input from any process. */
6720a7fb
JB
3112
3113int
3114wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
f76475ad
JB
3115 int time_limit, microsecs;
3116 Lisp_Object read_kbd;
3117 int do_display;
6720a7fb
JB
3118{
3119 EMACS_TIME end_time, timeout, *timeout_p;
3120 int waitchannels;
3121
3122 /* What does time_limit really mean? */
3123 if (time_limit || microsecs)
3124 {
3125 /* It's not infinite. */
3126 timeout_p = &timeout;
3127
3128 if (time_limit == -1)
3129 /* In fact, it's zero. */
3130 EMACS_SET_SECS_USECS (timeout, 0, 0);
3131 else
3132 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
3133
3134 /* How far in the future is that? */
3135 EMACS_GET_TIME (end_time);
3136 EMACS_ADD_TIME (end_time, end_time, timeout);
3137 }
3138 else
3139 /* It's infinite. */
3140 timeout_p = 0;
3141
99e3d726
RS
3142 /* This must come before stop_polling. */
3143 prepare_menu_bars ();
3144
6720a7fb
JB
3145 /* Turn off periodic alarms (in case they are in use)
3146 because the select emulator uses alarms. */
3147 stop_polling ();
3148
3149 for (;;)
3150 {
3151 int nfds;
3152
f76475ad 3153 waitchannels = XINT (read_kbd) ? 1 : 0;
6720a7fb
JB
3154
3155 /* If calling from keyboard input, do not quit
3156 since we want to return C-g as an input character.
3157 Otherwise, do pending quit if requested. */
f76475ad 3158 if (XINT (read_kbd) >= 0)
6720a7fb
JB
3159 QUIT;
3160
3161 if (timeout_p)
3162 {
3163 EMACS_GET_TIME (*timeout_p);
3164 EMACS_SUB_TIME (*timeout_p, end_time, *timeout_p);
3165 if (EMACS_TIME_NEG_P (*timeout_p))
3166 break;
3167 }
3168
3169 /* Cause C-g and alarm signals to take immediate action,
3170 and cause input available signals to zero out timeout. */
f76475ad 3171 if (XINT (read_kbd) < 0)
6720a7fb
JB
3172 set_waiting_for_input (&timeout);
3173
ff11dfa1 3174 /* If a frame has been newly mapped and needs updating,
6720a7fb 3175 reprocess its display stuff. */
ff11dfa1 3176 if (frame_garbaged)
6720a7fb
JB
3177 redisplay_preserve_echo_area ();
3178
f76475ad 3179 if (XINT (read_kbd) && detect_input_pending ())
6720a7fb
JB
3180 nfds = 0;
3181 else
3182 nfds = select (1, &waitchannels, 0, 0, timeout_p);
3183
3184 /* Make C-g and alarm signals set flags again */
3185 clear_waiting_for_input ();
3186
3187 /* If we woke up due to SIGWINCH, actually change size now. */
3188 do_pending_window_change ();
3189
3190 if (nfds == -1)
3191 {
3192 /* If the system call was interrupted, then go around the
3193 loop again. */
3194 if (errno == EINTR)
3195 waitchannels = 0;
3196 }
3197#ifdef sun
3198 else if (nfds > 0 && (waitchannels & 1) && interrupt_input)
3199 /* System sometimes fails to deliver SIGIO. */
3200 kill (getpid (), SIGIO);
3201#endif
7324d660 3202#ifdef SIGIO
f76475ad 3203 if (XINT (read_kbd) && interrupt_input && (waitchannels & 1))
6720a7fb 3204 kill (0, SIGIO);
7324d660 3205#endif
6720a7fb
JB
3206
3207 /* If we have timed out (nfds == 0) or found some input (nfds > 0),
3208 we should exit. */
3209 if (nfds >= 0)
3210 break;
3211 }
3212
a87b802f
JB
3213 start_polling ();
3214
6720a7fb
JB
3215 return 0;
3216}
3217
3218
3219DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
312c9964
RS
3220 /* Don't confused make-docfile by having two doc strings for this function.
3221 make-docfile does not pay attention to #if, for good reason! */
3222 0)
6720a7fb
JB
3223 (name)
3224 register Lisp_Object name;
3225{
3226 return Qnil;
3227}
3228
3229/* Kill all processes associated with `buffer'.
3230 If `buffer' is nil, kill all processes.
3231 Since we have no subprocesses, this does nothing. */
3232
3233kill_buffer_processes (buffer)
3234 Lisp_Object buffer;
3235{
3236}
3237
3238init_process ()
3239{
3240}
3241
3242syms_of_process ()
3243{
3244 defsubr (&Sget_buffer_process);
3245}
3246
3247\f
3248#endif /* not subprocesses */