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