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