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