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