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