Mercurial > emacs
annotate src/process.c @ 21049:01e626b0a624
(Vdefault_file_name_coding_system): Extern it.
(create_process): Use ENCODE_FILE.
| author | Kenichi Handa <handa@m17n.org> |
|---|---|
| date | Tue, 03 Mar 1998 07:18:46 +0000 |
| parents | 5e983ddb85c9 |
| children | 73f8ae8312c8 |
| rev | line source |
|---|---|
| 578 | 1 /* Asynchronous subprocess control for GNU Emacs. |
| 20708 | 2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 96, 1998 |
|
14405
4aa693528ee3
(create_process): Set outchannel to be non-blocking.
Richard M. Stallman <rms@gnu.org>
parents:
14404
diff
changeset
|
3 Free Software Foundation, Inc. |
| 578 | 4 |
| 5 This file is part of GNU Emacs. | |
| 6 | |
| 7 GNU Emacs is free software; you can redistribute it and/or modify | |
| 8 it under the terms of the GNU General Public License as published by | |
|
1780
d01c59bac5c1
* frame.h (FRAME_SAMPLE_VISIBILITY): Make sure frame is marked as
Jim Blandy <jimb@redhat.com>
parents:
1683
diff
changeset
|
9 the Free Software Foundation; either version 2, or (at your option) |
| 578 | 10 any later version. |
| 11 | |
| 12 GNU Emacs is distributed in the hope that it will be useful, | |
| 13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 GNU General Public License for more details. | |
| 16 | |
| 17 You should have received a copy of the GNU General Public License | |
| 18 along with GNU Emacs; see the file COPYING. If not, write to | |
|
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14131
diff
changeset
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
|
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14131
diff
changeset
|
20 Boston, MA 02111-1307, USA. */ |
| 578 | 21 |
| 22 | |
| 23 #include <signal.h> | |
| 24 | |
|
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4682
diff
changeset
|
25 #include <config.h> |
| 578 | 26 |
| 588 | 27 /* This file is split into two parts by the following preprocessor |
| 28 conditional. The 'then' clause contains all of the support for | |
| 29 asynchronous subprocesses. The 'else' clause contains stub | |
| 30 versions of some of the asynchronous subprocess routines that are | |
| 31 often called elsewhere in Emacs, so we don't have to #ifdef the | |
| 32 sections that call them. */ | |
| 33 | |
| 34 | |
| 578 | 35 #ifdef subprocesses |
| 36 | |
| 37 #include <stdio.h> | |
| 38 #include <errno.h> | |
| 39 #include <setjmp.h> | |
| 40 #include <sys/types.h> /* some typedefs are used in sys/file.h */ | |
| 41 #include <sys/file.h> | |
| 42 #include <sys/stat.h> | |
| 6158 | 43 #ifdef HAVE_UNISTD_H |
| 44 #include <unistd.h> | |
| 45 #endif | |
| 578 | 46 |
|
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
47 #ifdef WINDOWSNT |
|
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
48 #include <stdlib.h> |
|
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
49 #include <fcntl.h> |
|
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
50 #endif /* not WINDOWSNT */ |
|
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
51 |
| 578 | 52 #ifdef HAVE_SOCKETS /* TCP connection support, if kernel can do it */ |
| 53 #include <sys/socket.h> | |
| 54 #include <netdb.h> | |
| 55 #include <netinet/in.h> | |
| 56 #include <arpa/inet.h> | |
|
12749
ce48ec025b0a
Maybe include net/errno.h.
Richard M. Stallman <rms@gnu.org>
parents:
12648
diff
changeset
|
57 #ifdef NEED_NET_ERRNO_H |
|
ce48ec025b0a
Maybe include net/errno.h.
Richard M. Stallman <rms@gnu.org>
parents:
12648
diff
changeset
|
58 #include <net/errno.h> |
|
ce48ec025b0a
Maybe include net/errno.h.
Richard M. Stallman <rms@gnu.org>
parents:
12648
diff
changeset
|
59 #endif /* NEED_NET_ERRNO_H */ |
| 578 | 60 #endif /* HAVE_SOCKETS */ |
| 61 | |
|
4914
56bc426b1eb4
[TERM]: Include client.h.
Richard M. Stallman <rms@gnu.org>
parents:
4883
diff
changeset
|
62 /* TERM is a poor-man's SLIP, used on Linux. */ |
|
56bc426b1eb4
[TERM]: Include client.h.
Richard M. Stallman <rms@gnu.org>
parents:
4883
diff
changeset
|
63 #ifdef TERM |
|
56bc426b1eb4
[TERM]: Include client.h.
Richard M. Stallman <rms@gnu.org>
parents:
4883
diff
changeset
|
64 #include <client.h> |
|
56bc426b1eb4
[TERM]: Include client.h.
Richard M. Stallman <rms@gnu.org>
parents:
4883
diff
changeset
|
65 #endif |
|
56bc426b1eb4
[TERM]: Include client.h.
Richard M. Stallman <rms@gnu.org>
parents:
4883
diff
changeset
|
66 |
|
7238
c9598edda1a2
(IN_ADDR, NUMERIC_ADDR_ERROR): Made conditional on HAVE_BROKEN_INET_ADDR.
Paul Reilly <pmr@pajato.com>
parents:
7220
diff
changeset
|
67 /* On some systems, e.g. DGUX, inet_addr returns a 'struct in_addr'. */ |
|
c9598edda1a2
(IN_ADDR, NUMERIC_ADDR_ERROR): Made conditional on HAVE_BROKEN_INET_ADDR.
Paul Reilly <pmr@pajato.com>
parents:
7220
diff
changeset
|
68 #ifdef HAVE_BROKEN_INET_ADDR |
|
4998
3cd3a39f98f4
(IN_ADDR, NUMERIC_ADDR_ERROR): New macros (two versions).
Richard M. Stallman <rms@gnu.org>
parents:
4994
diff
changeset
|
69 #define IN_ADDR struct in_addr |
|
3cd3a39f98f4
(IN_ADDR, NUMERIC_ADDR_ERROR): New macros (two versions).
Richard M. Stallman <rms@gnu.org>
parents:
4994
diff
changeset
|
70 #define NUMERIC_ADDR_ERROR (numeric_addr.s_addr == -1) |
|
3cd3a39f98f4
(IN_ADDR, NUMERIC_ADDR_ERROR): New macros (two versions).
Richard M. Stallman <rms@gnu.org>
parents:
4994
diff
changeset
|
71 #else |
|
3cd3a39f98f4
(IN_ADDR, NUMERIC_ADDR_ERROR): New macros (two versions).
Richard M. Stallman <rms@gnu.org>
parents:
4994
diff
changeset
|
72 #define IN_ADDR unsigned long |
|
3cd3a39f98f4
(IN_ADDR, NUMERIC_ADDR_ERROR): New macros (two versions).
Richard M. Stallman <rms@gnu.org>
parents:
4994
diff
changeset
|
73 #define NUMERIC_ADDR_ERROR (numeric_addr == -1) |
|
3cd3a39f98f4
(IN_ADDR, NUMERIC_ADDR_ERROR): New macros (two versions).
Richard M. Stallman <rms@gnu.org>
parents:
4994
diff
changeset
|
74 #endif |
|
3cd3a39f98f4
(IN_ADDR, NUMERIC_ADDR_ERROR): New macros (two versions).
Richard M. Stallman <rms@gnu.org>
parents:
4994
diff
changeset
|
75 |
|
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
16206
diff
changeset
|
76 #if defined(BSD_SYSTEM) || defined(STRIDE) |
| 578 | 77 #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
|
78 #if !defined (O_NDELAY) && defined (HAVE_PTYS) && !defined(USG5) |
| 578 | 79 #include <fcntl.h> |
| 80 #endif /* HAVE_PTYS and no O_NDELAY */ | |
|
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
16206
diff
changeset
|
81 #endif /* BSD_SYSTEM || STRIDE */ |
| 578 | 82 |
|
5240
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
83 #ifdef BROKEN_O_NONBLOCK |
|
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
84 #undef O_NONBLOCK |
|
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
85 #endif /* BROKEN_O_NONBLOCK */ |
|
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
86 |
| 578 | 87 #ifdef NEED_BSDTTY |
| 88 #include <bsdtty.h> | |
| 89 #endif | |
| 90 | |
| 91 #ifdef IRIS | |
| 92 #include <sys/sysmacros.h> /* for "minor" */ | |
| 93 #endif /* not IRIS */ | |
| 94 | |
| 95 #include "systime.h" | |
|
1047
1ab1ed32e82a
* process.c: Include "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1030
diff
changeset
|
96 #include "systty.h" |
| 578 | 97 |
| 98 #include "lisp.h" | |
| 99 #include "window.h" | |
| 100 #include "buffer.h" | |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
101 #include "charset.h" |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
102 #include "coding.h" |
| 578 | 103 #include "process.h" |
| 104 #include "termhooks.h" | |
| 105 #include "termopts.h" | |
| 106 #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
|
107 #include "frame.h" |
| 16780 | 108 #include "blockinput.h" |
| 578 | 109 |
|
18492
668304de6f92
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
18378
diff
changeset
|
110 #define max(a, b) ((a) > (b) ? (a) : (b)) |
|
668304de6f92
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
18378
diff
changeset
|
111 |
|
4682
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
112 Lisp_Object Qprocessp; |
| 578 | 113 Lisp_Object Qrun, Qstop, Qsignal, Qopen, Qclosed; |
|
8231
5226ed89c1a6
(Qlast_nonmenu_event): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8063
diff
changeset
|
114 Lisp_Object Qlast_nonmenu_event; |
| 578 | 115 /* Qexit is declared and initialized in eval.c. */ |
| 116 | |
| 117 /* a process object is a network connection when its childp field is neither | |
|
16058
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
118 Qt nor Qnil but is instead a cons cell (HOSTNAME PORTNUM). */ |
| 578 | 119 |
| 120 #ifdef HAVE_SOCKETS | |
|
16058
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
121 #define NETCONN_P(p) (GC_CONSP (XPROCESS (p)->childp)) |
| 578 | 122 #else |
| 123 #define NETCONN_P(p) 0 | |
| 124 #endif /* HAVE_SOCKETS */ | |
| 125 | |
| 126 /* Define first descriptor number available for subprocesses. */ | |
| 127 #ifdef VMS | |
| 128 #define FIRST_PROC_DESC 1 | |
| 129 #else /* Not VMS */ | |
| 130 #define FIRST_PROC_DESC 3 | |
| 131 #endif | |
| 132 | |
| 133 /* Define SIGCHLD as an alias for SIGCLD. There are many conditionals | |
| 134 testing SIGCHLD. */ | |
| 135 | |
| 136 #if !defined (SIGCHLD) && defined (SIGCLD) | |
| 137 #define SIGCHLD SIGCLD | |
| 138 #endif /* SIGCLD */ | |
| 139 | |
| 140 #include "syssignal.h" | |
| 141 | |
| 4639 | 142 #include "syswait.h" |
| 578 | 143 |
| 5543 | 144 extern int errno; |
| 145 extern char *strerror (); | |
| 146 #ifdef VMS | |
| 578 | 147 extern char *sys_errlist[]; |
| 5543 | 148 #endif |
| 578 | 149 |
|
8331
14ddb4c66461
[!HAVE_H_ERRNO]: Declare h_errno.
Richard M. Stallman <rms@gnu.org>
parents:
8287
diff
changeset
|
150 #ifndef HAVE_H_ERRNO |
|
14ddb4c66461
[!HAVE_H_ERRNO]: Declare h_errno.
Richard M. Stallman <rms@gnu.org>
parents:
8287
diff
changeset
|
151 extern int h_errno; |
|
14ddb4c66461
[!HAVE_H_ERRNO]: Declare h_errno.
Richard M. Stallman <rms@gnu.org>
parents:
8287
diff
changeset
|
152 #endif |
|
14ddb4c66461
[!HAVE_H_ERRNO]: Declare h_errno.
Richard M. Stallman <rms@gnu.org>
parents:
8287
diff
changeset
|
153 |
|
5891
ffe51baf2728
(sys_siglist): Protect decl with #ifndef SYS_SIGLIST_DECLARED.
Roland McGrath <roland@gnu.org>
parents:
5846
diff
changeset
|
154 #ifndef SYS_SIGLIST_DECLARED |
| 578 | 155 #ifndef VMS |
| 156 #ifndef BSD4_1 | |
|
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
157 #ifndef WINDOWSNT |
|
3023
cfd999700613
(create_process): Ignore retval from TIOCSTTY.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
158 #ifndef LINUX |
| 578 | 159 extern char *sys_siglist[]; |
| 5534 | 160 #endif /* not LINUX */ |
| 161 #else /* BSD4_1 */ | |
| 578 | 162 char *sys_siglist[] = |
| 163 { | |
| 164 "bum signal!!", | |
| 165 "hangup", | |
| 166 "interrupt", | |
| 167 "quit", | |
| 168 "illegal instruction", | |
| 169 "trace trap", | |
| 170 "iot instruction", | |
| 171 "emt instruction", | |
| 172 "floating point exception", | |
| 173 "kill", | |
| 174 "bus error", | |
| 175 "segmentation violation", | |
| 176 "bad argument to system call", | |
| 177 "write on a pipe with no one to read it", | |
| 178 "alarm clock", | |
| 179 "software termination signal from kill", | |
| 180 "status signal", | |
| 181 "sendable stop signal not from tty", | |
| 182 "stop signal from tty", | |
| 183 "continue a stopped process", | |
| 184 "child status has changed", | |
| 185 "background read attempted from control tty", | |
| 186 "background write attempted from control tty", | |
| 187 "input record available at control tty", | |
| 188 "exceeded CPU time limit", | |
| 189 "exceeded file size limit" | |
| 190 }; | |
|
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
191 #endif /* not WINDOWSNT */ |
| 578 | 192 #endif |
| 193 #endif /* VMS */ | |
|
5891
ffe51baf2728
(sys_siglist): Protect decl with #ifndef SYS_SIGLIST_DECLARED.
Roland McGrath <roland@gnu.org>
parents:
5846
diff
changeset
|
194 #endif /* ! SYS_SIGLIST_DECLARED */ |
| 578 | 195 |
| 196 /* t means use pty, nil means use a pipe, | |
| 197 maybe other values to come. */ | |
|
4682
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
198 static Lisp_Object Vprocess_connection_type; |
| 578 | 199 |
| 200 #ifdef SKTPAIR | |
| 201 #ifndef HAVE_SOCKETS | |
| 202 #include <sys/socket.h> | |
| 203 #endif | |
| 204 #endif /* SKTPAIR */ | |
| 205 | |
|
10548
dcae4394587d
(process_tick, update_tick): Make non-static.
Karl Heuer <kwzh@gnu.org>
parents:
10527
diff
changeset
|
206 /* These next two vars are non-static since sysdep.c uses them in the |
|
dcae4394587d
(process_tick, update_tick): Make non-static.
Karl Heuer <kwzh@gnu.org>
parents:
10527
diff
changeset
|
207 emulation of `select'. */ |
| 578 | 208 /* Number of events of change of status of a process. */ |
|
10548
dcae4394587d
(process_tick, update_tick): Make non-static.
Karl Heuer <kwzh@gnu.org>
parents:
10527
diff
changeset
|
209 int process_tick; |
| 578 | 210 /* Number of events for which the user or sentinel has been notified. */ |
|
10548
dcae4394587d
(process_tick, update_tick): Make non-static.
Karl Heuer <kwzh@gnu.org>
parents:
10527
diff
changeset
|
211 int update_tick; |
| 578 | 212 |
|
10527
68b8191091a7
#include sysselect.h instead of defining things by hand.
Karl Heuer <kwzh@gnu.org>
parents:
10032
diff
changeset
|
213 #include "sysselect.h" |
| 578 | 214 |
|
13414
b035c6e41457
[HAVE_NTGUI] (POLL_FOR_INPUT): Define macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13159
diff
changeset
|
215 /* If we support a window system, turn on the code to poll periodically |
|
7486
cfe4840ffde9
(Fopen_network_stream): Call bind_polling_period; later unbind the binding.
Richard M. Stallman <rms@gnu.org>
parents:
7454
diff
changeset
|
216 to detect C-g. It isn't actually used when doing interrupt input. */ |
|
13414
b035c6e41457
[HAVE_NTGUI] (POLL_FOR_INPUT): Define macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13159
diff
changeset
|
217 #ifdef HAVE_WINDOW_SYSTEM |
|
7486
cfe4840ffde9
(Fopen_network_stream): Call bind_polling_period; later unbind the binding.
Richard M. Stallman <rms@gnu.org>
parents:
7454
diff
changeset
|
218 #define POLL_FOR_INPUT |
|
cfe4840ffde9
(Fopen_network_stream): Call bind_polling_period; later unbind the binding.
Richard M. Stallman <rms@gnu.org>
parents:
7454
diff
changeset
|
219 #endif |
|
cfe4840ffde9
(Fopen_network_stream): Call bind_polling_period; later unbind the binding.
Richard M. Stallman <rms@gnu.org>
parents:
7454
diff
changeset
|
220 |
|
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
221 /* Mask of bits indicating the descriptors that we wait for input on. */ |
| 578 | 222 |
|
4682
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
223 static SELECT_TYPE input_wait_mask; |
|
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
224 |
|
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
225 /* Mask that excludes keyboard input descriptor (s). */ |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
226 |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
227 static SELECT_TYPE non_keyboard_wait_mask; |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
228 |
|
17224
dd2545e79add
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
17110
diff
changeset
|
229 /* Mask that excludes process input descriptor (s). */ |
|
dd2545e79add
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
17110
diff
changeset
|
230 |
|
dd2545e79add
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
17110
diff
changeset
|
231 static SELECT_TYPE non_process_wait_mask; |
|
dd2545e79add
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
17110
diff
changeset
|
232 |
|
7044
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
233 /* The largest descriptor currently in use for a process object. */ |
|
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
234 static int max_process_desc; |
|
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
235 |
|
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
236 /* The largest descriptor currently in use for keyboard input. */ |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
237 static int max_keyboard_desc; |
|
4682
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
238 |
|
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
239 /* Nonzero means delete a process right away if it exits. */ |
|
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
240 static int delete_exited_processes; |
| 578 | 241 |
| 242 /* Indexed by descriptor, gives the process (if any) for that descriptor */ | |
|
6164
d047d5a48e0e
(chan_process, Vprocess_alist): No longer static.
Richard M. Stallman <rms@gnu.org>
parents:
6158
diff
changeset
|
243 Lisp_Object chan_process[MAXDESC]; |
| 578 | 244 |
| 245 /* Alist of elements (NAME . PROCESS) */ | |
|
6164
d047d5a48e0e
(chan_process, Vprocess_alist): No longer static.
Richard M. Stallman <rms@gnu.org>
parents:
6158
diff
changeset
|
246 Lisp_Object Vprocess_alist; |
| 578 | 247 |
| 248 /* Buffered-ahead input char from process, indexed by channel. | |
| 249 -1 means empty (no char is buffered). | |
| 250 Used on sys V where the only way to tell if there is any | |
| 251 output from the process is to read at least one char. | |
| 252 Always -1 on systems that support FIONREAD. */ | |
| 253 | |
|
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
254 /* Don't make static; need to access externally. */ |
|
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
255 int proc_buffered_char[MAXDESC]; |
|
4682
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
256 |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
257 /* Table of `struct coding-system' for each process. */ |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
258 static struct coding_system *proc_decode_coding_system[MAXDESC]; |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
259 static struct coding_system *proc_encode_coding_system[MAXDESC]; |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
260 |
|
4682
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
261 static Lisp_Object get_process (); |
| 6158 | 262 |
|
14404
cba05f90ee57
(wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents:
14278
diff
changeset
|
263 extern EMACS_TIME timer_check (); |
|
14785
e4a9806c1e83
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14758
diff
changeset
|
264 extern int timers_run; |
|
14404
cba05f90ee57
(wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents:
14278
diff
changeset
|
265 |
| 6158 | 266 /* Maximum number of bytes to send to a pty without an eof. */ |
| 267 static int pty_max_bytes; | |
|
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
268 |
|
21049
01e626b0a624
(Vdefault_file_name_coding_system): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
20715
diff
changeset
|
269 extern Lisp_Object Vfile_name_coding_system, Vdefault_file_name_coding_system; |
|
19837
3bee81323f73
(create_process): Encode the new current dir.
Richard M. Stallman <rms@gnu.org>
parents:
19642
diff
changeset
|
270 |
|
11609
3b2dacb1bfe9
(create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents:
11514
diff
changeset
|
271 #ifdef HAVE_PTYS |
|
3b2dacb1bfe9
(create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents:
11514
diff
changeset
|
272 /* The file name of the pty opened by allocate_pty. */ |
|
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
273 |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
274 static char pty_name[24]; |
|
11609
3b2dacb1bfe9
(create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents:
11514
diff
changeset
|
275 #endif |
| 578 | 276 |
| 277 /* Compute the Lisp form of the process status, p->status, from | |
| 278 the numeric status that was returned by `wait'. */ | |
| 279 | |
|
1522
19ccf004b172
* process.c: (status_convert): Declare this to return a
Jim Blandy <jimb@redhat.com>
parents:
1323
diff
changeset
|
280 Lisp_Object status_convert (); |
|
19ccf004b172
* process.c: (status_convert): Declare this to return a
Jim Blandy <jimb@redhat.com>
parents:
1323
diff
changeset
|
281 |
| 578 | 282 update_status (p) |
| 283 struct Lisp_Process *p; | |
| 284 { | |
| 285 union { int i; WAITTYPE wt; } u; | |
| 286 u.i = XFASTINT (p->raw_status_low) + (XFASTINT (p->raw_status_high) << 16); | |
| 287 p->status = status_convert (u.wt); | |
| 288 p->raw_status_low = Qnil; | |
| 289 p->raw_status_high = Qnil; | |
| 290 } | |
| 291 | |
| 3608 | 292 /* Convert a process status word in Unix format to |
| 578 | 293 the list that we use internally. */ |
| 294 | |
| 295 Lisp_Object | |
| 296 status_convert (w) | |
| 297 WAITTYPE w; | |
| 298 { | |
| 299 if (WIFSTOPPED (w)) | |
| 300 return Fcons (Qstop, Fcons (make_number (WSTOPSIG (w)), Qnil)); | |
| 301 else if (WIFEXITED (w)) | |
| 302 return Fcons (Qexit, Fcons (make_number (WRETCODE (w)), | |
| 303 WCOREDUMP (w) ? Qt : Qnil)); | |
| 304 else if (WIFSIGNALED (w)) | |
| 305 return Fcons (Qsignal, Fcons (make_number (WTERMSIG (w)), | |
| 306 WCOREDUMP (w) ? Qt : Qnil)); | |
| 307 else | |
| 308 return Qrun; | |
| 309 } | |
| 310 | |
| 311 /* Given a status-list, extract the three pieces of information | |
| 312 and store them individually through the three pointers. */ | |
| 313 | |
| 314 void | |
| 315 decode_status (l, symbol, code, coredump) | |
| 316 Lisp_Object l; | |
| 317 Lisp_Object *symbol; | |
| 318 int *code; | |
| 319 int *coredump; | |
| 320 { | |
| 321 Lisp_Object tem; | |
| 322 | |
|
9115
59bc2d010b5f
(decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents:
9034
diff
changeset
|
323 if (SYMBOLP (l)) |
| 578 | 324 { |
| 325 *symbol = l; | |
| 326 *code = 0; | |
| 327 *coredump = 0; | |
| 328 } | |
| 329 else | |
| 330 { | |
| 331 *symbol = XCONS (l)->car; | |
| 332 tem = XCONS (l)->cdr; | |
| 333 *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
|
334 tem = XCONS (tem)->cdr; |
| 578 | 335 *coredump = !NILP (tem); |
| 336 } | |
| 337 } | |
| 338 | |
| 339 /* Return a string describing a process status list. */ | |
| 340 | |
| 341 Lisp_Object | |
| 342 status_message (status) | |
| 343 Lisp_Object status; | |
| 344 { | |
| 345 Lisp_Object symbol; | |
| 346 int code, coredump; | |
| 347 Lisp_Object string, string2; | |
| 348 | |
| 349 decode_status (status, &symbol, &code, &coredump); | |
| 350 | |
| 351 if (EQ (symbol, Qsignal) || EQ (symbol, Qstop)) | |
| 352 { | |
|
5579
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
353 char *signame = 0; |
|
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
354 if (code < NSIG) |
|
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
355 { |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
356 #ifndef VMS |
|
9705
f7535deb913a
(status_message): Add a cast.
Richard M. Stallman <rms@gnu.org>
parents:
9697
diff
changeset
|
357 /* Cast to suppress warning if the table has const char *. */ |
|
f7535deb913a
(status_message): Add a cast.
Richard M. Stallman <rms@gnu.org>
parents:
9697
diff
changeset
|
358 signame = (char *) sys_siglist[code]; |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
359 #else |
|
5579
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
360 signame = sys_errlist[code]; |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
361 #endif |
|
5579
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
362 } |
|
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
363 if (signame == 0) |
|
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
364 signame = "unknown"; |
|
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
365 string = build_string (signame); |
| 578 | 366 string2 = build_string (coredump ? " (core dumped)\n" : "\n"); |
| 367 XSTRING (string)->data[0] = DOWNCASE (XSTRING (string)->data[0]); | |
| 368 return concat2 (string, string2); | |
| 369 } | |
| 370 else if (EQ (symbol, Qexit)) | |
| 371 { | |
| 372 if (code == 0) | |
| 373 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
|
374 string = Fnumber_to_string (make_number (code)); |
| 578 | 375 string2 = build_string (coredump ? " (core dumped)\n" : "\n"); |
| 376 return concat2 (build_string ("exited abnormally with code "), | |
| 377 concat2 (string, string2)); | |
| 378 } | |
| 379 else | |
| 380 return Fcopy_sequence (Fsymbol_name (symbol)); | |
| 381 } | |
| 382 | |
| 383 #ifdef HAVE_PTYS | |
| 384 | |
|
11609
3b2dacb1bfe9
(create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents:
11514
diff
changeset
|
385 /* Open an available pty, returning a file descriptor. |
|
3b2dacb1bfe9
(create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents:
11514
diff
changeset
|
386 Return -1 on failure. |
|
3b2dacb1bfe9
(create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents:
11514
diff
changeset
|
387 The file name of the terminal corresponding to the pty |
|
3b2dacb1bfe9
(create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents:
11514
diff
changeset
|
388 is left in the variable pty_name. */ |
|
3b2dacb1bfe9
(create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents:
11514
diff
changeset
|
389 |
| 578 | 390 int |
| 391 allocate_pty () | |
| 392 { | |
| 393 struct stat stb; | |
| 394 register c, i; | |
| 395 int fd; | |
| 396 | |
| 624 | 397 /* Some systems name their pseudoterminals so that there are gaps in |
| 398 the usual sequence - for example, on HP9000/S700 systems, there | |
| 399 are no pseudoterminals with names ending in 'f'. So we wait for | |
| 400 three failures in a row before deciding that we've reached the | |
| 401 end of the ptys. */ | |
| 402 int failed_count = 0; | |
| 403 | |
| 578 | 404 #ifdef PTY_ITERATION |
| 405 PTY_ITERATION | |
| 406 #else | |
| 407 for (c = FIRST_PTY_LETTER; c <= 'z'; c++) | |
| 408 for (i = 0; i < 16; i++) | |
| 409 #endif | |
| 410 { | |
| 411 #ifdef PTY_NAME_SPRINTF | |
| 412 PTY_NAME_SPRINTF | |
| 413 #else | |
| 414 sprintf (pty_name, "/dev/pty%c%x", c, i); | |
| 415 #endif /* no PTY_NAME_SPRINTF */ | |
| 416 | |
|
822
c6e94e13926c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
417 #ifdef PTY_OPEN |
|
c6e94e13926c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
418 PTY_OPEN; |
|
c6e94e13926c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
419 #else /* no PTY_OPEN */ |
| 624 | 420 #ifdef IRIS |
| 421 /* Unusual IRIS code */ | |
| 422 *ptyv = open ("/dev/ptc", O_RDWR | O_NDELAY, 0); | |
| 423 if (fd < 0) | |
| 424 return -1; | |
| 425 if (fstat (fd, &stb) < 0) | |
| 426 return -1; | |
|
822
c6e94e13926c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
427 #else /* not IRIS */ |
| 578 | 428 if (stat (pty_name, &stb) < 0) |
| 624 | 429 { |
| 430 failed_count++; | |
| 431 if (failed_count >= 3) | |
| 432 return -1; | |
| 433 } | |
| 434 else | |
| 435 failed_count = 0; | |
| 578 | 436 #ifdef O_NONBLOCK |
| 437 fd = open (pty_name, O_RDWR | O_NONBLOCK, 0); | |
| 438 #else | |
| 439 fd = open (pty_name, O_RDWR | O_NDELAY, 0); | |
| 440 #endif | |
|
822
c6e94e13926c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
441 #endif /* not IRIS */ |
|
c6e94e13926c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
442 #endif /* no PTY_OPEN */ |
| 578 | 443 |
| 444 if (fd >= 0) | |
| 445 { | |
| 446 /* check to make certain that both sides are available | |
| 447 this avoids a nasty yet stupid bug in rlogins */ | |
| 448 #ifdef PTY_TTY_NAME_SPRINTF | |
| 449 PTY_TTY_NAME_SPRINTF | |
| 450 #else | |
| 451 sprintf (pty_name, "/dev/tty%c%x", c, i); | |
| 452 #endif /* no PTY_TTY_NAME_SPRINTF */ | |
| 453 #ifndef UNIPLUS | |
| 454 if (access (pty_name, 6) != 0) | |
| 455 { | |
| 456 close (fd); | |
|
2887
0554478bfa71
* process.c [__sgi] (allocate_pty): Give up immediately if pty is
Jim Blandy <jimb@redhat.com>
parents:
2830
diff
changeset
|
457 #if !defined(IRIS) && !defined(__sgi) |
| 578 | 458 continue; |
| 459 #else | |
| 460 return -1; | |
| 461 #endif /* IRIS */ | |
| 462 } | |
| 463 #endif /* not UNIPLUS */ | |
| 464 setup_pty (fd); | |
| 465 return fd; | |
| 466 } | |
| 467 } | |
| 468 return -1; | |
| 469 } | |
| 470 #endif /* HAVE_PTYS */ | |
| 471 | |
| 472 Lisp_Object | |
| 473 make_process (name) | |
| 474 Lisp_Object name; | |
| 475 { | |
|
9969
007d93b04e1f
(make_process): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents:
9952
diff
changeset
|
476 struct Lisp_Vector *vec; |
| 578 | 477 register Lisp_Object val, tem, name1; |
| 478 register struct Lisp_Process *p; | |
| 479 char suffix[10]; | |
| 480 register int i; | |
| 481 | |
|
9969
007d93b04e1f
(make_process): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents:
9952
diff
changeset
|
482 vec = allocate_vectorlike ((EMACS_INT) VECSIZE (struct Lisp_Process)); |
|
007d93b04e1f
(make_process): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents:
9952
diff
changeset
|
483 for (i = 0; i < VECSIZE (struct Lisp_Process); i++) |
|
007d93b04e1f
(make_process): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents:
9952
diff
changeset
|
484 vec->contents[i] = Qnil; |
|
007d93b04e1f
(make_process): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents:
9952
diff
changeset
|
485 vec->size = VECSIZE (struct Lisp_Process); |
|
007d93b04e1f
(make_process): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents:
9952
diff
changeset
|
486 p = (struct Lisp_Process *)vec; |
|
007d93b04e1f
(make_process): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents:
9952
diff
changeset
|
487 |
|
9277
21f6120be5ba
(make_process, create_process, Fopen_network_stream, deactivate_process,
Karl Heuer <kwzh@gnu.org>
parents:
9115
diff
changeset
|
488 XSETINT (p->infd, -1); |
|
21f6120be5ba
(make_process, create_process, Fopen_network_stream, deactivate_process,
Karl Heuer <kwzh@gnu.org>
parents:
9115
diff
changeset
|
489 XSETINT (p->outfd, -1); |
|
9318
a14cc1712337
(make_process, list_processes_1, create_process, Faccept_process_output,
Karl Heuer <kwzh@gnu.org>
parents:
9277
diff
changeset
|
490 XSETFASTINT (p->pid, 0); |
|
a14cc1712337
(make_process, list_processes_1, create_process, Faccept_process_output,
Karl Heuer <kwzh@gnu.org>
parents:
9277
diff
changeset
|
491 XSETFASTINT (p->tick, 0); |
|
a14cc1712337
(make_process, list_processes_1, create_process, Faccept_process_output,
Karl Heuer <kwzh@gnu.org>
parents:
9277
diff
changeset
|
492 XSETFASTINT (p->update_tick, 0); |
| 578 | 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; | |
|
9969
007d93b04e1f
(make_process): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents:
9952
diff
changeset
|
510 XSETPROCESS (val, p); |
| 578 | 511 Vprocess_alist = Fcons (Fcons (name, val), Vprocess_alist); |
| 512 return val; | |
| 513 } | |
| 514 | |
| 515 remove_process (proc) | |
| 516 register Lisp_Object proc; | |
| 517 { | |
| 518 register Lisp_Object pair; | |
| 519 | |
| 520 pair = Frassq (proc, Vprocess_alist); | |
| 521 Vprocess_alist = Fdelq (pair, Vprocess_alist); | |
| 522 | |
| 523 deactivate_process (proc); | |
| 524 } | |
| 525 | |
| 526 DEFUN ("processp", Fprocessp, Sprocessp, 1, 1, 0, | |
| 527 "Return t if OBJECT is a process.") | |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
528 (object) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
529 Lisp_Object object; |
| 578 | 530 { |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
531 return PROCESSP (object) ? Qt : Qnil; |
| 578 | 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 { | |
|
9115
59bc2d010b5f
(decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents:
9034
diff
changeset
|
539 if (PROCESSP (name)) |
| 578 | 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.") | |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
548 (buffer) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
549 register Lisp_Object buffer; |
| 578 | 550 { |
| 551 register Lisp_Object buf, tail, proc; | |
| 552 | |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
553 if (NILP (buffer)) return Qnil; |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
554 buf = Fget_buffer (buffer); |
| 578 | 555 if (NILP (buf)) return Qnil; |
| 556 | |
| 557 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail)) | |
| 558 { | |
| 559 proc = Fcdr (Fcar (tail)); | |
|
9115
59bc2d010b5f
(decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents:
9034
diff
changeset
|
560 if (PROCESSP (proc) && EQ (XPROCESS (proc)->buffer, buf)) |
| 578 | 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 |
|
4994
4146a65b9f02
(get_process): Add `static' to definition.
Richard M. Stallman <rms@gnu.org>
parents:
4914
diff
changeset
|
571 static Lisp_Object |
| 578 | 572 get_process (name) |
| 573 register Lisp_Object name; | |
| 574 { | |
|
6313
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
575 register Lisp_Object proc, obj; |
|
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
576 if (STRINGP (name)) |
|
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
577 { |
|
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
578 obj = Fget_process (name); |
|
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
579 if (NILP (obj)) |
|
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
580 obj = Fget_buffer (name); |
|
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
581 if (NILP (obj)) |
|
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
582 error ("Process %s does not exist", XSTRING (name)->data); |
|
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
583 } |
|
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
584 else if (NILP (name)) |
|
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
585 obj = Fcurrent_buffer (); |
|
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
586 else |
|
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
587 obj = name; |
|
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
588 |
|
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
589 /* Now obj should be either a buffer object or a process object. |
|
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
590 */ |
|
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
591 if (BUFFERP (obj)) |
|
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
592 { |
|
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
593 proc = Fget_buffer_process (obj); |
|
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
594 if (NILP (proc)) |
|
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
595 error ("Buffer %s has no process", XSTRING (XBUFFER (obj)->name)->data); |
|
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
596 } |
| 578 | 597 else |
| 598 { | |
|
6313
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
599 CHECK_PROCESS (obj, 0); |
|
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
600 proc = obj; |
| 578 | 601 } |
|
6313
9a6531e6de5d
(get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents:
6253
diff
changeset
|
602 return proc; |
| 578 | 603 } |
| 604 | |
| 605 DEFUN ("delete-process", Fdelete_process, Sdelete_process, 1, 1, 0, | |
| 606 "Delete PROCESS: kill it and forget about it immediately.\n\ | |
| 808 | 607 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\ |
| 608 nil, indicating the current buffer's process.") | |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
609 (process) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
610 register Lisp_Object process; |
| 578 | 611 { |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
612 process = get_process (process); |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
613 XPROCESS (process)->raw_status_low = Qnil; |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
614 XPROCESS (process)->raw_status_high = Qnil; |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
615 if (NETCONN_P (process)) |
| 578 | 616 { |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
617 XPROCESS (process)->status = Fcons (Qexit, Fcons (make_number (0), Qnil)); |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
618 XSETINT (XPROCESS (process)->tick, ++process_tick); |
| 578 | 619 } |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
620 else if (XINT (XPROCESS (process)->infd) >= 0) |
| 578 | 621 { |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
622 Fkill_process (process, Qnil); |
| 578 | 623 /* Do this now, since remove_process will make sigchld_handler do nothing. */ |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
624 XPROCESS (process)->status |
| 578 | 625 = Fcons (Qsignal, Fcons (make_number (SIGKILL), Qnil)); |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
626 XSETINT (XPROCESS (process)->tick, ++process_tick); |
| 578 | 627 status_notify (); |
| 628 } | |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
629 remove_process (process); |
| 578 | 630 return Qnil; |
| 631 } | |
| 632 | |
| 633 DEFUN ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0, | |
| 634 "Return the status of PROCESS: a symbol, one of these:\n\ | |
| 635 run -- for a process that is running.\n\ | |
| 636 stop -- for a process stopped but continuable.\n\ | |
| 637 exit -- for a process that has exited.\n\ | |
| 638 signal -- for a process that has got a fatal signal.\n\ | |
| 639 open -- for a network stream connection that is open.\n\ | |
| 640 closed -- for a network stream connection that is closed.\n\ | |
| 808 | 641 nil -- if arg is a process name and no such process exists.\n\ |
| 642 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\ | |
| 643 nil, indicating the current buffer's process.") | |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
644 (process) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
645 register Lisp_Object process; |
| 578 | 646 { |
| 647 register struct Lisp_Process *p; | |
| 648 register Lisp_Object status; | |
|
7937
bf963799d8be
(Fprocess_status): Return nil for process name that has no process.
Richard M. Stallman <rms@gnu.org>
parents:
7893
diff
changeset
|
649 |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
650 if (STRINGP (process)) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
651 process = Fget_process (process); |
|
7937
bf963799d8be
(Fprocess_status): Return nil for process name that has no process.
Richard M. Stallman <rms@gnu.org>
parents:
7893
diff
changeset
|
652 else |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
653 process = get_process (process); |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
654 |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
655 if (NILP (process)) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
656 return process; |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
657 |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
658 p = XPROCESS (process); |
| 578 | 659 if (!NILP (p->raw_status_low)) |
| 660 update_status (p); | |
| 661 status = p->status; | |
|
9115
59bc2d010b5f
(decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents:
9034
diff
changeset
|
662 if (CONSP (status)) |
| 578 | 663 status = XCONS (status)->car; |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
664 if (NETCONN_P (process)) |
| 578 | 665 { |
| 666 if (EQ (status, Qrun)) | |
| 667 status = Qopen; | |
| 668 else if (EQ (status, Qexit)) | |
| 669 status = Qclosed; | |
| 670 } | |
| 671 return status; | |
| 672 } | |
| 673 | |
| 674 DEFUN ("process-exit-status", Fprocess_exit_status, Sprocess_exit_status, | |
| 675 1, 1, 0, | |
| 676 "Return the exit status of PROCESS or the signal number that killed it.\n\ | |
| 677 If PROCESS has not yet exited or died, return 0.") | |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
678 (process) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
679 register Lisp_Object process; |
| 578 | 680 { |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
681 CHECK_PROCESS (process, 0); |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
682 if (!NILP (XPROCESS (process)->raw_status_low)) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
683 update_status (XPROCESS (process)); |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
684 if (CONSP (XPROCESS (process)->status)) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
685 return XCONS (XCONS (XPROCESS (process)->status)->cdr)->car; |
| 578 | 686 return make_number (0); |
| 687 } | |
| 688 | |
| 689 DEFUN ("process-id", Fprocess_id, Sprocess_id, 1, 1, 0, | |
| 690 "Return the process id of PROCESS.\n\ | |
| 691 This is the pid of the Unix process which PROCESS uses or talks to.\n\ | |
| 692 For a network connection, this value is nil.") | |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
693 (process) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
694 register Lisp_Object process; |
| 578 | 695 { |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
696 CHECK_PROCESS (process, 0); |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
697 return XPROCESS (process)->pid; |
| 578 | 698 } |
| 699 | |
| 700 DEFUN ("process-name", Fprocess_name, Sprocess_name, 1, 1, 0, | |
| 701 "Return the name of PROCESS, as a string.\n\ | |
| 702 This is the name of the program invoked in PROCESS,\n\ | |
| 703 possibly modified to make it unique among process names.") | |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
704 (process) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
705 register Lisp_Object process; |
| 578 | 706 { |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
707 CHECK_PROCESS (process, 0); |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
708 return XPROCESS (process)->name; |
| 578 | 709 } |
| 710 | |
| 711 DEFUN ("process-command", Fprocess_command, Sprocess_command, 1, 1, 0, | |
| 712 "Return the command that was executed to start PROCESS.\n\ | |
| 713 This is a list of strings, the first string being the program executed\n\ | |
| 714 and the rest of the strings being the arguments given to it.\n\ | |
| 715 For a non-child channel, this is nil.") | |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
716 (process) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
717 register Lisp_Object process; |
| 578 | 718 { |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
719 CHECK_PROCESS (process, 0); |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
720 return XPROCESS (process)->command; |
| 578 | 721 } |
| 722 | |
|
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
723 DEFUN ("process-tty-name", Fprocess_tty_name, Sprocess_tty_name, 1, 1, 0, |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
724 "Return the name of the terminal PROCESS uses, or nil if none.\n\ |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
725 This is the terminal that the process itself reads and writes on,\n\ |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
726 not the name of the pty that Emacs uses to talk with that terminal.") |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
727 (process) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
728 register Lisp_Object process; |
|
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
729 { |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
730 CHECK_PROCESS (process, 0); |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
731 return XPROCESS (process)->tty_name; |
|
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
732 } |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
733 |
| 578 | 734 DEFUN ("set-process-buffer", Fset_process_buffer, Sset_process_buffer, |
| 735 2, 2, 0, | |
| 736 "Set buffer associated with PROCESS to BUFFER (a buffer, or nil).") | |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
737 (process, buffer) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
738 register Lisp_Object process, buffer; |
| 578 | 739 { |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
740 CHECK_PROCESS (process, 0); |
| 578 | 741 if (!NILP (buffer)) |
| 742 CHECK_BUFFER (buffer, 1); | |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
743 XPROCESS (process)->buffer = buffer; |
| 578 | 744 return buffer; |
| 745 } | |
| 746 | |
| 747 DEFUN ("process-buffer", Fprocess_buffer, Sprocess_buffer, | |
| 748 1, 1, 0, | |
| 749 "Return the buffer PROCESS is associated with.\n\ | |
| 750 Output from PROCESS is inserted in this buffer\n\ | |
| 751 unless PROCESS has a filter.") | |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
752 (process) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
753 register Lisp_Object process; |
| 578 | 754 { |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
755 CHECK_PROCESS (process, 0); |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
756 return XPROCESS (process)->buffer; |
| 578 | 757 } |
| 758 | |
| 759 DEFUN ("process-mark", Fprocess_mark, Sprocess_mark, | |
| 760 1, 1, 0, | |
| 761 "Return the marker for the end of the last output from PROCESS.") | |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
762 (process) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
763 register Lisp_Object process; |
| 578 | 764 { |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
765 CHECK_PROCESS (process, 0); |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
766 return XPROCESS (process)->mark; |
| 578 | 767 } |
| 768 | |
| 769 DEFUN ("set-process-filter", Fset_process_filter, Sset_process_filter, | |
| 770 2, 2, 0, | |
| 771 "Give PROCESS the filter function FILTER; nil means no filter.\n\ | |
|
4870
c53deda13fa9
(status_notify): Don't read from process if filter is t.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
772 t means stop accepting output from the process.\n\ |
| 578 | 773 When a process has a filter, each time it does output\n\ |
| 774 the entire string of output is passed to the filter.\n\ | |
| 775 The filter gets two arguments: the process and the string of output.\n\ | |
| 776 If the process has a filter, its buffer is not used for output.") | |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
777 (process, filter) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
778 register Lisp_Object process, filter; |
| 578 | 779 { |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
780 CHECK_PROCESS (process, 0); |
|
4870
c53deda13fa9
(status_notify): Don't read from process if filter is t.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
781 if (EQ (filter, Qt)) |
|
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
782 { |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
783 FD_CLR (XINT (XPROCESS (process)->infd), &input_wait_mask); |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
784 FD_CLR (XINT (XPROCESS (process)->infd), &non_keyboard_wait_mask); |
|
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
785 } |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
786 else if (EQ (XPROCESS (process)->filter, Qt)) |
|
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
787 { |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
788 FD_SET (XINT (XPROCESS (process)->infd), &input_wait_mask); |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
789 FD_SET (XINT (XPROCESS (process)->infd), &non_keyboard_wait_mask); |
|
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
790 } |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
791 XPROCESS (process)->filter = filter; |
| 578 | 792 return filter; |
| 793 } | |
| 794 | |
| 795 DEFUN ("process-filter", Fprocess_filter, Sprocess_filter, | |
| 796 1, 1, 0, | |
| 797 "Returns the filter function of PROCESS; nil if none.\n\ | |
| 798 See `set-process-filter' for more info on filter functions.") | |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
799 (process) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
800 register Lisp_Object process; |
| 578 | 801 { |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
802 CHECK_PROCESS (process, 0); |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
803 return XPROCESS (process)->filter; |
| 578 | 804 } |
| 805 | |
| 806 DEFUN ("set-process-sentinel", Fset_process_sentinel, Sset_process_sentinel, | |
| 807 2, 2, 0, | |
| 808 "Give PROCESS the sentinel SENTINEL; nil for none.\n\ | |
| 809 The sentinel is called as a function when the process changes state.\n\ | |
| 810 It gets two arguments: the process, and a string describing the change.") | |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
811 (process, sentinel) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
812 register Lisp_Object process, sentinel; |
| 578 | 813 { |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
814 CHECK_PROCESS (process, 0); |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
815 XPROCESS (process)->sentinel = sentinel; |
| 578 | 816 return sentinel; |
| 817 } | |
| 818 | |
| 819 DEFUN ("process-sentinel", Fprocess_sentinel, Sprocess_sentinel, | |
| 820 1, 1, 0, | |
| 821 "Return the sentinel of PROCESS; nil if none.\n\ | |
| 822 See `set-process-sentinel' for more info on sentinels.") | |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
823 (process) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
824 register Lisp_Object process; |
| 578 | 825 { |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
826 CHECK_PROCESS (process, 0); |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
827 return XPROCESS (process)->sentinel; |
| 578 | 828 } |
| 829 | |
|
6830
bcaddbe53068
(Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6823
diff
changeset
|
830 DEFUN ("set-process-window-size", Fset_process_window_size, |
|
bcaddbe53068
(Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6823
diff
changeset
|
831 Sset_process_window_size, 3, 3, 0, |
|
bcaddbe53068
(Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6823
diff
changeset
|
832 "Tell PROCESS that it has logical window size HEIGHT and WIDTH.") |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
833 (process, height, width) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
834 register Lisp_Object process, height, width; |
|
6830
bcaddbe53068
(Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6823
diff
changeset
|
835 { |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
836 CHECK_PROCESS (process, 0); |
|
6830
bcaddbe53068
(Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6823
diff
changeset
|
837 CHECK_NATNUM (height, 0); |
|
bcaddbe53068
(Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6823
diff
changeset
|
838 CHECK_NATNUM (width, 0); |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
839 if (set_window_size (XINT (XPROCESS (process)->infd), |
|
6830
bcaddbe53068
(Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6823
diff
changeset
|
840 XINT (height), XINT(width)) <= 0) |
|
bcaddbe53068
(Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6823
diff
changeset
|
841 return Qnil; |
|
bcaddbe53068
(Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6823
diff
changeset
|
842 else |
|
bcaddbe53068
(Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6823
diff
changeset
|
843 return Qt; |
|
bcaddbe53068
(Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6823
diff
changeset
|
844 } |
|
bcaddbe53068
(Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6823
diff
changeset
|
845 |
| 578 | 846 DEFUN ("process-kill-without-query", Fprocess_kill_without_query, |
| 847 Sprocess_kill_without_query, 1, 2, 0, | |
| 848 "Say no query needed if PROCESS is running when Emacs is exited.\n\ | |
|
5846
1322c4daeda2
(Fprocess_kill_without_query): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
5579
diff
changeset
|
849 Optional second argument if non-nil says to require a query.\n\ |
| 578 | 850 Value is t if a query was formerly required.") |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
851 (process, value) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
852 register Lisp_Object process, value; |
| 578 | 853 { |
| 854 Lisp_Object tem; | |
| 855 | |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
856 CHECK_PROCESS (process, 0); |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
857 tem = XPROCESS (process)->kill_without_query; |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
858 XPROCESS (process)->kill_without_query = Fnull (value); |
| 578 | 859 |
| 860 return Fnull (tem); | |
| 861 } | |
|
4231
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
862 |
|
16058
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
863 DEFUN ("process-contact", Fprocess_contact, Sprocess_contact, |
|
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
864 1, 1, 0, |
|
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
865 "Return the contact info of PROCESS; t for a real child.\n\ |
|
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
866 For a net connection, the value is a cons cell of the form (HOST SERVICE).") |
|
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
867 (process) |
|
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
868 register Lisp_Object process; |
|
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
869 { |
|
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
870 CHECK_PROCESS (process, 0); |
|
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
871 return XPROCESS (process)->childp; |
|
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
872 } |
|
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
873 |
|
4231
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
874 #if 0 /* Turned off because we don't currently record this info |
|
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
875 in the process. Perhaps add it. */ |
|
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
876 DEFUN ("process-connection", Fprocess_connection, Sprocess_connection, 1, 1, 0, |
|
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
877 "Return the connection type of `PROCESS'.\n\ |
|
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
878 The value is `nil' for a pipe,\n\ |
|
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
879 `t' or `pty' for a pty, or `stream' for a socket connection.") |
|
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
880 (process) |
|
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
881 Lisp_Object process; |
|
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
882 { |
|
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
883 return XPROCESS (process)->type; |
|
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
884 } |
|
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
885 #endif |
| 578 | 886 |
| 887 Lisp_Object | |
| 888 list_processes_1 () | |
| 889 { | |
| 890 register Lisp_Object tail, tem; | |
| 891 Lisp_Object proc, minspace, tem1; | |
| 892 register struct buffer *old = current_buffer; | |
| 893 register struct Lisp_Process *p; | |
| 894 register int state; | |
| 895 char tembuf[80]; | |
| 896 | |
|
9318
a14cc1712337
(make_process, list_processes_1, create_process, Faccept_process_output,
Karl Heuer <kwzh@gnu.org>
parents:
9277
diff
changeset
|
897 XSETFASTINT (minspace, 1); |
| 578 | 898 |
| 899 set_buffer_internal (XBUFFER (Vstandard_output)); | |
| 900 Fbuffer_disable_undo (Vstandard_output); | |
| 901 | |
| 902 current_buffer->truncate_lines = Qt; | |
| 903 | |
| 904 write_string ("\ | |
|
9697
328b8bc31f73
(list_processes_1): Print tty name.
Karl Heuer <kwzh@gnu.org>
parents:
9686
diff
changeset
|
905 Proc Status Buffer Tty Command\n\ |
|
328b8bc31f73
(list_processes_1): Print tty name.
Karl Heuer <kwzh@gnu.org>
parents:
9686
diff
changeset
|
906 ---- ------ ------ --- -------\n", -1); |
| 578 | 907 |
| 908 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail)) | |
| 909 { | |
| 910 Lisp_Object symbol; | |
| 911 | |
| 912 proc = Fcdr (Fcar (tail)); | |
| 913 p = XPROCESS (proc); | |
| 914 if (NILP (p->childp)) | |
| 915 continue; | |
| 916 | |
| 917 Finsert (1, &p->name); | |
| 918 Findent_to (make_number (13), minspace); | |
| 919 | |
| 920 if (!NILP (p->raw_status_low)) | |
| 921 update_status (p); | |
| 922 symbol = p->status; | |
|
9115
59bc2d010b5f
(decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents:
9034
diff
changeset
|
923 if (CONSP (p->status)) |
| 578 | 924 symbol = XCONS (p->status)->car; |
| 925 | |
| 926 | |
| 927 if (EQ (symbol, Qsignal)) | |
| 928 { | |
| 929 Lisp_Object tem; | |
| 930 tem = Fcar (Fcdr (p->status)); | |
| 931 #ifdef VMS | |
| 932 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
|
933 write_string (sys_errlist [XINT (tem)], -1); |
| 578 | 934 else |
| 935 #endif | |
| 936 Fprinc (symbol, Qnil); | |
| 937 } | |
| 938 else if (NETCONN_P (proc)) | |
| 939 { | |
| 940 if (EQ (symbol, Qrun)) | |
| 941 write_string ("open", -1); | |
| 942 else if (EQ (symbol, Qexit)) | |
| 943 write_string ("closed", -1); | |
| 944 else | |
| 945 Fprinc (symbol, Qnil); | |
| 946 } | |
| 947 else | |
| 948 Fprinc (symbol, Qnil); | |
| 949 | |
| 950 if (EQ (symbol, Qexit)) | |
| 951 { | |
| 952 Lisp_Object tem; | |
| 953 tem = Fcar (Fcdr (p->status)); | |
| 954 if (XFASTINT (tem)) | |
| 955 { | |
|
11695
0f9b9c375416
(list_processes_1): Cast XFASTINT for passing to sprintf.
Richard M. Stallman <rms@gnu.org>
parents:
11609
diff
changeset
|
956 sprintf (tembuf, " %d", (int) XFASTINT (tem)); |
| 578 | 957 write_string (tembuf, -1); |
| 958 } | |
| 959 } | |
| 960 | |
| 961 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit)) | |
| 962 remove_process (proc); | |
| 963 | |
| 964 Findent_to (make_number (22), minspace); | |
| 965 if (NILP (p->buffer)) | |
| 966 insert_string ("(none)"); | |
| 967 else if (NILP (XBUFFER (p->buffer)->name)) | |
| 968 insert_string ("(Killed)"); | |
| 969 else | |
| 970 Finsert (1, &XBUFFER (p->buffer)->name); | |
| 971 | |
| 972 Findent_to (make_number (37), minspace); | |
| 973 | |
|
9697
328b8bc31f73
(list_processes_1): Print tty name.
Karl Heuer <kwzh@gnu.org>
parents:
9686
diff
changeset
|
974 if (STRINGP (p->tty_name)) |
|
328b8bc31f73
(list_processes_1): Print tty name.
Karl Heuer <kwzh@gnu.org>
parents:
9686
diff
changeset
|
975 Finsert (1, &p->tty_name); |
|
328b8bc31f73
(list_processes_1): Print tty name.
Karl Heuer <kwzh@gnu.org>
parents:
9686
diff
changeset
|
976 else |
|
328b8bc31f73
(list_processes_1): Print tty name.
Karl Heuer <kwzh@gnu.org>
parents:
9686
diff
changeset
|
977 insert_string ("(none)"); |
|
328b8bc31f73
(list_processes_1): Print tty name.
Karl Heuer <kwzh@gnu.org>
parents:
9686
diff
changeset
|
978 |
|
328b8bc31f73
(list_processes_1): Print tty name.
Karl Heuer <kwzh@gnu.org>
parents:
9686
diff
changeset
|
979 Findent_to (make_number (49), minspace); |
|
328b8bc31f73
(list_processes_1): Print tty name.
Karl Heuer <kwzh@gnu.org>
parents:
9686
diff
changeset
|
980 |
| 578 | 981 if (NETCONN_P (proc)) |
| 982 { | |
| 983 sprintf (tembuf, "(network stream connection to %s)\n", | |
|
16058
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
984 XSTRING (XCONS (p->childp)->car)->data); |
| 578 | 985 insert_string (tembuf); |
| 986 } | |
| 987 else | |
| 988 { | |
| 989 tem = p->command; | |
| 990 while (1) | |
| 991 { | |
| 992 tem1 = Fcar (tem); | |
| 993 Finsert (1, &tem1); | |
| 994 tem = Fcdr (tem); | |
| 995 if (NILP (tem)) | |
| 996 break; | |
| 997 insert_string (" "); | |
| 998 } | |
| 999 insert_string ("\n"); | |
| 1000 } | |
| 1001 } | |
| 1002 return Qnil; | |
| 1003 } | |
| 1004 | |
| 1005 DEFUN ("list-processes", Flist_processes, Slist_processes, 0, 0, "", | |
| 1006 "Display a list of all processes.\n\ | |
| 1007 \(Any processes listed as Exited or Signaled are actually eliminated\n\ | |
| 1008 after the listing is made.)") | |
| 1009 () | |
| 1010 { | |
| 1011 internal_with_output_to_temp_buffer ("*Process List*", | |
| 1012 list_processes_1, Qnil); | |
| 1013 return Qnil; | |
| 1014 } | |
| 1015 | |
| 1016 DEFUN ("process-list", Fprocess_list, Sprocess_list, 0, 0, 0, | |
| 1017 "Return a list of all processes.") | |
| 1018 () | |
| 1019 { | |
| 1020 return Fmapcar (Qcdr, Vprocess_alist); | |
| 1021 } | |
| 1022 | |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1023 /* 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
|
1024 |
|
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1025 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
|
1026 |
| 578 | 1027 DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0, |
| 1028 "Start a program in a subprocess. Return the process object for it.\n\ | |
| 1029 Args are NAME BUFFER PROGRAM &rest PROGRAM-ARGS\n\ | |
| 1030 NAME is name for process. It is modified if necessary to make it unique.\n\ | |
| 1031 BUFFER is the buffer or (buffer-name) to associate with the process.\n\ | |
| 1032 Process output goes at end of that buffer, unless you specify\n\ | |
| 1033 an output stream or filter function to handle the output.\n\ | |
| 1034 BUFFER may be also nil, meaning that this process is not associated\n\ | |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
1035 with any buffer.\n\ |
| 578 | 1036 Third arg is program file name. It is searched for as in the shell.\n\ |
| 1037 Remaining arguments are strings to give program as arguments.") | |
| 1038 (nargs, args) | |
| 1039 int nargs; | |
| 1040 register Lisp_Object *args; | |
| 1041 { | |
|
1683
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1042 Lisp_Object buffer, name, program, proc, current_dir, tem; |
| 578 | 1043 #ifdef VMS |
| 1044 register unsigned char *new_argv; | |
| 1045 int len; | |
| 1046 #else | |
| 1047 register unsigned char **new_argv; | |
| 1048 #endif | |
| 1049 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
|
1050 int count = specpdl_ptr - specpdl; |
| 578 | 1051 |
| 1052 buffer = args[1]; | |
| 1053 if (!NILP (buffer)) | |
| 1054 buffer = Fget_buffer_create (buffer); | |
| 1055 | |
|
1683
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1056 /* 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
|
1057 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
|
1058 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
|
1059 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
|
1060 |
|
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1061 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
|
1062 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
|
1063 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
|
1064 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
|
1065 { |
|
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1066 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
|
1067 |
|
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1068 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
|
1069 |
|
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1070 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
|
1071 |
|
10744
54a76e0b97ec
(Fstart_process): Make process marker point into proc buf.
Richard M. Stallman <rms@gnu.org>
parents:
10548
diff
changeset
|
1072 current_dir |
|
54a76e0b97ec
(Fstart_process): Make process marker point into proc buf.
Richard M. Stallman <rms@gnu.org>
parents:
10548
diff
changeset
|
1073 = expand_and_dir_to_file (Funhandled_file_name_directory (current_dir), |
|
54a76e0b97ec
(Fstart_process): Make process marker point into proc buf.
Richard M. Stallman <rms@gnu.org>
parents:
10548
diff
changeset
|
1074 Qnil); |
|
1683
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1075 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
|
1076 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
|
1077 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
|
1078 |
|
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1079 UNGCPRO; |
|
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1080 } |
|
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1081 |
| 578 | 1082 name = args[0]; |
| 1083 CHECK_STRING (name, 0); | |
| 1084 | |
| 1085 program = args[2]; | |
| 1086 | |
| 1087 CHECK_STRING (program, 2); | |
| 1088 | |
| 1089 #ifdef VMS | |
| 1090 /* Make a one member argv with all args concatenated | |
| 1091 together separated by a blank. */ | |
|
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
1092 len = XSTRING (program)->size_byte + 2; |
| 578 | 1093 for (i = 3; i < nargs; i++) |
| 1094 { | |
| 1095 tem = args[i]; | |
| 1096 CHECK_STRING (tem, i); | |
|
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
1097 len += XSTRING (tem)->size_byte + 1; /* count the blank */ |
| 578 | 1098 } |
| 1099 new_argv = (unsigned char *) alloca (len); | |
| 1100 strcpy (new_argv, XSTRING (program)->data); | |
| 1101 for (i = 3; i < nargs; i++) | |
| 1102 { | |
| 1103 tem = args[i]; | |
| 1104 CHECK_STRING (tem, i); | |
| 1105 strcat (new_argv, " "); | |
| 1106 strcat (new_argv, XSTRING (tem)->data); | |
| 1107 } | |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1108 /* 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
|
1109 |
| 578 | 1110 #else /* not VMS */ |
| 1111 new_argv = (unsigned char **) alloca ((nargs - 1) * sizeof (char *)); | |
| 1112 | |
|
6390
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1113 /* If program file name is not absolute, search our path for it */ |
|
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
1114 if (!IS_DIRECTORY_SEP (XSTRING (program)->data[0]) |
|
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
1115 && !(XSTRING (program)->size > 1 |
|
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
1116 && IS_DEVICE_SEP (XSTRING (program)->data[1]))) |
|
6390
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1117 { |
|
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1118 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
|
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1119 |
|
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1120 tem = Qnil; |
|
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1121 GCPRO4 (name, program, buffer, current_dir); |
|
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1122 openp (Vexec_path, program, EXEC_SUFFIXES, &tem, 1); |
|
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1123 UNGCPRO; |
|
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1124 if (NILP (tem)) |
|
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1125 report_file_error ("Searching for program", Fcons (program, Qnil)); |
|
12648
98aba238cf62
(Fstart_process): Don't expand the file name before trying openp.
Richard M. Stallman <rms@gnu.org>
parents:
12541
diff
changeset
|
1126 tem = Fexpand_file_name (tem, Qnil); |
|
6390
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1127 new_argv[0] = XSTRING (tem)->data; |
|
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1128 } |
|
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1129 else |
|
12491
4ad7be34ece1
(Fstart_process): Expand PROGRAM.
Richard M. Stallman <rms@gnu.org>
parents:
12378
diff
changeset
|
1130 { |
|
4ad7be34ece1
(Fstart_process): Expand PROGRAM.
Richard M. Stallman <rms@gnu.org>
parents:
12378
diff
changeset
|
1131 if (!NILP (Ffile_directory_p (program))) |
|
4ad7be34ece1
(Fstart_process): Expand PROGRAM.
Richard M. Stallman <rms@gnu.org>
parents:
12378
diff
changeset
|
1132 error ("Specified program for new process is a directory"); |
|
4ad7be34ece1
(Fstart_process): Expand PROGRAM.
Richard M. Stallman <rms@gnu.org>
parents:
12378
diff
changeset
|
1133 |
|
4ad7be34ece1
(Fstart_process): Expand PROGRAM.
Richard M. Stallman <rms@gnu.org>
parents:
12378
diff
changeset
|
1134 new_argv[0] = XSTRING (program)->data; |
|
4ad7be34ece1
(Fstart_process): Expand PROGRAM.
Richard M. Stallman <rms@gnu.org>
parents:
12378
diff
changeset
|
1135 } |
|
6390
9f8ce71435de
(Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents:
6345
diff
changeset
|
1136 |
| 578 | 1137 for (i = 3; i < nargs; i++) |
| 1138 { | |
| 1139 tem = args[i]; | |
| 1140 CHECK_STRING (tem, i); | |
| 1141 new_argv[i - 2] = XSTRING (tem)->data; | |
| 1142 } | |
| 1143 new_argv[i - 2] = 0; | |
| 1144 #endif /* not VMS */ | |
| 1145 | |
| 1146 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
|
1147 /* 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
|
1148 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
|
1149 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
|
1150 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
|
1151 record_unwind_protect (start_process_unwind, proc); |
| 578 | 1152 |
| 1153 XPROCESS (proc)->childp = Qt; | |
| 1154 XPROCESS (proc)->command_channel_p = Qnil; | |
| 1155 XPROCESS (proc)->buffer = buffer; | |
| 1156 XPROCESS (proc)->sentinel = Qnil; | |
| 1157 XPROCESS (proc)->filter = Qnil; | |
| 1158 XPROCESS (proc)->command = Flist (nargs - 2, args + 2); | |
| 1159 | |
|
10744
54a76e0b97ec
(Fstart_process): Make process marker point into proc buf.
Richard M. Stallman <rms@gnu.org>
parents:
10548
diff
changeset
|
1160 /* Make the process marker point into the process buffer (if any). */ |
|
54a76e0b97ec
(Fstart_process): Make process marker point into proc buf.
Richard M. Stallman <rms@gnu.org>
parents:
10548
diff
changeset
|
1161 if (!NILP (buffer)) |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
1162 set_marker_both (XPROCESS (proc)->mark, buffer, |
|
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
1163 BUF_ZV (XBUFFER (buffer)), |
|
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
1164 BUF_ZV_BYTE (XBUFFER (buffer))); |
|
10744
54a76e0b97ec
(Fstart_process): Make process marker point into proc buf.
Richard M. Stallman <rms@gnu.org>
parents:
10548
diff
changeset
|
1165 |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1166 if (!NILP (buffer) && NILP (XBUFFER (buffer)->enable_multibyte_characters) |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1167 || NILP (buffer) && NILP (buffer_defaults.enable_multibyte_characters)) |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1168 { |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1169 XPROCESS (proc)->decode_coding_system = Qnil; |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1170 XPROCESS (proc)->encode_coding_system = Qnil; |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1171 } |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1172 else |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1173 { |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1174 /* Setup coding systems for communicating with the process. */ |
|
18540
c9470cd6de93
(Fstart_process): Call Ffind_operation_coding_system.
Kenichi Handa <handa@m17n.org>
parents:
18512
diff
changeset
|
1175 /* Qt denotes we have not yet called Ffind_operation_coding_system. */ |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1176 Lisp_Object coding_systems = Qt; |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1177 Lisp_Object val, *args2; |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1178 struct gcpro gcpro1; |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1179 |
|
18648
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1180 if (!NILP (Vcoding_system_for_read)) |
|
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1181 val = Vcoding_system_for_read; |
|
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1182 else if (NILP (current_buffer->enable_multibyte_characters)) |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
1183 val = Qraw_text; |
|
18648
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1184 else |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1185 { |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1186 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2); |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1187 args2[0] = Qstart_process; |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1188 for (i = 0; i < nargs; i++) args2[i + 1] = args[i]; |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1189 GCPRO1 (proc); |
|
18540
c9470cd6de93
(Fstart_process): Call Ffind_operation_coding_system.
Kenichi Handa <handa@m17n.org>
parents:
18512
diff
changeset
|
1190 coding_systems = Ffind_operation_coding_system (nargs + 1, args2); |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1191 UNGCPRO; |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1192 if (CONSP (coding_systems)) |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1193 val = XCONS (coding_systems)->car; |
|
18183
dc9d056f204f
(Fstart_process):Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
17604
diff
changeset
|
1194 else if (CONSP (Vdefault_process_coding_system)) |
|
dc9d056f204f
(Fstart_process):Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
17604
diff
changeset
|
1195 val = XCONS (Vdefault_process_coding_system)->car; |
|
18648
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1196 else |
|
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1197 val = Qnil; |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1198 } |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1199 XPROCESS (proc)->decode_coding_system = val; |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1200 |
|
18648
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1201 if (!NILP (Vcoding_system_for_write)) |
|
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1202 val = Vcoding_system_for_write; |
|
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1203 else if (NILP (current_buffer->enable_multibyte_characters)) |
|
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1204 val = Qnil; |
|
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1205 else |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1206 { |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1207 if (EQ (coding_systems, Qt)) |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1208 { |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1209 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof args2); |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1210 args2[0] = Qstart_process; |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1211 for (i = 0; i < nargs; i++) args2[i + 1] = args[i]; |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1212 GCPRO1 (proc); |
|
18540
c9470cd6de93
(Fstart_process): Call Ffind_operation_coding_system.
Kenichi Handa <handa@m17n.org>
parents:
18512
diff
changeset
|
1213 coding_systems = |
|
c9470cd6de93
(Fstart_process): Call Ffind_operation_coding_system.
Kenichi Handa <handa@m17n.org>
parents:
18512
diff
changeset
|
1214 Ffind_operation_coding_system (nargs + 1, args2); |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1215 UNGCPRO; |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1216 } |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1217 if (CONSP (coding_systems)) |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1218 val = XCONS (coding_systems)->cdr; |
|
18183
dc9d056f204f
(Fstart_process):Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
17604
diff
changeset
|
1219 else if (CONSP (Vdefault_process_coding_system)) |
|
dc9d056f204f
(Fstart_process):Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
17604
diff
changeset
|
1220 val = XCONS (Vdefault_process_coding_system)->cdr; |
|
18648
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1221 else |
|
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1222 val = Qnil; |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1223 } |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1224 XPROCESS (proc)->encode_coding_system = val; |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1225 } |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
1226 |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
1227 XPROCESS (proc)->decoding_buf = make_uninit_string (0); |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
1228 XPROCESS (proc)->decoding_carryover = make_number (0); |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
1229 XPROCESS (proc)->encoding_buf = make_uninit_string (0); |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
1230 XPROCESS (proc)->encoding_carryover = make_number (0); |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
1231 |
|
20382
dbad9367d232
(create_process, deactivate_process, close_process_descs):
Andreas Schwab <schwab@suse.de>
parents:
20225
diff
changeset
|
1232 create_process (proc, (char **) new_argv, current_dir); |
| 578 | 1233 |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1234 return unbind_to (count, proc); |
| 578 | 1235 } |
| 1236 | |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1237 /* This function is the unwind_protect form for Fstart_process. If |
| 14036 | 1238 PROC doesn't have its pid set, then we know someone has signaled |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1239 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
|
1240 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
|
1241 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
|
1242 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
|
1243 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
|
1244 { |
|
9115
59bc2d010b5f
(decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents:
9034
diff
changeset
|
1245 if (!PROCESSP (proc)) |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1246 abort (); |
|
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1247 |
|
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1248 /* Was PROC started successfully? */ |
|
3685
47d7fda8a609
(start_process_unwind): Use XINT.
Richard M. Stallman <rms@gnu.org>
parents:
3666
diff
changeset
|
1249 if (XINT (XPROCESS (proc)->pid) <= 0) |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1250 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
|
1251 |
|
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1252 return Qnil; |
|
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1253 } |
|
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1254 |
|
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
1255 |
| 578 | 1256 SIGTYPE |
| 1257 create_process_1 (signo) | |
| 1258 int signo; | |
| 1259 { | |
|
16116
80a67b8f39e9
(create_process_1, sigchld_handler) [POSIX_SIGNALS]:
Richard M. Stallman <rms@gnu.org>
parents:
16076
diff
changeset
|
1260 #if defined (USG) && !defined (POSIX_SIGNALS) |
| 578 | 1261 /* USG systems forget handlers when they are used; |
| 1262 must reestablish each time */ | |
| 1263 signal (signo, create_process_1); | |
| 1264 #endif /* USG */ | |
| 1265 } | |
| 1266 | |
| 1267 #if 0 /* This doesn't work; see the note before sigchld_handler. */ | |
| 1268 #ifdef USG | |
| 1269 #ifdef SIGCHLD | |
| 1270 /* Mimic blocking of signals on system V, which doesn't really have it. */ | |
| 1271 | |
| 1272 /* Nonzero means we got a SIGCHLD when it was supposed to be blocked. */ | |
| 1273 int sigchld_deferred; | |
| 1274 | |
| 1275 SIGTYPE | |
| 1276 create_process_sigchld () | |
| 1277 { | |
| 1278 signal (SIGCHLD, create_process_sigchld); | |
| 1279 | |
| 1280 sigchld_deferred = 1; | |
| 1281 } | |
| 1282 #endif | |
| 1283 #endif | |
| 1284 #endif | |
| 1285 | |
| 1286 #ifndef VMS /* VMS version of this function is in vmsproc.c. */ | |
|
20382
dbad9367d232
(create_process, deactivate_process, close_process_descs):
Andreas Schwab <schwab@suse.de>
parents:
20225
diff
changeset
|
1287 void |
|
1683
a0a41de51400
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1655
diff
changeset
|
1288 create_process (process, new_argv, current_dir) |
| 578 | 1289 Lisp_Object process; |
| 1290 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
|
1291 Lisp_Object current_dir; |
| 578 | 1292 { |
|
11926
40d7e6f04ebe
(create_process, send_process): Add volatile qualifiers.
Karl Heuer <kwzh@gnu.org>
parents:
11845
diff
changeset
|
1293 int pid, inchannel, outchannel; |
| 578 | 1294 int sv[2]; |
|
13709
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1295 #ifdef POSIX_SIGNALS |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1296 sigset_t procmask; |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1297 sigset_t blocked; |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1298 struct sigaction sigint_action; |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1299 struct sigaction sigquit_action; |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1300 #ifdef AIX |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1301 struct sigaction sighup_action; |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1302 #endif |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1303 #else /* !POSIX_SIGNALS */ |
| 578 | 1304 #ifdef SIGCHLD |
| 1305 SIGTYPE (*sigchld)(); | |
| 1306 #endif | |
|
13709
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1307 #endif /* !POSIX_SIGNALS */ |
|
11926
40d7e6f04ebe
(create_process, send_process): Add volatile qualifiers.
Karl Heuer <kwzh@gnu.org>
parents:
11845
diff
changeset
|
1308 /* Use volatile to protect variables from being clobbered by longjmp. */ |
|
40d7e6f04ebe
(create_process, send_process): Add volatile qualifiers.
Karl Heuer <kwzh@gnu.org>
parents:
11845
diff
changeset
|
1309 volatile int forkin, forkout; |
|
40d7e6f04ebe
(create_process, send_process): Add volatile qualifiers.
Karl Heuer <kwzh@gnu.org>
parents:
11845
diff
changeset
|
1310 volatile int pty_flag = 0; |
| 578 | 1311 extern char **environ; |
| 1312 | |
| 1313 inchannel = outchannel = -1; | |
| 1314 | |
| 1315 #ifdef HAVE_PTYS | |
|
7748
9a9c8372af80
(create_process): Get a pty for any non-nil Vprocess_connection_type value.
Richard M. Stallman <rms@gnu.org>
parents:
7605
diff
changeset
|
1316 if (!NILP (Vprocess_connection_type)) |
| 578 | 1317 outchannel = inchannel = allocate_pty (); |
| 1318 | |
| 1319 if (inchannel >= 0) | |
| 1320 { | |
| 1321 #ifndef USG | |
| 1322 /* On USG systems it does not work to open the pty's tty here | |
| 1323 and then close and reopen it in the child. */ | |
| 1324 #ifdef O_NOCTTY | |
| 1325 /* Don't let this terminal become our controlling terminal | |
| 1326 (in case we don't have one). */ | |
| 1327 forkout = forkin = open (pty_name, O_RDWR | O_NOCTTY, 0); | |
| 1328 #else | |
| 1329 forkout = forkin = open (pty_name, O_RDWR, 0); | |
| 1330 #endif | |
| 1331 if (forkin < 0) | |
| 1332 report_file_error ("Opening pty", Qnil); | |
| 1333 #else | |
| 1334 forkin = forkout = -1; | |
| 1335 #endif /* not USG */ | |
| 1336 pty_flag = 1; | |
| 1337 } | |
| 1338 else | |
| 1339 #endif /* HAVE_PTYS */ | |
| 1340 #ifdef SKTPAIR | |
| 1341 { | |
| 1342 if (socketpair (AF_UNIX, SOCK_STREAM, 0, sv) < 0) | |
| 1343 report_file_error ("Opening socketpair", Qnil); | |
| 1344 outchannel = inchannel = sv[0]; | |
| 1345 forkout = forkin = sv[1]; | |
| 1346 } | |
| 1347 #else /* not SKTPAIR */ | |
| 1348 { | |
| 1349 pipe (sv); | |
| 1350 inchannel = sv[0]; | |
| 1351 forkout = sv[1]; | |
| 1352 pipe (sv); | |
| 1353 outchannel = sv[1]; | |
| 1354 forkin = sv[0]; | |
| 1355 } | |
| 1356 #endif /* not SKTPAIR */ | |
| 1357 | |
| 1358 #if 0 | |
| 1359 /* Replaced by close_process_descs */ | |
| 1360 set_exclusive_use (inchannel); | |
| 1361 set_exclusive_use (outchannel); | |
| 1362 #endif | |
| 1363 | |
| 1364 /* Stride people say it's a mystery why this is needed | |
| 1365 as well as the O_NDELAY, but that it fails without this. */ | |
| 1366 #if defined (STRIDE) || (defined (pfa) && defined (HAVE_PTYS)) | |
| 1367 { | |
| 1368 int one = 1; | |
| 1369 ioctl (inchannel, FIONBIO, &one); | |
| 1370 } | |
| 1371 #endif | |
| 1372 | |
| 1373 #ifdef O_NONBLOCK | |
| 1374 fcntl (inchannel, F_SETFL, O_NONBLOCK); | |
|
14405
4aa693528ee3
(create_process): Set outchannel to be non-blocking.
Richard M. Stallman <rms@gnu.org>
parents:
14404
diff
changeset
|
1375 fcntl (outchannel, F_SETFL, O_NONBLOCK); |
| 578 | 1376 #else |
| 1377 #ifdef O_NDELAY | |
| 1378 fcntl (inchannel, F_SETFL, O_NDELAY); | |
|
14405
4aa693528ee3
(create_process): Set outchannel to be non-blocking.
Richard M. Stallman <rms@gnu.org>
parents:
14404
diff
changeset
|
1379 fcntl (outchannel, F_SETFL, O_NDELAY); |
| 578 | 1380 #endif |
| 1381 #endif | |
| 1382 | |
| 1383 /* Record this as an active process, with its channels. | |
| 1384 As a result, child_setup will close Emacs's side of the pipes. */ | |
| 1385 chan_process[inchannel] = process; | |
|
9277
21f6120be5ba
(make_process, create_process, Fopen_network_stream, deactivate_process,
Karl Heuer <kwzh@gnu.org>
parents:
9115
diff
changeset
|
1386 XSETINT (XPROCESS (process)->infd, inchannel); |
|
21f6120be5ba
(make_process, create_process, Fopen_network_stream, deactivate_process,
Karl Heuer <kwzh@gnu.org>
parents:
9115
diff
changeset
|
1387 XSETINT (XPROCESS (process)->outfd, outchannel); |
| 578 | 1388 /* Record the tty descriptor used in the subprocess. */ |
| 1389 if (forkin < 0) | |
| 1390 XPROCESS (process)->subtty = Qnil; | |
| 1391 else | |
|
9318
a14cc1712337
(make_process, list_processes_1, create_process, Faccept_process_output,
Karl Heuer <kwzh@gnu.org>
parents:
9277
diff
changeset
|
1392 XSETFASTINT (XPROCESS (process)->subtty, forkin); |
| 578 | 1393 XPROCESS (process)->pty_flag = (pty_flag ? Qt : Qnil); |
| 1394 XPROCESS (process)->status = Qrun; | |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1395 if (!proc_decode_coding_system[inchannel]) |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1396 proc_decode_coding_system[inchannel] |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1397 = (struct coding_system *) xmalloc (sizeof (struct coding_system)); |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
1398 setup_coding_system (XPROCESS (process)->decode_coding_system, |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1399 proc_decode_coding_system[inchannel]); |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1400 if (!proc_encode_coding_system[outchannel]) |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1401 proc_encode_coding_system[outchannel] |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1402 = (struct coding_system *) xmalloc (sizeof (struct coding_system)); |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
1403 setup_coding_system (XPROCESS (process)->encode_coding_system, |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1404 proc_encode_coding_system[outchannel]); |
| 578 | 1405 |
|
20225
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
1406 if (CODING_REQUIRE_ENCODING (proc_encode_coding_system[outchannel])) |
|
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
1407 { |
|
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
1408 /* Here we encode arguments by the coding system used for |
|
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
1409 sending data to the process. We don't support using |
|
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
1410 different coding systems for encoding arguments and for |
|
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
1411 encoding data sent to the process. */ |
|
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
1412 struct gcpro gcpro1; |
|
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
1413 int i = 1; |
|
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
1414 struct coding_system *coding = proc_encode_coding_system[outchannel]; |
|
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
1415 |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
1416 coding->mode |= CODING_MODE_LAST_BLOCK; |
|
20225
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
1417 GCPRO1 (process); |
|
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
1418 while (new_argv[i] != 0) |
|
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
1419 { |
|
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
1420 int len = strlen (new_argv[i]); |
|
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
1421 int size = encoding_buffer_size (coding, len); |
|
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
1422 unsigned char *buf = (unsigned char *) alloca (size); |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
1423 |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
1424 encode_coding (coding, new_argv[i], buf, len, size); |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
1425 buf[coding->produced] = 0; |
|
20225
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
1426 /* We don't have to free new_argv[i] because it points to a |
|
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
1427 Lisp string given as an argument to `start-process'. */ |
|
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
1428 new_argv[i++] = buf; |
|
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
1429 } |
|
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
1430 UNGCPRO; |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
1431 coding->mode &= ~CODING_MODE_LAST_BLOCK; |
|
20225
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
1432 } |
|
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
1433 |
| 578 | 1434 /* Delay interrupts until we have a chance to store |
| 1435 the new fork's pid in its process structure */ | |
|
13709
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1436 #ifdef POSIX_SIGNALS |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1437 sigemptyset (&blocked); |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1438 #ifdef SIGCHLD |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1439 sigaddset (&blocked, SIGCHLD); |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1440 #endif |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1441 #ifdef HAVE_VFORK |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1442 /* On many hosts (e.g. Solaris 2.4), if a vforked child calls `signal', |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1443 this sets the parent's signal handlers as well as the child's. |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1444 So delay all interrupts whose handlers the child might munge, |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1445 and record the current handlers so they can be restored later. */ |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1446 sigaddset (&blocked, SIGINT ); sigaction (SIGINT , 0, &sigint_action ); |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1447 sigaddset (&blocked, SIGQUIT); sigaction (SIGQUIT, 0, &sigquit_action); |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1448 #ifdef AIX |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1449 sigaddset (&blocked, SIGHUP ); sigaction (SIGHUP , 0, &sighup_action ); |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1450 #endif |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1451 #endif /* HAVE_VFORK */ |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1452 sigprocmask (SIG_BLOCK, &blocked, &procmask); |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1453 #else /* !POSIX_SIGNALS */ |
| 578 | 1454 #ifdef SIGCHLD |
| 1455 #ifdef BSD4_1 | |
| 1456 sighold (SIGCHLD); | |
| 1457 #else /* not BSD4_1 */ | |
|
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
16206
diff
changeset
|
1458 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX) |
| 578 | 1459 sigsetmask (sigmask (SIGCHLD)); |
| 1460 #else /* ordinary USG */ | |
| 1461 #if 0 | |
| 1462 sigchld_deferred = 0; | |
| 1463 sigchld = signal (SIGCHLD, create_process_sigchld); | |
| 1464 #endif | |
| 1465 #endif /* ordinary USG */ | |
| 1466 #endif /* not BSD4_1 */ | |
| 1467 #endif /* SIGCHLD */ | |
|
13709
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1468 #endif /* !POSIX_SIGNALS */ |
| 578 | 1469 |
|
7893
e54617027a47
(create_process): Set input_wait_mask before forking.
Karl Heuer <kwzh@gnu.org>
parents:
7884
diff
changeset
|
1470 FD_SET (inchannel, &input_wait_mask); |
|
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
1471 FD_SET (inchannel, &non_keyboard_wait_mask); |
|
7893
e54617027a47
(create_process): Set input_wait_mask before forking.
Karl Heuer <kwzh@gnu.org>
parents:
7884
diff
changeset
|
1472 if (inchannel > max_process_desc) |
|
e54617027a47
(create_process): Set input_wait_mask before forking.
Karl Heuer <kwzh@gnu.org>
parents:
7884
diff
changeset
|
1473 max_process_desc = inchannel; |
|
e54617027a47
(create_process): Set input_wait_mask before forking.
Karl Heuer <kwzh@gnu.org>
parents:
7884
diff
changeset
|
1474 |
| 578 | 1475 /* Until we store the proper pid, enable sigchld_handler |
| 1476 to recognize an unknown pid as standing for this process. | |
| 1477 It is very important not to let this `marker' value stay | |
| 1478 in the table after this function has returned; if it does | |
| 1479 it might cause call-process to hang and subsequent asynchronous | |
| 1480 processes to get their return values scrambled. */ | |
| 1481 XSETINT (XPROCESS (process)->pid, -1); | |
| 1482 | |
| 16780 | 1483 BLOCK_INPUT; |
| 1484 | |
| 578 | 1485 { |
| 1486 /* child_setup must clobber environ on systems with true vfork. | |
| 1487 Protect it from permanent change. */ | |
| 1488 char **save_environ = environ; | |
| 1489 | |
|
21049
01e626b0a624
(Vdefault_file_name_coding_system): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
20715
diff
changeset
|
1490 current_dir = ENCODE_FILE (current_dir); |
|
19837
3bee81323f73
(create_process): Encode the new current dir.
Richard M. Stallman <rms@gnu.org>
parents:
19642
diff
changeset
|
1491 |
|
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
1492 #ifndef WINDOWSNT |
| 578 | 1493 pid = vfork (); |
| 1494 if (pid == 0) | |
|
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
1495 #endif /* not WINDOWSNT */ |
| 578 | 1496 { |
| 1497 int xforkin = forkin; | |
| 1498 int xforkout = forkout; | |
| 1499 | |
| 1500 #if 0 /* This was probably a mistake--it duplicates code later on, | |
| 1501 but fails to handle all the cases. */ | |
| 1502 /* Make sure SIGCHLD is not blocked in the child. */ | |
| 1503 sigsetmask (SIGEMPTYMASK); | |
| 1504 #endif | |
| 1505 | |
| 1506 /* Make the pty be the controlling terminal of the process. */ | |
| 1507 #ifdef HAVE_PTYS | |
| 1508 /* First, disconnect its current controlling terminal. */ | |
| 1509 #ifdef HAVE_SETSID | |
|
7266
f87808bd90e9
(create_process): Undo April 19 setsid change.
Richard M. Stallman <rms@gnu.org>
parents:
7238
diff
changeset
|
1510 /* We tried doing setsid only if pty_flag, but it caused |
|
f87808bd90e9
(create_process): Undo April 19 setsid change.
Richard M. Stallman <rms@gnu.org>
parents:
7238
diff
changeset
|
1511 process_set_signal to fail on SGI when using a pipe. */ |
|
f87808bd90e9
(create_process): Undo April 19 setsid change.
Richard M. Stallman <rms@gnu.org>
parents:
7238
diff
changeset
|
1512 setsid (); |
|
1030
9934251d8219
(WCOREDUMP): Define only if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
1012
diff
changeset
|
1513 /* 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
|
1514 if (pty_flag) |
|
6975
b7411e378b65
(create_process): Call setsid only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
6947
diff
changeset
|
1515 { |
|
b7411e378b65
(create_process): Call setsid only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
6947
diff
changeset
|
1516 #ifdef TIOCSCTTY |
|
b7411e378b65
(create_process): Call setsid only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
6947
diff
changeset
|
1517 /* We ignore the return value |
|
b7411e378b65
(create_process): Call setsid only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
6947
diff
changeset
|
1518 because faith@cs.unc.edu says that is necessary on Linux. */ |
|
b7411e378b65
(create_process): Call setsid only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
6947
diff
changeset
|
1519 ioctl (xforkin, TIOCSCTTY, 0); |
|
1030
9934251d8219
(WCOREDUMP): Define only if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
1012
diff
changeset
|
1520 #endif |
|
6975
b7411e378b65
(create_process): Call setsid only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
6947
diff
changeset
|
1521 } |
| 578 | 1522 #else /* not HAVE_SETSID */ |
|
5181
31874690939f
(create_process): Do setpgrp for USG regardless of IRIX.
Richard M. Stallman <rms@gnu.org>
parents:
5161
diff
changeset
|
1523 #ifdef USG |
|
5347
21bffe027a7d
(create_process) [NTTYDISC]: Set the tty line discipline.
Richard M. Stallman <rms@gnu.org>
parents:
5332
diff
changeset
|
1524 /* It's very important to call setpgrp here and no time |
| 578 | 1525 afterwards. Otherwise, we lose our controlling tty which |
| 1526 is set when we open the pty. */ | |
| 1527 setpgrp (); | |
| 1528 #endif /* USG */ | |
| 1529 #endif /* not HAVE_SETSID */ | |
|
7116
d35b11eed89f
(create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents:
7059
diff
changeset
|
1530 #if defined (HAVE_TERMIOS) && defined (LDISC1) |
|
d35b11eed89f
(create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents:
7059
diff
changeset
|
1531 if (pty_flag && xforkin >= 0) |
|
d35b11eed89f
(create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents:
7059
diff
changeset
|
1532 { |
|
d35b11eed89f
(create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents:
7059
diff
changeset
|
1533 struct termios t; |
|
d35b11eed89f
(create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents:
7059
diff
changeset
|
1534 tcgetattr (xforkin, &t); |
|
d35b11eed89f
(create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents:
7059
diff
changeset
|
1535 t.c_lflag = LDISC1; |
|
d35b11eed89f
(create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents:
7059
diff
changeset
|
1536 if (tcsetattr (xforkin, TCSANOW, &t) < 0) |
|
d35b11eed89f
(create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents:
7059
diff
changeset
|
1537 write (1, "create_process/tcsetattr LDISC1 failed\n", 39); |
|
d35b11eed89f
(create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents:
7059
diff
changeset
|
1538 } |
|
d35b11eed89f
(create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents:
7059
diff
changeset
|
1539 #else |
|
6947
c5f990fad6bb
(create_process): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6928
diff
changeset
|
1540 #if defined (NTTYDISC) && defined (TIOCSETD) |
|
6393
7de1d288460e
(create_process): Skip the ioctl if fd is -1.
Karl Heuer <kwzh@gnu.org>
parents:
6390
diff
changeset
|
1541 if (pty_flag && xforkin >= 0) |
|
5548
36d2fd17f833
(create_process): Set line discipline only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
5543
diff
changeset
|
1542 { |
|
36d2fd17f833
(create_process): Set line discipline only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
5543
diff
changeset
|
1543 /* Use new line discipline. */ |
|
36d2fd17f833
(create_process): Set line discipline only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
5543
diff
changeset
|
1544 int ldisc = NTTYDISC; |
|
7605
53186c2698e5
(create_process): Don't complain about error from TIOCSETD.
Richard M. Stallman <rms@gnu.org>
parents:
7486
diff
changeset
|
1545 ioctl (xforkin, TIOCSETD, &ldisc); |
|
5548
36d2fd17f833
(create_process): Set line discipline only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
5543
diff
changeset
|
1546 } |
|
5347
21bffe027a7d
(create_process) [NTTYDISC]: Set the tty line discipline.
Richard M. Stallman <rms@gnu.org>
parents:
5332
diff
changeset
|
1547 #endif |
|
7116
d35b11eed89f
(create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents:
7059
diff
changeset
|
1548 #endif |
| 578 | 1549 #ifdef TIOCNOTTY |
| 1550 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you | |
| 1551 can do TIOCSPGRP only to the process's controlling tty. */ | |
| 1552 if (pty_flag) | |
| 1553 { | |
| 1554 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here? | |
| 1555 I can't test it since I don't have 4.3. */ | |
| 1556 int j = open ("/dev/tty", O_RDWR, 0); | |
| 1557 ioctl (j, TIOCNOTTY, 0); | |
| 1558 close (j); | |
|
3826
647bef18618f
Changes for Irix 4.0, tested this time:
Jim Blandy <jimb@redhat.com>
parents:
3810
diff
changeset
|
1559 #ifndef USG |
| 578 | 1560 /* In order to get a controlling terminal on some versions |
| 1561 of BSD, it is necessary to put the process in pgrp 0 | |
| 1562 before it opens the terminal. */ | |
|
16127
8d6d35b486c0
(create_process): Test HAVE_SETPGID for using setpgid.
Richard M. Stallman <rms@gnu.org>
parents:
16116
diff
changeset
|
1563 #ifdef HAVE_SETPGID |
|
9882
ccc5562a7194
(create_process) [OSF1]: Use setpgid, not setpgrp.
Richard M. Stallman <rms@gnu.org>
parents:
9793
diff
changeset
|
1564 setpgid (0, 0); |
|
ccc5562a7194
(create_process) [OSF1]: Use setpgid, not setpgrp.
Richard M. Stallman <rms@gnu.org>
parents:
9793
diff
changeset
|
1565 #else |
| 578 | 1566 setpgrp (0, 0); |
| 1567 #endif | |
|
9882
ccc5562a7194
(create_process) [OSF1]: Use setpgid, not setpgrp.
Richard M. Stallman <rms@gnu.org>
parents:
9793
diff
changeset
|
1568 #endif |
| 578 | 1569 } |
| 1570 #endif /* TIOCNOTTY */ | |
| 1571 | |
|
16076
5d1e0290bbd0
(create_process): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
16058
diff
changeset
|
1572 #if !defined (RTU) && !defined (UNIPLUS) && !defined (DONT_REOPEN_PTY) |
| 578 | 1573 /*** There is a suggestion that this ought to be a |
|
16076
5d1e0290bbd0
(create_process): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
16058
diff
changeset
|
1574 conditional on TIOCSPGRP, |
|
5d1e0290bbd0
(create_process): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
16058
diff
changeset
|
1575 or !(defined (HAVE_SETSID) && defined (TIOCSCTTY)). |
|
5d1e0290bbd0
(create_process): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
16058
diff
changeset
|
1576 Trying the latter gave the wrong results on Debian GNU/Linux 1.1; |
|
5d1e0290bbd0
(create_process): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
16058
diff
changeset
|
1577 that system does seem to need this code, even though |
|
5d1e0290bbd0
(create_process): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
16058
diff
changeset
|
1578 both HAVE_SETSID and TIOCSCTTY are defined. */ |
| 578 | 1579 /* Now close the pty (if we had it open) and reopen it. |
| 1580 This makes the pty the controlling terminal of the subprocess. */ | |
| 1581 if (pty_flag) | |
| 1582 { | |
|
5240
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
1583 #ifdef SET_CHILD_PTY_PGRP |
|
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
1584 int pgrp = getpid (); |
|
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
1585 #endif |
|
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
1586 |
| 578 | 1587 /* I wonder if close (open (pty_name, ...)) would work? */ |
| 1588 if (xforkin >= 0) | |
| 1589 close (xforkin); | |
| 1590 xforkout = xforkin = open (pty_name, O_RDWR, 0); | |
| 1591 | |
|
11514
321726163a65
(create_process): Don't abort if can't reopen
Richard M. Stallman <rms@gnu.org>
parents:
11376
diff
changeset
|
1592 if (xforkin < 0) |
|
321726163a65
(create_process): Don't abort if can't reopen
Richard M. Stallman <rms@gnu.org>
parents:
11376
diff
changeset
|
1593 { |
|
321726163a65
(create_process): Don't abort if can't reopen
Richard M. Stallman <rms@gnu.org>
parents:
11376
diff
changeset
|
1594 write (1, "Couldn't open the pty terminal ", 31); |
|
321726163a65
(create_process): Don't abort if can't reopen
Richard M. Stallman <rms@gnu.org>
parents:
11376
diff
changeset
|
1595 write (1, pty_name, strlen (pty_name)); |
|
321726163a65
(create_process): Don't abort if can't reopen
Richard M. Stallman <rms@gnu.org>
parents:
11376
diff
changeset
|
1596 write (1, "\n", 1); |
|
321726163a65
(create_process): Don't abort if can't reopen
Richard M. Stallman <rms@gnu.org>
parents:
11376
diff
changeset
|
1597 _exit (1); |
|
321726163a65
(create_process): Don't abort if can't reopen
Richard M. Stallman <rms@gnu.org>
parents:
11376
diff
changeset
|
1598 } |
|
321726163a65
(create_process): Don't abort if can't reopen
Richard M. Stallman <rms@gnu.org>
parents:
11376
diff
changeset
|
1599 |
|
5240
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
1600 #ifdef SET_CHILD_PTY_PGRP |
|
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
1601 ioctl (xforkin, TIOCSPGRP, &pgrp); |
|
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
1602 ioctl (xforkout, TIOCSPGRP, &pgrp); |
|
eed870591987
(Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents:
5239
diff
changeset
|
1603 #endif |
| 578 | 1604 } |
|
16076
5d1e0290bbd0
(create_process): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
16058
diff
changeset
|
1605 #endif /* not UNIPLUS and not RTU and not DONT_REOPEN_PTY */ |
|
15368
6229fb866493
(create_process): Add DONT_OPEN_PTY conditional.
Richard M. Stallman <rms@gnu.org>
parents:
15355
diff
changeset
|
1606 |
| 578 | 1607 #ifdef SETUP_SLAVE_PTY |
|
7058
1855e568a9b8
(create_process): Use SETUP_SLAVE_PTY only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
7044
diff
changeset
|
1608 if (pty_flag) |
|
1855e568a9b8
(create_process): Use SETUP_SLAVE_PTY only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
7044
diff
changeset
|
1609 { |
|
1855e568a9b8
(create_process): Use SETUP_SLAVE_PTY only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
7044
diff
changeset
|
1610 SETUP_SLAVE_PTY; |
|
1855e568a9b8
(create_process): Use SETUP_SLAVE_PTY only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
7044
diff
changeset
|
1611 } |
| 578 | 1612 #endif /* SETUP_SLAVE_PTY */ |
| 1613 #ifdef AIX | |
| 1614 /* On AIX, we've disabled SIGHUP above once we start a child on a pty. | |
| 1615 Now reenable it in the child, so it will die when we want it to. */ | |
| 1616 if (pty_flag) | |
| 1617 signal (SIGHUP, SIG_DFL); | |
| 1618 #endif | |
| 1619 #endif /* HAVE_PTYS */ | |
| 1620 | |
|
13709
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1621 signal (SIGINT, SIG_DFL); |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1622 signal (SIGQUIT, SIG_DFL); |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1623 |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1624 /* Stop blocking signals in the child. */ |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1625 #ifdef POSIX_SIGNALS |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1626 sigprocmask (SIG_SETMASK, &procmask, 0); |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1627 #else /* !POSIX_SIGNALS */ |
| 578 | 1628 #ifdef SIGCHLD |
| 1629 #ifdef BSD4_1 | |
| 1630 sigrelse (SIGCHLD); | |
| 1631 #else /* not BSD4_1 */ | |
|
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
16206
diff
changeset
|
1632 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX) |
| 578 | 1633 sigsetmask (SIGEMPTYMASK); |
| 1634 #else /* ordinary USG */ | |
|
1207
af619d68a576
* process.c [SIGCHLD && !BSD && !UNIPLUS && !HPUX]
Jim Blandy <jimb@redhat.com>
parents:
1180
diff
changeset
|
1635 #if 0 |
| 578 | 1636 signal (SIGCHLD, sigchld); |
|
1207
af619d68a576
* process.c [SIGCHLD && !BSD && !UNIPLUS && !HPUX]
Jim Blandy <jimb@redhat.com>
parents:
1180
diff
changeset
|
1637 #endif |
| 578 | 1638 #endif /* ordinary USG */ |
| 1639 #endif /* not BSD4_1 */ | |
| 1640 #endif /* SIGCHLD */ | |
|
13709
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1641 #endif /* !POSIX_SIGNALS */ |
|
8390
ee13e8728666
(create_process): Set default handling for SIGINT, etc.
Richard M. Stallman <rms@gnu.org>
parents:
8354
diff
changeset
|
1642 |
|
7059
6a55de48ade5
(create_process): Use child_setup_tty only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
7058
diff
changeset
|
1643 if (pty_flag) |
|
6a55de48ade5
(create_process): Use child_setup_tty only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents:
7058
diff
changeset
|
1644 child_setup_tty (xforkout); |
|
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
1645 #ifdef WINDOWSNT |
|
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
1646 pid = child_setup (xforkin, xforkout, xforkout, |
|
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
1647 new_argv, 1, current_dir); |
|
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
1648 #else /* not WINDOWSNT */ |
| 578 | 1649 child_setup (xforkin, xforkout, xforkout, |
| 638 | 1650 new_argv, 1, current_dir); |
|
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
1651 #endif /* not WINDOWSNT */ |
| 578 | 1652 } |
| 1653 environ = save_environ; | |
| 1654 } | |
| 1655 | |
| 16780 | 1656 UNBLOCK_INPUT; |
| 1657 | |
|
14131
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1658 /* This runs in the Emacs process. */ |
| 578 | 1659 if (pid < 0) |
|
7157
3f4fc9d682b4
(create_process): If vfork fails, close forkin and forkout.
Richard M. Stallman <rms@gnu.org>
parents:
7116
diff
changeset
|
1660 { |
|
3f4fc9d682b4
(create_process): If vfork fails, close forkin and forkout.
Richard M. Stallman <rms@gnu.org>
parents:
7116
diff
changeset
|
1661 if (forkin >= 0) |
|
3f4fc9d682b4
(create_process): If vfork fails, close forkin and forkout.
Richard M. Stallman <rms@gnu.org>
parents:
7116
diff
changeset
|
1662 close (forkin); |
|
3f4fc9d682b4
(create_process): If vfork fails, close forkin and forkout.
Richard M. Stallman <rms@gnu.org>
parents:
7116
diff
changeset
|
1663 if (forkin != forkout && forkout >= 0) |
|
3f4fc9d682b4
(create_process): If vfork fails, close forkin and forkout.
Richard M. Stallman <rms@gnu.org>
parents:
7116
diff
changeset
|
1664 close (forkout); |
|
3f4fc9d682b4
(create_process): If vfork fails, close forkin and forkout.
Richard M. Stallman <rms@gnu.org>
parents:
7116
diff
changeset
|
1665 } |
|
14131
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1666 else |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1667 { |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1668 /* vfork succeeded. */ |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1669 XSETFASTINT (XPROCESS (process)->pid, pid); |
| 578 | 1670 |
|
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
1671 #ifdef WINDOWSNT |
|
14131
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1672 register_child (pid, inchannel); |
|
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
1673 #endif /* WINDOWSNT */ |
|
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
1674 |
|
14131
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1675 /* If the subfork execv fails, and it exits, |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1676 this close hangs. I don't know why. |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1677 So have an interrupt jar it loose. */ |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1678 stop_polling (); |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1679 signal (SIGALRM, create_process_1); |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1680 alarm (1); |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1681 XPROCESS (process)->subtty = Qnil; |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1682 if (forkin >= 0) |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1683 close (forkin); |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1684 alarm (0); |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1685 start_polling (); |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1686 if (forkin != forkout && forkout >= 0) |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1687 close (forkout); |
| 578 | 1688 |
|
11609
3b2dacb1bfe9
(create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents:
11514
diff
changeset
|
1689 #ifdef HAVE_PTYS |
|
14131
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1690 if (pty_flag) |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1691 XPROCESS (process)->tty_name = build_string (pty_name); |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1692 else |
|
11609
3b2dacb1bfe9
(create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents:
11514
diff
changeset
|
1693 #endif |
|
14131
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1694 XPROCESS (process)->tty_name = Qnil; |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1695 } |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1696 |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1697 /* Restore the signal state whether vfork succeeded or not. |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1698 (We will signal an error, below, if it failed.) */ |
|
13709
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1699 #ifdef POSIX_SIGNALS |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1700 #ifdef HAVE_VFORK |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1701 /* Restore the parent's signal handlers. */ |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1702 sigaction (SIGINT, &sigint_action, 0); |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1703 sigaction (SIGQUIT, &sigquit_action, 0); |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1704 #ifdef AIX |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1705 sigaction (SIGHUP, &sighup_action, 0); |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1706 #endif |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1707 #endif /* HAVE_VFORK */ |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1708 /* Stop blocking signals in the parent. */ |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1709 sigprocmask (SIG_SETMASK, &procmask, 0); |
|
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1710 #else /* !POSIX_SIGNALS */ |
| 578 | 1711 #ifdef SIGCHLD |
| 1712 #ifdef BSD4_1 | |
| 1713 sigrelse (SIGCHLD); | |
| 1714 #else /* not BSD4_1 */ | |
|
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
16206
diff
changeset
|
1715 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX) |
| 578 | 1716 sigsetmask (SIGEMPTYMASK); |
| 1717 #else /* ordinary USG */ | |
| 1718 #if 0 | |
| 1719 signal (SIGCHLD, sigchld); | |
| 1720 /* Now really handle any of these signals | |
| 1721 that came in during this function. */ | |
| 1722 if (sigchld_deferred) | |
| 1723 kill (getpid (), SIGCHLD); | |
| 1724 #endif | |
| 1725 #endif /* ordinary USG */ | |
| 1726 #endif /* not BSD4_1 */ | |
| 1727 #endif /* SIGCHLD */ | |
|
13709
d16f31ae8adf
(create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents:
13414
diff
changeset
|
1728 #endif /* !POSIX_SIGNALS */ |
|
14131
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1729 |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1730 /* Now generate the error if vfork failed. */ |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1731 if (pid < 0) |
|
7717b68abd2e
(create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents:
14085
diff
changeset
|
1732 report_file_error ("Doing vfork", Qnil); |
| 578 | 1733 } |
| 1734 #endif /* not VMS */ | |
| 1735 | |
| 1736 #ifdef HAVE_SOCKETS | |
| 1737 | |
| 1738 /* open a TCP network connection to a given HOST/SERVICE. Treated | |
| 1739 exactly like a normal process when reading and writing. Only | |
| 1740 differences are in status display and process deletion. A network | |
| 1741 connection has no PID; you cannot signal it. All you can do is | |
| 1742 deactivate and close it via delete-process */ | |
| 1743 | |
| 1744 DEFUN ("open-network-stream", Fopen_network_stream, Sopen_network_stream, | |
| 1745 4, 4, 0, | |
| 1746 "Open a TCP connection for a service to a host.\n\ | |
| 1747 Returns a subprocess-object to represent the connection.\n\ | |
| 1748 Input and output work as for subprocesses; `delete-process' closes it.\n\ | |
| 1749 Args are NAME BUFFER HOST SERVICE.\n\ | |
| 1750 NAME is name for process. It is modified if necessary to make it unique.\n\ | |
| 1751 BUFFER is the buffer (or buffer-name) to associate with the process.\n\ | |
| 1752 Process output goes at end of that buffer, unless you specify\n\ | |
| 1753 an output stream or filter function to handle the output.\n\ | |
| 1754 BUFFER may be also nil, meaning that this process is not associated\n\ | |
| 1755 with any buffer\n\ | |
| 1756 Third arg is name of the host to connect to, or its IP address.\n\ | |
| 1757 Fourth arg SERVICE is name of the service desired, or an integer\n\ | |
| 1758 specifying a port number to connect to.") | |
| 1759 (name, buffer, host, service) | |
| 1760 Lisp_Object name, buffer, host, service; | |
| 1761 { | |
| 1762 Lisp_Object proc; | |
| 1763 register int i; | |
| 1764 struct sockaddr_in address; | |
| 1765 struct servent *svc_info; | |
| 1766 struct hostent *host_info_ptr, host_info; | |
| 1767 char *(addr_list[2]); | |
|
4998
3cd3a39f98f4
(IN_ADDR, NUMERIC_ADDR_ERROR): New macros (two versions).
Richard M. Stallman <rms@gnu.org>
parents:
4994
diff
changeset
|
1768 IN_ADDR numeric_addr; |
| 578 | 1769 int s, outch, inch; |
| 1770 char errstring[80]; | |
| 1771 int port; | |
| 1772 struct hostent host_info_fixed; | |
| 1773 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; | |
|
7220
a33eb16cab9d
(Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents:
7157
diff
changeset
|
1774 int retry = 0; |
|
7486
cfe4840ffde9
(Fopen_network_stream): Call bind_polling_period; later unbind the binding.
Richard M. Stallman <rms@gnu.org>
parents:
7454
diff
changeset
|
1775 int count = specpdl_ptr - specpdl; |
| 578 | 1776 |
|
15355
6bb377ef707f
(Fopen_network_stream)[WINDOWSNT]: Ensure Windows
Richard M. Stallman <rms@gnu.org>
parents:
15092
diff
changeset
|
1777 #ifdef WINDOWSNT |
|
6bb377ef707f
(Fopen_network_stream)[WINDOWSNT]: Ensure Windows
Richard M. Stallman <rms@gnu.org>
parents:
15092
diff
changeset
|
1778 /* Ensure socket support is loaded if available. */ |
|
6bb377ef707f
(Fopen_network_stream)[WINDOWSNT]: Ensure Windows
Richard M. Stallman <rms@gnu.org>
parents:
15092
diff
changeset
|
1779 init_winsock (TRUE); |
|
6bb377ef707f
(Fopen_network_stream)[WINDOWSNT]: Ensure Windows
Richard M. Stallman <rms@gnu.org>
parents:
15092
diff
changeset
|
1780 #endif |
|
6bb377ef707f
(Fopen_network_stream)[WINDOWSNT]: Ensure Windows
Richard M. Stallman <rms@gnu.org>
parents:
15092
diff
changeset
|
1781 |
| 578 | 1782 GCPRO4 (name, buffer, host, service); |
| 1783 CHECK_STRING (name, 0); | |
| 1784 CHECK_STRING (host, 0); | |
|
9115
59bc2d010b5f
(decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents:
9034
diff
changeset
|
1785 if (INTEGERP (service)) |
| 578 | 1786 port = htons ((unsigned short) XINT (service)); |
| 1787 else | |
| 1788 { | |
| 1789 CHECK_STRING (service, 0); | |
| 1790 svc_info = getservbyname (XSTRING (service)->data, "tcp"); | |
| 1791 if (svc_info == 0) | |
| 1792 error ("Unknown service \"%s\"", XSTRING (service)->data); | |
| 1793 port = svc_info->s_port; | |
| 1794 } | |
| 1795 | |
|
13777
5e0cbd5fcb46
(Fopen_network_stream): Call bind_polling_period earlier.
Karl Heuer <kwzh@gnu.org>
parents:
13709
diff
changeset
|
1796 /* Slow down polling to every ten seconds. |
|
5e0cbd5fcb46
(Fopen_network_stream): Call bind_polling_period earlier.
Karl Heuer <kwzh@gnu.org>
parents:
13709
diff
changeset
|
1797 Some kernels have a bug which causes retrying connect to fail |
|
5e0cbd5fcb46
(Fopen_network_stream): Call bind_polling_period earlier.
Karl Heuer <kwzh@gnu.org>
parents:
13709
diff
changeset
|
1798 after a connect. Polling can interfere with gethostbyname too. */ |
|
5e0cbd5fcb46
(Fopen_network_stream): Call bind_polling_period earlier.
Karl Heuer <kwzh@gnu.org>
parents:
13709
diff
changeset
|
1799 #ifdef POLL_FOR_INPUT |
|
5e0cbd5fcb46
(Fopen_network_stream): Call bind_polling_period earlier.
Karl Heuer <kwzh@gnu.org>
parents:
13709
diff
changeset
|
1800 bind_polling_period (10); |
|
5e0cbd5fcb46
(Fopen_network_stream): Call bind_polling_period earlier.
Karl Heuer <kwzh@gnu.org>
parents:
13709
diff
changeset
|
1801 #endif |
|
5e0cbd5fcb46
(Fopen_network_stream): Call bind_polling_period earlier.
Karl Heuer <kwzh@gnu.org>
parents:
13709
diff
changeset
|
1802 |
|
4914
56bc426b1eb4
[TERM]: Include client.h.
Richard M. Stallman <rms@gnu.org>
parents:
4883
diff
changeset
|
1803 #ifndef TERM |
|
8287
97c2535b7f37
(Fopen_network_stream): Retry gethostbyname after TRY_AGAIN failure.
Richard M. Stallman <rms@gnu.org>
parents:
8231
diff
changeset
|
1804 while (1) |
|
97c2535b7f37
(Fopen_network_stream): Retry gethostbyname after TRY_AGAIN failure.
Richard M. Stallman <rms@gnu.org>
parents:
8231
diff
changeset
|
1805 { |
|
8331
14ddb4c66461
[!HAVE_H_ERRNO]: Declare h_errno.
Richard M. Stallman <rms@gnu.org>
parents:
8287
diff
changeset
|
1806 #ifdef TRY_AGAIN |
|
14ddb4c66461
[!HAVE_H_ERRNO]: Declare h_errno.
Richard M. Stallman <rms@gnu.org>
parents:
8287
diff
changeset
|
1807 h_errno = 0; |
|
14ddb4c66461
[!HAVE_H_ERRNO]: Declare h_errno.
Richard M. Stallman <rms@gnu.org>
parents:
8287
diff
changeset
|
1808 #endif |
|
14758
849458c13c0c
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14736
diff
changeset
|
1809 immediate_quit = 1; |
|
849458c13c0c
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14736
diff
changeset
|
1810 QUIT; |
|
8287
97c2535b7f37
(Fopen_network_stream): Retry gethostbyname after TRY_AGAIN failure.
Richard M. Stallman <rms@gnu.org>
parents:
8231
diff
changeset
|
1811 host_info_ptr = gethostbyname (XSTRING (host)->data); |
|
14758
849458c13c0c
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14736
diff
changeset
|
1812 immediate_quit = 0; |
|
8287
97c2535b7f37
(Fopen_network_stream): Retry gethostbyname after TRY_AGAIN failure.
Richard M. Stallman <rms@gnu.org>
parents:
8231
diff
changeset
|
1813 #ifdef TRY_AGAIN |
|
97c2535b7f37
(Fopen_network_stream): Retry gethostbyname after TRY_AGAIN failure.
Richard M. Stallman <rms@gnu.org>
parents:
8231
diff
changeset
|
1814 if (! (host_info_ptr == 0 && h_errno == TRY_AGAIN)) |
|
97c2535b7f37
(Fopen_network_stream): Retry gethostbyname after TRY_AGAIN failure.
Richard M. Stallman <rms@gnu.org>
parents:
8231
diff
changeset
|
1815 #endif |
|
97c2535b7f37
(Fopen_network_stream): Retry gethostbyname after TRY_AGAIN failure.
Richard M. Stallman <rms@gnu.org>
parents:
8231
diff
changeset
|
1816 break; |
|
97c2535b7f37
(Fopen_network_stream): Retry gethostbyname after TRY_AGAIN failure.
Richard M. Stallman <rms@gnu.org>
parents:
8231
diff
changeset
|
1817 Fsleep_for (make_number (1), Qnil); |
|
97c2535b7f37
(Fopen_network_stream): Retry gethostbyname after TRY_AGAIN failure.
Richard M. Stallman <rms@gnu.org>
parents:
8231
diff
changeset
|
1818 } |
| 578 | 1819 if (host_info_ptr == 0) |
| 1820 /* Attempt to interpret host as numeric inet address */ | |
| 1821 { | |
|
4883
a806d71f58f6
(Fopen_netwrok_stream): Cast arg to inet_addr to (char *).
Brian Fox <bfox@gnu.org>
parents:
4870
diff
changeset
|
1822 numeric_addr = inet_addr ((char *) XSTRING (host)->data); |
|
4998
3cd3a39f98f4
(IN_ADDR, NUMERIC_ADDR_ERROR): New macros (two versions).
Richard M. Stallman <rms@gnu.org>
parents:
4994
diff
changeset
|
1823 if (NUMERIC_ADDR_ERROR) |
| 578 | 1824 error ("Unknown host \"%s\"", XSTRING (host)->data); |
| 1825 | |
| 1826 host_info_ptr = &host_info; | |
| 1827 host_info.h_name = 0; | |
| 1828 host_info.h_aliases = 0; | |
| 1829 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
|
1830 #ifdef h_addr |
|
f66a150d3fb9
* process.c (Fopen_network_stream): Deal with older systems, which
Jim Blandy <jimb@redhat.com>
parents:
2917
diff
changeset
|
1831 /* 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
|
1832 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
|
1833 be its first element. */ |
|
f66a150d3fb9
* process.c (Fopen_network_stream): Deal with older systems, which
Jim Blandy <jimb@redhat.com>
parents:
2917
diff
changeset
|
1834 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
|
1835 #endif |
|
f66a150d3fb9
* process.c (Fopen_network_stream): Deal with older systems, which
Jim Blandy <jimb@redhat.com>
parents:
2917
diff
changeset
|
1836 host_info.h_addr = (char*)(&numeric_addr); |
| 578 | 1837 addr_list[1] = 0; |
|
14544
ef07b51330af
(Fopen_network_stream): Use sizeof, not strlen, for numeric_addr.
Richard M. Stallman <rms@gnu.org>
parents:
14513
diff
changeset
|
1838 /* numeric_addr isn't null-terminated; it has fixed length. */ |
|
ef07b51330af
(Fopen_network_stream): Use sizeof, not strlen, for numeric_addr.
Richard M. Stallman <rms@gnu.org>
parents:
14513
diff
changeset
|
1839 host_info.h_length = sizeof (numeric_addr); |
| 578 | 1840 } |
| 1841 | |
| 1842 bzero (&address, sizeof address); | |
| 1843 bcopy (host_info_ptr->h_addr, (char *) &address.sin_addr, | |
| 1844 host_info_ptr->h_length); | |
| 1845 address.sin_family = host_info_ptr->h_addrtype; | |
| 1846 address.sin_port = port; | |
| 1847 | |
| 1848 s = socket (host_info_ptr->h_addrtype, SOCK_STREAM, 0); | |
| 1849 if (s < 0) | |
| 1850 report_file_error ("error creating socket", Fcons (name, Qnil)); | |
| 1851 | |
|
5332
c559b3d1b9e4
(Fopen_network_stream): Turn off SIGIO while connecting.
Richard M. Stallman <rms@gnu.org>
parents:
5240
diff
changeset
|
1852 /* Kernel bugs (on Ultrix at least) cause lossage (not just EINTR) |
|
c559b3d1b9e4
(Fopen_network_stream): Turn off SIGIO while connecting.
Richard M. Stallman <rms@gnu.org>
parents:
5240
diff
changeset
|
1853 when connect is interrupted. So let's not let it get interrupted. |
|
c559b3d1b9e4
(Fopen_network_stream): Turn off SIGIO while connecting.
Richard M. Stallman <rms@gnu.org>
parents:
5240
diff
changeset
|
1854 Note we do not turn off polling, because polling is only used |
|
c559b3d1b9e4
(Fopen_network_stream): Turn off SIGIO while connecting.
Richard M. Stallman <rms@gnu.org>
parents:
5240
diff
changeset
|
1855 when not interrupt_input, and thus not normally used on the systems |
|
c559b3d1b9e4
(Fopen_network_stream): Turn off SIGIO while connecting.
Richard M. Stallman <rms@gnu.org>
parents:
5240
diff
changeset
|
1856 which have this bug. On systems which use polling, there's no way |
|
c559b3d1b9e4
(Fopen_network_stream): Turn off SIGIO while connecting.
Richard M. Stallman <rms@gnu.org>
parents:
5240
diff
changeset
|
1857 to quit if polling is turned off. */ |
|
c559b3d1b9e4
(Fopen_network_stream): Turn off SIGIO while connecting.
Richard M. Stallman <rms@gnu.org>
parents:
5240
diff
changeset
|
1858 if (interrupt_input) |
|
c559b3d1b9e4
(Fopen_network_stream): Turn off SIGIO while connecting.
Richard M. Stallman <rms@gnu.org>
parents:
5240
diff
changeset
|
1859 unrequest_sigio (); |
|
c559b3d1b9e4
(Fopen_network_stream): Turn off SIGIO while connecting.
Richard M. Stallman <rms@gnu.org>
parents:
5240
diff
changeset
|
1860 |
| 578 | 1861 loop: |
|
14671
0493e857a13b
(Fopen_network_stream): Set immediate_quit for the connect.
Richard M. Stallman <rms@gnu.org>
parents:
14613
diff
changeset
|
1862 |
|
0493e857a13b
(Fopen_network_stream): Set immediate_quit for the connect.
Richard M. Stallman <rms@gnu.org>
parents:
14613
diff
changeset
|
1863 immediate_quit = 1; |
|
0493e857a13b
(Fopen_network_stream): Set immediate_quit for the connect.
Richard M. Stallman <rms@gnu.org>
parents:
14613
diff
changeset
|
1864 QUIT; |
|
0493e857a13b
(Fopen_network_stream): Set immediate_quit for the connect.
Richard M. Stallman <rms@gnu.org>
parents:
14613
diff
changeset
|
1865 |
|
7220
a33eb16cab9d
(Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents:
7157
diff
changeset
|
1866 if (connect (s, (struct sockaddr *) &address, sizeof address) == -1 |
|
a33eb16cab9d
(Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents:
7157
diff
changeset
|
1867 && errno != EISCONN) |
| 578 | 1868 { |
| 1869 int xerrno = errno; | |
|
7220
a33eb16cab9d
(Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents:
7157
diff
changeset
|
1870 |
|
14671
0493e857a13b
(Fopen_network_stream): Set immediate_quit for the connect.
Richard M. Stallman <rms@gnu.org>
parents:
14613
diff
changeset
|
1871 immediate_quit = 0; |
|
0493e857a13b
(Fopen_network_stream): Set immediate_quit for the connect.
Richard M. Stallman <rms@gnu.org>
parents:
14613
diff
changeset
|
1872 |
| 578 | 1873 if (errno == EINTR) |
| 1874 goto loop; | |
|
7220
a33eb16cab9d
(Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents:
7157
diff
changeset
|
1875 if (errno == EADDRINUSE && retry < 20) |
|
a33eb16cab9d
(Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents:
7157
diff
changeset
|
1876 { |
|
12378
3171d5da8a86
(Fopen_network_stream): Sleep 1 sec before connect retry.
Richard M. Stallman <rms@gnu.org>
parents:
12324
diff
changeset
|
1877 /* A delay here is needed on some FreeBSD systems, |
|
3171d5da8a86
(Fopen_network_stream): Sleep 1 sec before connect retry.
Richard M. Stallman <rms@gnu.org>
parents:
12324
diff
changeset
|
1878 and it is harmless, since this retrying takes time anyway |
|
3171d5da8a86
(Fopen_network_stream): Sleep 1 sec before connect retry.
Richard M. Stallman <rms@gnu.org>
parents:
12324
diff
changeset
|
1879 and should be infrequent. */ |
|
3171d5da8a86
(Fopen_network_stream): Sleep 1 sec before connect retry.
Richard M. Stallman <rms@gnu.org>
parents:
12324
diff
changeset
|
1880 Fsleep_for (make_number (1), Qnil); |
|
7220
a33eb16cab9d
(Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents:
7157
diff
changeset
|
1881 retry++; |
|
a33eb16cab9d
(Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents:
7157
diff
changeset
|
1882 goto loop; |
|
a33eb16cab9d
(Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents:
7157
diff
changeset
|
1883 } |
|
a33eb16cab9d
(Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents:
7157
diff
changeset
|
1884 |
| 578 | 1885 close (s); |
|
5332
c559b3d1b9e4
(Fopen_network_stream): Turn off SIGIO while connecting.
Richard M. Stallman <rms@gnu.org>
parents:
5240
diff
changeset
|
1886 |
|
c559b3d1b9e4
(Fopen_network_stream): Turn off SIGIO while connecting.
Richard M. Stallman <rms@gnu.org>
parents:
5240
diff
changeset
|
1887 if (interrupt_input) |
|
c559b3d1b9e4
(Fopen_network_stream): Turn off SIGIO while connecting.
Richard M. Stallman <rms@gnu.org>
parents:
5240
diff
changeset
|
1888 request_sigio (); |
|
c559b3d1b9e4
(Fopen_network_stream): Turn off SIGIO while connecting.
Richard M. Stallman <rms@gnu.org>
parents:
5240
diff
changeset
|
1889 |
| 578 | 1890 errno = xerrno; |
| 1891 report_file_error ("connection failed", | |
| 1892 Fcons (host, Fcons (name, Qnil))); | |
| 1893 } | |
|
5332
c559b3d1b9e4
(Fopen_network_stream): Turn off SIGIO while connecting.
Richard M. Stallman <rms@gnu.org>
parents:
5240
diff
changeset
|
1894 |
|
14671
0493e857a13b
(Fopen_network_stream): Set immediate_quit for the connect.
Richard M. Stallman <rms@gnu.org>
parents:
14613
diff
changeset
|
1895 immediate_quit = 0; |
|
0493e857a13b
(Fopen_network_stream): Set immediate_quit for the connect.
Richard M. Stallman <rms@gnu.org>
parents:
14613
diff
changeset
|
1896 |
|
7486
cfe4840ffde9
(Fopen_network_stream): Call bind_polling_period; later unbind the binding.
Richard M. Stallman <rms@gnu.org>
parents:
7454
diff
changeset
|
1897 #ifdef POLL_FOR_INPUT |
|
cfe4840ffde9
(Fopen_network_stream): Call bind_polling_period; later unbind the binding.
Richard M. Stallman <rms@gnu.org>
parents:
7454
diff
changeset
|
1898 unbind_to (count, Qnil); |
|
cfe4840ffde9
(Fopen_network_stream): Call bind_polling_period; later unbind the binding.
Richard M. Stallman <rms@gnu.org>
parents:
7454
diff
changeset
|
1899 #endif |
|
cfe4840ffde9
(Fopen_network_stream): Call bind_polling_period; later unbind the binding.
Richard M. Stallman <rms@gnu.org>
parents:
7454
diff
changeset
|
1900 |
|
5332
c559b3d1b9e4
(Fopen_network_stream): Turn off SIGIO while connecting.
Richard M. Stallman <rms@gnu.org>
parents:
5240
diff
changeset
|
1901 if (interrupt_input) |
|
c559b3d1b9e4
(Fopen_network_stream): Turn off SIGIO while connecting.
Richard M. Stallman <rms@gnu.org>
parents:
5240
diff
changeset
|
1902 request_sigio (); |
|
c559b3d1b9e4
(Fopen_network_stream): Turn off SIGIO while connecting.
Richard M. Stallman <rms@gnu.org>
parents:
5240
diff
changeset
|
1903 |
|
4914
56bc426b1eb4
[TERM]: Include client.h.
Richard M. Stallman <rms@gnu.org>
parents:
4883
diff
changeset
|
1904 #else /* TERM */ |
|
56bc426b1eb4
[TERM]: Include client.h.
Richard M. Stallman <rms@gnu.org>
parents:
4883
diff
changeset
|
1905 s = connect_server (0); |
|
56bc426b1eb4
[TERM]: Include client.h.
Richard M. Stallman <rms@gnu.org>
parents:
4883
diff
changeset
|
1906 if (s < 0) |
|
56bc426b1eb4
[TERM]: Include client.h.
Richard M. Stallman <rms@gnu.org>
parents:
4883
diff
changeset
|
1907 report_file_error ("error creating socket", Fcons (name, Qnil)); |
|
56bc426b1eb4
[TERM]: Include client.h.
Richard M. Stallman <rms@gnu.org>
parents:
4883
diff
changeset
|
1908 send_command (s, C_PORT, 0, "%s:%d", XSTRING (host)->data, ntohs (port)); |
|
56bc426b1eb4
[TERM]: Include client.h.
Richard M. Stallman <rms@gnu.org>
parents:
4883
diff
changeset
|
1909 send_command (s, C_DUMB, 1, 0); |
|
56bc426b1eb4
[TERM]: Include client.h.
Richard M. Stallman <rms@gnu.org>
parents:
4883
diff
changeset
|
1910 #endif /* TERM */ |
| 578 | 1911 |
| 1912 inch = s; | |
|
17247
351006378b51
(Fopen_network_stream): Use same socket for in and out.
Richard M. Stallman <rms@gnu.org>
parents:
17224
diff
changeset
|
1913 outch = s; |
| 578 | 1914 |
| 1915 if (!NILP (buffer)) | |
| 1916 buffer = Fget_buffer_create (buffer); | |
| 1917 proc = make_process (name); | |
| 1918 | |
| 1919 chan_process[inch] = proc; | |
| 1920 | |
| 1921 #ifdef O_NONBLOCK | |
| 1922 fcntl (inch, F_SETFL, O_NONBLOCK); | |
| 1923 #else | |
| 1924 #ifdef O_NDELAY | |
| 1925 fcntl (inch, F_SETFL, O_NDELAY); | |
| 1926 #endif | |
| 1927 #endif | |
| 1928 | |
|
16058
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
1929 XPROCESS (proc)->childp = Fcons (host, Fcons (service, Qnil)); |
| 578 | 1930 XPROCESS (proc)->command_channel_p = Qnil; |
| 1931 XPROCESS (proc)->buffer = buffer; | |
| 1932 XPROCESS (proc)->sentinel = Qnil; | |
| 1933 XPROCESS (proc)->filter = Qnil; | |
| 1934 XPROCESS (proc)->command = Qnil; | |
| 1935 XPROCESS (proc)->pid = Qnil; | |
|
15092
5372670fbe59
(Fopen_network_stream): Set process infd to inch.
Richard M. Stallman <rms@gnu.org>
parents:
15064
diff
changeset
|
1936 XSETINT (XPROCESS (proc)->infd, inch); |
|
9277
21f6120be5ba
(make_process, create_process, Fopen_network_stream, deactivate_process,
Karl Heuer <kwzh@gnu.org>
parents:
9115
diff
changeset
|
1937 XSETINT (XPROCESS (proc)->outfd, outch); |
| 578 | 1938 XPROCESS (proc)->status = Qrun; |
| 1939 FD_SET (inch, &input_wait_mask); | |
|
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
1940 FD_SET (inch, &non_keyboard_wait_mask); |
|
7044
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
1941 if (inch > max_process_desc) |
|
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
1942 max_process_desc = inch; |
| 578 | 1943 |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1944 if (!NILP (buffer) && NILP (XBUFFER (buffer)->enable_multibyte_characters) |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1945 || NILP (buffer) && NILP (buffer_defaults.enable_multibyte_characters)) |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1946 { |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1947 XPROCESS (proc)->decode_coding_system = Qnil; |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1948 XPROCESS (proc)->encode_coding_system = Qnil; |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1949 } |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1950 else |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1951 { |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1952 /* Setup coding systems for communicating with the network stream. */ |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1953 struct gcpro gcpro1; |
|
18540
c9470cd6de93
(Fstart_process): Call Ffind_operation_coding_system.
Kenichi Handa <handa@m17n.org>
parents:
18512
diff
changeset
|
1954 /* Qt denotes we have not yet called Ffind_operation_coding_system. */ |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1955 Lisp_Object coding_systems = Qt; |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1956 Lisp_Object args[5], val; |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1957 |
|
18648
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1958 if (!NILP (Vcoding_system_for_read)) |
|
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1959 val = Vcoding_system_for_read; |
|
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1960 else if (NILP (current_buffer->enable_multibyte_characters)) |
|
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1961 /* We dare not decode end-of-line format by setting VAL to |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
1962 Qraw_text, because the existing Emacs Lisp libraries |
|
18648
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1963 assume that they receive bare code including a sequene of |
|
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1964 CR LF. */ |
|
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1965 val = Qnil; |
|
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1966 else |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1967 { |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1968 args[0] = Qopen_network_stream, args[1] = name, |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1969 args[2] = buffer, args[3] = host, args[4] = service; |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1970 GCPRO1 (proc); |
|
18540
c9470cd6de93
(Fstart_process): Call Ffind_operation_coding_system.
Kenichi Handa <handa@m17n.org>
parents:
18512
diff
changeset
|
1971 coding_systems = Ffind_operation_coding_system (5, args); |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1972 UNGCPRO; |
|
18183
dc9d056f204f
(Fstart_process):Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
17604
diff
changeset
|
1973 if (CONSP (coding_systems)) |
|
dc9d056f204f
(Fstart_process):Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
17604
diff
changeset
|
1974 val = XCONS (coding_systems)->car; |
|
dc9d056f204f
(Fstart_process):Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
17604
diff
changeset
|
1975 else if (CONSP (Vdefault_process_coding_system)) |
|
dc9d056f204f
(Fstart_process):Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
17604
diff
changeset
|
1976 val = XCONS (Vdefault_process_coding_system)->car; |
|
18648
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1977 else |
|
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1978 val = Qnil; |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1979 } |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1980 XPROCESS (proc)->decode_coding_system = val; |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1981 |
|
18648
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1982 if (!NILP (Vcoding_system_for_write)) |
|
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1983 val = Vcoding_system_for_write; |
|
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1984 else if (NILP (current_buffer->enable_multibyte_characters)) |
|
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1985 val = Qnil; |
|
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
1986 else |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1987 { |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1988 if (EQ (coding_systems, Qt)) |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1989 { |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1990 args[0] = Qopen_network_stream, args[1] = name, |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1991 args[2] = buffer, args[3] = host, args[4] = service; |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1992 GCPRO1 (proc); |
|
18540
c9470cd6de93
(Fstart_process): Call Ffind_operation_coding_system.
Kenichi Handa <handa@m17n.org>
parents:
18512
diff
changeset
|
1993 coding_systems = Ffind_operation_coding_system (5, args); |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1994 UNGCPRO; |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
1995 } |
|
18183
dc9d056f204f
(Fstart_process):Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
17604
diff
changeset
|
1996 if (CONSP (coding_systems)) |
|
dc9d056f204f
(Fstart_process):Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
17604
diff
changeset
|
1997 val = XCONS (coding_systems)->cdr; |
|
dc9d056f204f
(Fstart_process):Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
17604
diff
changeset
|
1998 else if (CONSP (Vdefault_process_coding_system)) |
|
dc9d056f204f
(Fstart_process):Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
17604
diff
changeset
|
1999 val = XCONS (Vdefault_process_coding_system)->cdr; |
|
18648
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
2000 else |
|
5deb269b970f
(Fstart_process): If enable-multibyte-characters is
Kenichi Handa <handa@m17n.org>
parents:
18585
diff
changeset
|
2001 val = Qnil; |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
2002 } |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
2003 XPROCESS (proc)->encode_coding_system = val; |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
2004 } |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
2005 |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
2006 if (!proc_decode_coding_system[inch]) |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
2007 proc_decode_coding_system[inch] |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
2008 = (struct coding_system *) xmalloc (sizeof (struct coding_system)); |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2009 setup_coding_system (XPROCESS (proc)->decode_coding_system, |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
2010 proc_decode_coding_system[inch]); |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
2011 if (!proc_encode_coding_system[outch]) |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
2012 proc_encode_coding_system[outch] |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
2013 = (struct coding_system *) xmalloc (sizeof (struct coding_system)); |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2014 setup_coding_system (XPROCESS (proc)->encode_coding_system, |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
2015 proc_encode_coding_system[outch]); |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2016 |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2017 XPROCESS (proc)->decoding_buf = make_uninit_string (0); |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2018 XPROCESS (proc)->decoding_carryover = make_number (0); |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2019 XPROCESS (proc)->encoding_buf = make_uninit_string (0); |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2020 XPROCESS (proc)->encoding_carryover = make_number (0); |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2021 |
| 578 | 2022 UNGCPRO; |
| 2023 return proc; | |
| 2024 } | |
| 2025 #endif /* HAVE_SOCKETS */ | |
| 2026 | |
|
20382
dbad9367d232
(create_process, deactivate_process, close_process_descs):
Andreas Schwab <schwab@suse.de>
parents:
20225
diff
changeset
|
2027 void |
| 578 | 2028 deactivate_process (proc) |
| 2029 Lisp_Object proc; | |
| 2030 { | |
| 2031 register int inchannel, outchannel; | |
| 2032 register struct Lisp_Process *p = XPROCESS (proc); | |
| 2033 | |
|
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
2034 inchannel = XINT (p->infd); |
|
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
2035 outchannel = XINT (p->outfd); |
|
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
2036 |
|
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
2037 if (inchannel >= 0) |
| 578 | 2038 { |
| 2039 /* Beware SIGCHLD hereabouts. */ | |
| 2040 flush_pending_output (inchannel); | |
| 2041 #ifdef VMS | |
| 2042 { | |
| 2043 VMS_PROC_STUFF *get_vms_process_pointer (), *vs; | |
| 2044 sys$dassgn (outchannel); | |
|
2357
9faa3a02ea97
* process.c [VMS] (DCL_PROMPT): Remove hack.
Jim Blandy <jimb@redhat.com>
parents:
2290
diff
changeset
|
2045 vs = get_vms_process_pointer (p->pid); |
| 578 | 2046 if (vs) |
| 2047 give_back_vms_process_stuff (vs); | |
| 2048 } | |
| 2049 #else | |
| 2050 close (inchannel); | |
|
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
2051 if (outchannel >= 0 && outchannel != inchannel) |
| 578 | 2052 close (outchannel); |
| 2053 #endif | |
| 2054 | |
|
9277
21f6120be5ba
(make_process, create_process, Fopen_network_stream, deactivate_process,
Karl Heuer <kwzh@gnu.org>
parents:
9115
diff
changeset
|
2055 XSETINT (p->infd, -1); |
|
21f6120be5ba
(make_process, create_process, Fopen_network_stream, deactivate_process,
Karl Heuer <kwzh@gnu.org>
parents:
9115
diff
changeset
|
2056 XSETINT (p->outfd, -1); |
| 578 | 2057 chan_process[inchannel] = Qnil; |
| 2058 FD_CLR (inchannel, &input_wait_mask); | |
|
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
2059 FD_CLR (inchannel, &non_keyboard_wait_mask); |
|
7044
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
2060 if (inchannel == max_process_desc) |
|
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
2061 { |
|
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
2062 int i; |
|
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
2063 /* We just closed the highest-numbered process input descriptor, |
|
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
2064 so recompute the highest-numbered one now. */ |
|
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
2065 max_process_desc = 0; |
|
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
2066 for (i = 0; i < MAXDESC; i++) |
|
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
2067 if (!NILP (chan_process[i])) |
|
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
2068 max_process_desc = i; |
|
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
2069 } |
| 578 | 2070 } |
| 2071 } | |
| 2072 | |
| 2073 /* Close all descriptors currently in use for communication | |
| 2074 with subprocess. This is used in a newly-forked subprocess | |
| 2075 to get rid of irrelevant descriptors. */ | |
| 2076 | |
|
20382
dbad9367d232
(create_process, deactivate_process, close_process_descs):
Andreas Schwab <schwab@suse.de>
parents:
20225
diff
changeset
|
2077 void |
| 578 | 2078 close_process_descs () |
| 2079 { | |
|
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
2080 #ifndef WINDOWSNT |
| 578 | 2081 int i; |
| 2082 for (i = 0; i < MAXDESC; i++) | |
| 2083 { | |
| 2084 Lisp_Object process; | |
| 2085 process = chan_process[i]; | |
| 2086 if (!NILP (process)) | |
| 2087 { | |
|
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
2088 int in = XINT (XPROCESS (process)->infd); |
|
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
2089 int out = XINT (XPROCESS (process)->outfd); |
|
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
2090 if (in >= 0) |
| 578 | 2091 close (in); |
|
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
2092 if (out >= 0 && in != out) |
| 578 | 2093 close (out); |
| 2094 } | |
| 2095 } | |
|
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
2096 #endif |
| 578 | 2097 } |
| 2098 | |
| 2099 DEFUN ("accept-process-output", Faccept_process_output, Saccept_process_output, | |
| 2100 0, 3, 0, | |
| 2101 "Allow any pending output from subprocesses to be read by Emacs.\n\ | |
| 2102 It is read into the process' buffers or given to their filter functions.\n\ | |
| 2103 Non-nil arg PROCESS means do not return until some output has been received\n\ | |
| 2104 from PROCESS.\n\ | |
| 2105 Non-nil second arg TIMEOUT and third arg TIMEOUT-MSECS are number of\n\ | |
| 2106 seconds and microseconds to wait; return after that much time whether\n\ | |
| 2107 or not there is input.\n\ | |
| 2108 Return non-nil iff we received any output before the timeout expired.") | |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2109 (process, timeout, timeout_msecs) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2110 register Lisp_Object process, timeout, timeout_msecs; |
| 578 | 2111 { |
| 2112 int seconds; | |
| 2113 int useconds; | |
| 2114 | |
| 2115 if (! NILP (timeout_msecs)) | |
| 2116 { | |
| 2117 CHECK_NUMBER (timeout_msecs, 2); | |
| 2118 useconds = XINT (timeout_msecs); | |
|
9115
59bc2d010b5f
(decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents:
9034
diff
changeset
|
2119 if (!INTEGERP (timeout)) |
|
9277
21f6120be5ba
(make_process, create_process, Fopen_network_stream, deactivate_process,
Karl Heuer <kwzh@gnu.org>
parents:
9115
diff
changeset
|
2120 XSETINT (timeout, 0); |
| 578 | 2121 |
| 2122 { | |
| 2123 int carry = useconds / 1000000; | |
| 2124 | |
| 2125 XSETINT (timeout, XINT (timeout) + carry); | |
| 2126 useconds -= carry * 1000000; | |
| 2127 | |
| 2128 /* I think this clause is necessary because C doesn't | |
| 2129 guarantee a particular rounding direction for negative | |
| 2130 integers. */ | |
| 2131 if (useconds < 0) | |
| 2132 { | |
| 2133 XSETINT (timeout, XINT (timeout) - 1); | |
| 2134 useconds += 1000000; | |
| 2135 } | |
| 2136 } | |
| 2137 } | |
|
1180
9bf82484415d
(Faccept_process_output): Initialize useconds.
Richard M. Stallman <rms@gnu.org>
parents:
1047
diff
changeset
|
2138 else |
|
9bf82484415d
(Faccept_process_output): Initialize useconds.
Richard M. Stallman <rms@gnu.org>
parents:
1047
diff
changeset
|
2139 useconds = 0; |
| 578 | 2140 |
| 2141 if (! NILP (timeout)) | |
| 2142 { | |
| 2143 CHECK_NUMBER (timeout, 1); | |
| 2144 seconds = XINT (timeout); | |
|
14605
80196bfd8b94
(Faccept_process_output): Accept sub-second timeouts.
Erik Naggum <erik@naggum.no>
parents:
14544
diff
changeset
|
2145 if (seconds < 0 || (seconds == 0 && useconds == 0)) |
| 578 | 2146 seconds = -1; |
| 2147 } | |
| 2148 else | |
| 2149 { | |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2150 if (NILP (process)) |
| 578 | 2151 seconds = -1; |
| 2152 else | |
| 2153 seconds = 0; | |
| 2154 } | |
| 2155 | |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2156 if (NILP (process)) |
|
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2157 XSETFASTINT (process, 0); |
| 650 | 2158 |
| 578 | 2159 return |
|
14085
85ce7bab31dc
(Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2160 (wait_reading_process_input (seconds, useconds, process, 0) |
| 578 | 2161 ? Qt : Qnil); |
| 2162 } | |
| 2163 | |
| 2164 /* This variable is different from waiting_for_input in keyboard.c. | |
| 2165 It is used to communicate to a lisp process-filter/sentinel (via the | |
| 2166 function Fwaiting_for_user_input_p below) whether emacs was waiting | |
| 2167 for user-input when that process-filter was called. | |
| 2168 waiting_for_input cannot be used as that is by definition 0 when | |
|
8570
dd3dfde8f973
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
8390
diff
changeset
|
2169 lisp code is being evalled. |
|
dd3dfde8f973
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
8390
diff
changeset
|
2170 This is also used in record_asynch_buffer_change. |
|
dd3dfde8f973
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
8390
diff
changeset
|
2171 For that purpose, this must be 0 |
|
dd3dfde8f973
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
8390
diff
changeset
|
2172 when not inside wait_reading_process_input. */ |
| 578 | 2173 static int waiting_for_user_input_p; |
| 2174 | |
|
14890
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
2175 /* This is here so breakpoints can be put on it. */ |
|
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
2176 static |
|
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
2177 wait_reading_process_input_1 () |
|
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
2178 { |
|
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
2179 } |
|
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
2180 |
| 578 | 2181 /* Read and dispose of subprocess output while waiting for timeout to |
| 2182 elapse and/or keyboard input to be available. | |
| 2183 | |
|
3953
d0c23febc08c
(wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents:
3915
diff
changeset
|
2184 TIME_LIMIT is: |
| 578 | 2185 timeout in seconds, or |
| 2186 zero for no limit, or | |
| 2187 -1 means gobble data immediately available but don't wait for any. | |
| 2188 | |
|
3953
d0c23febc08c
(wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents:
3915
diff
changeset
|
2189 MICROSECS is: |
|
d0c23febc08c
(wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents:
3915
diff
changeset
|
2190 an additional duration to wait, measured in microseconds. |
|
d0c23febc08c
(wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents:
3915
diff
changeset
|
2191 If this is nonzero and time_limit is 0, then the timeout |
|
d0c23febc08c
(wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents:
3915
diff
changeset
|
2192 consists of MICROSECS only. |
|
d0c23febc08c
(wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents:
3915
diff
changeset
|
2193 |
|
d0c23febc08c
(wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents:
3915
diff
changeset
|
2194 READ_KBD is a lisp value: |
| 578 | 2195 0 to ignore keyboard input, or |
| 2196 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
|
2197 -1 meaning caller will actually read the input, so don't throw to |
| 578 | 2198 the quit handler, or |
| 6569 | 2199 a cons cell, meaning wait until its car is non-nil |
|
3953
d0c23febc08c
(wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents:
3915
diff
changeset
|
2200 (and gobble terminal input into the buffer if any arrives), or |
| 650 | 2201 a process object, meaning wait until something arrives from that |
| 2202 process. The return value is true iff we read some input from | |
| 2203 that process. | |
| 578 | 2204 |
|
3953
d0c23febc08c
(wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents:
3915
diff
changeset
|
2205 DO_DISPLAY != 0 means redisplay should be done to show subprocess |
| 578 | 2206 output that arrives. |
| 2207 | |
|
3953
d0c23febc08c
(wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents:
3915
diff
changeset
|
2208 If READ_KBD is a pointer to a struct Lisp_Process, then the |
| 578 | 2209 function returns true iff we received input from that process |
| 2210 before the timeout elapsed. | |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3510
diff
changeset
|
2211 Otherwise, return true iff we received input from any process. */ |
| 578 | 2212 |
| 2213 wait_reading_process_input (time_limit, microsecs, read_kbd, do_display) | |
| 650 | 2214 int time_limit, microsecs; |
| 2215 Lisp_Object read_kbd; | |
| 2216 int do_display; | |
| 578 | 2217 { |
| 2218 register int channel, nfds, m; | |
| 2219 static SELECT_TYPE Available; | |
| 2220 int xerrno; | |
| 2221 Lisp_Object proc; | |
| 2222 EMACS_TIME timeout, end_time, garbage; | |
| 2223 SELECT_TYPE Atemp; | |
|
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
2224 int wait_channel = -1; |
| 578 | 2225 struct Lisp_Process *wait_proc = 0; |
| 2226 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
|
2227 Lisp_Object *wait_for_cell = 0; |
| 578 | 2228 |
| 2229 FD_ZERO (&Available); | |
| 2230 | |
| 650 | 2231 /* If read_kbd is a process to watch, set wait_proc and wait_channel |
| 2232 accordingly. */ | |
|
9115
59bc2d010b5f
(decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents:
9034
diff
changeset
|
2233 if (PROCESSP (read_kbd)) |
| 578 | 2234 { |
| 650 | 2235 wait_proc = XPROCESS (read_kbd); |
|
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
2236 wait_channel = XINT (wait_proc->infd); |
|
9318
a14cc1712337
(make_process, list_processes_1, create_process, Faccept_process_output,
Karl Heuer <kwzh@gnu.org>
parents:
9277
diff
changeset
|
2237 XSETFASTINT (read_kbd, 0); |
| 578 | 2238 } |
| 2239 | |
|
2200
5e58643bb169
(wait_reading_process_input): New option to wait
Richard M. Stallman <rms@gnu.org>
parents:
2120
diff
changeset
|
2240 /* If waiting for non-nil in a cell, record where. */ |
|
9115
59bc2d010b5f
(decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents:
9034
diff
changeset
|
2241 if (CONSP (read_kbd)) |
|
2200
5e58643bb169
(wait_reading_process_input): New option to wait
Richard M. Stallman <rms@gnu.org>
parents:
2120
diff
changeset
|
2242 { |
|
5e58643bb169
(wait_reading_process_input): New option to wait
Richard M. Stallman <rms@gnu.org>
parents:
2120
diff
changeset
|
2243 wait_for_cell = &XCONS (read_kbd)->car; |
|
9318
a14cc1712337
(make_process, list_processes_1, create_process, Faccept_process_output,
Karl Heuer <kwzh@gnu.org>
parents:
9277
diff
changeset
|
2244 XSETFASTINT (read_kbd, 0); |
|
2200
5e58643bb169
(wait_reading_process_input): New option to wait
Richard M. Stallman <rms@gnu.org>
parents:
2120
diff
changeset
|
2245 } |
|
5e58643bb169
(wait_reading_process_input): New option to wait
Richard M. Stallman <rms@gnu.org>
parents:
2120
diff
changeset
|
2246 |
| 650 | 2247 waiting_for_user_input_p = XINT (read_kbd); |
| 578 | 2248 |
| 2249 /* Since we may need to wait several times, | |
| 2250 compute the absolute time to return at. */ | |
| 2251 if (time_limit || microsecs) | |
| 2252 { | |
| 2253 EMACS_GET_TIME (end_time); | |
| 2254 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs); | |
| 2255 EMACS_ADD_TIME (end_time, end_time, timeout); | |
| 2256 } | |
|
15661
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
2257 #ifdef hpux |
|
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
2258 /* AlainF 5-Jul-1996 |
|
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
2259 HP-UX 10.10 seem to have problems with signals coming in |
|
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
2260 Causes "poll: interrupted system call" messages when Emacs is run |
|
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
2261 in an X window |
|
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
2262 Turn off periodic alarms (in case they are in use) */ |
|
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
2263 stop_polling (); |
|
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
2264 #endif |
| 578 | 2265 |
| 2266 while (1) | |
| 2267 { | |
|
14458
2bb4652305c1
(wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents:
14405
diff
changeset
|
2268 int timeout_reduced_for_timers = 0; |
|
2bb4652305c1
(wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents:
14405
diff
changeset
|
2269 |
| 578 | 2270 /* If calling from keyboard input, do not quit |
| 2271 since we want to return C-g as an input character. | |
| 2272 Otherwise, do pending quit if requested. */ | |
| 650 | 2273 if (XINT (read_kbd) >= 0) |
| 578 | 2274 QUIT; |
| 2275 | |
| 4639 | 2276 /* Exit now if the cell we're waiting for became non-nil. */ |
| 2277 if (wait_for_cell && ! NILP (*wait_for_cell)) | |
| 2278 break; | |
| 2279 | |
| 578 | 2280 /* Compute time from now till when time limit is up */ |
| 2281 /* Exit if already run out */ | |
| 2282 if (time_limit == -1) | |
| 2283 { | |
| 2284 /* -1 specified for timeout means | |
| 2285 gobble output available now | |
| 2286 but don't wait at all. */ | |
| 2287 | |
| 2288 EMACS_SET_SECS_USECS (timeout, 0, 0); | |
| 2289 } | |
| 2290 else if (time_limit || microsecs) | |
| 2291 { | |
| 2292 EMACS_GET_TIME (timeout); | |
| 2293 EMACS_SUB_TIME (timeout, end_time, timeout); | |
| 2294 if (EMACS_TIME_NEG_P (timeout)) | |
| 2295 break; | |
| 2296 } | |
| 2297 else | |
| 2298 { | |
| 2299 EMACS_SET_SECS_USECS (timeout, 100000, 0); | |
| 2300 } | |
| 2301 | |
|
15064
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
2302 /* Normally we run timers here. |
|
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
2303 But not if wait_for_cell; in those cases, |
|
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
2304 the wait is supposed to be short, |
|
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
2305 and those callers cannot handle running arbitrary Lisp code here. */ |
|
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
2306 if (! wait_for_cell) |
|
14404
cba05f90ee57
(wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents:
14278
diff
changeset
|
2307 { |
|
14458
2bb4652305c1
(wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents:
14405
diff
changeset
|
2308 EMACS_TIME timer_delay; |
|
14890
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
2309 int old_timers_run; |
|
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
2310 |
|
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
2311 retry: |
|
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
2312 old_timers_run = timers_run; |
|
14458
2bb4652305c1
(wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents:
14405
diff
changeset
|
2313 timer_delay = timer_check (1); |
|
14785
e4a9806c1e83
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14758
diff
changeset
|
2314 if (timers_run != old_timers_run && do_display) |
|
14890
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
2315 { |
|
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
2316 redisplay_preserve_echo_area (); |
|
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
2317 /* We must retry, since a timer may have requeued itself |
|
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
2318 and that could alter the time_delay. */ |
|
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
2319 goto retry; |
|
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
2320 } |
|
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
2321 |
|
18230
2f1f942f25ca
(wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents:
18183
diff
changeset
|
2322 /* If there is unread keyboard input, also return. */ |
|
2f1f942f25ca
(wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents:
18183
diff
changeset
|
2323 if (XINT (read_kbd) != 0 |
|
2f1f942f25ca
(wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents:
18183
diff
changeset
|
2324 && requeued_events_pending_p ()) |
|
2f1f942f25ca
(wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents:
18183
diff
changeset
|
2325 break; |
|
2f1f942f25ca
(wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents:
18183
diff
changeset
|
2326 |
|
14458
2bb4652305c1
(wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents:
14405
diff
changeset
|
2327 if (! EMACS_TIME_NEG_P (timer_delay) && time_limit != -1) |
|
14404
cba05f90ee57
(wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents:
14278
diff
changeset
|
2328 { |
|
cba05f90ee57
(wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents:
14278
diff
changeset
|
2329 EMACS_TIME difference; |
|
cba05f90ee57
(wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents:
14278
diff
changeset
|
2330 EMACS_SUB_TIME (difference, timer_delay, timeout); |
|
cba05f90ee57
(wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents:
14278
diff
changeset
|
2331 if (EMACS_TIME_NEG_P (difference)) |
|
14458
2bb4652305c1
(wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents:
14405
diff
changeset
|
2332 { |
|
2bb4652305c1
(wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents:
14405
diff
changeset
|
2333 timeout = timer_delay; |
|
2bb4652305c1
(wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents:
14405
diff
changeset
|
2334 timeout_reduced_for_timers = 1; |
|
2bb4652305c1
(wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents:
14405
diff
changeset
|
2335 } |
|
14404
cba05f90ee57
(wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents:
14278
diff
changeset
|
2336 } |
|
14935
3e0dc64a5cb8
(wait_reading_process_input): Don't call
Richard M. Stallman <rms@gnu.org>
parents:
14890
diff
changeset
|
2337 /* If time_limit is -1, we are not going to wait at all. */ |
|
3e0dc64a5cb8
(wait_reading_process_input): Don't call
Richard M. Stallman <rms@gnu.org>
parents:
14890
diff
changeset
|
2338 else if (time_limit != -1) |
|
14890
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
2339 { |
|
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
2340 /* This is so a breakpoint can be put here. */ |
|
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
2341 wait_reading_process_input_1 (); |
|
71c2cf461805
(wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents:
14863
diff
changeset
|
2342 } |
|
14404
cba05f90ee57
(wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents:
14278
diff
changeset
|
2343 } |
|
cba05f90ee57
(wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents:
14278
diff
changeset
|
2344 |
|
2894
646c5beae647
* process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents:
2893
diff
changeset
|
2345 /* 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
|
2346 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
|
2347 |
|
646c5beae647
* process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents:
2893
diff
changeset
|
2348 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
|
2349 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
|
2350 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
|
2351 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
|
2352 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
|
2353 |
|
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
2354 /* 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
|
2355 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
|
2356 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
|
2357 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
|
2358 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
|
2359 { |
|
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
2360 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
|
2361 EMACS_SET_SECS_USECS (timeout, 0, 0); |
|
18492
668304de6f92
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
18378
diff
changeset
|
2362 if ((select (max (max_process_desc, max_keyboard_desc) + 1, |
|
668304de6f92
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
18378
diff
changeset
|
2363 &Atemp, (SELECT_TYPE *)0, (SELECT_TYPE *)0, |
|
11926
40d7e6f04ebe
(create_process, send_process): Add volatile qualifiers.
Karl Heuer <kwzh@gnu.org>
parents:
11845
diff
changeset
|
2364 &timeout) |
|
40d7e6f04ebe
(create_process, send_process): Add volatile qualifiers.
Karl Heuer <kwzh@gnu.org>
parents:
11845
diff
changeset
|
2365 <= 0)) |
|
2894
646c5beae647
* process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents:
2893
diff
changeset
|
2366 { |
|
646c5beae647
* process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents:
2893
diff
changeset
|
2367 /* It's okay for us to do this and then continue with |
| 5534 | 2368 the loop, since timeout has already been zeroed out. */ |
|
2894
646c5beae647
* process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents:
2893
diff
changeset
|
2369 clear_waiting_for_input (); |
|
646c5beae647
* process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents:
2893
diff
changeset
|
2370 status_notify (); |
|
646c5beae647
* process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents:
2893
diff
changeset
|
2371 } |
|
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 /* 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
|
2375 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
|
2376 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
|
2377 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
|
2378 && ! 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
|
2379 { |
|
18946
84b78d90cd45
(wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents:
18739
diff
changeset
|
2380 int nread, total_nread = 0; |
|
18267
29c37882ee1f
(wait_reading_process_input): When exiting because
Richard M. Stallman <rms@gnu.org>
parents:
18230
diff
changeset
|
2381 |
|
2893
4df57953d5d0
* process.c (wait_reading_process_input): Don't forget to call
Jim Blandy <jimb@redhat.com>
parents:
2887
diff
changeset
|
2382 clear_waiting_for_input (); |
|
18267
29c37882ee1f
(wait_reading_process_input): When exiting because
Richard M. Stallman <rms@gnu.org>
parents:
18230
diff
changeset
|
2383 XSETPROCESS (proc, wait_proc); |
|
29c37882ee1f
(wait_reading_process_input): When exiting because
Richard M. Stallman <rms@gnu.org>
parents:
18230
diff
changeset
|
2384 |
|
29c37882ee1f
(wait_reading_process_input): When exiting because
Richard M. Stallman <rms@gnu.org>
parents:
18230
diff
changeset
|
2385 /* Read data from the process, until we exhaust it. */ |
|
18276
3835d79f8978
(wait_reading_process_input): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
18267
diff
changeset
|
2386 while (XINT (wait_proc->infd) >= 0 |
|
18292
3a85989b7e2c
Further fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
18276
diff
changeset
|
2387 && (nread |
|
3a85989b7e2c
Further fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
18276
diff
changeset
|
2388 = read_process_output (proc, XINT (wait_proc->infd)))) |
|
18946
84b78d90cd45
(wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents:
18739
diff
changeset
|
2389 { |
|
84b78d90cd45
(wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents:
18739
diff
changeset
|
2390 if (0 < nread) |
|
84b78d90cd45
(wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents:
18739
diff
changeset
|
2391 total_nread += nread; |
|
84b78d90cd45
(wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents:
18739
diff
changeset
|
2392 #ifdef EIO |
|
84b78d90cd45
(wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents:
18739
diff
changeset
|
2393 else if (nread == -1 && EIO == errno) |
|
84b78d90cd45
(wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents:
18739
diff
changeset
|
2394 break; |
|
84b78d90cd45
(wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents:
18739
diff
changeset
|
2395 #endif |
|
84b78d90cd45
(wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents:
18739
diff
changeset
|
2396 } |
|
18267
29c37882ee1f
(wait_reading_process_input): When exiting because
Richard M. Stallman <rms@gnu.org>
parents:
18230
diff
changeset
|
2397 if (total_nread > 0 && do_display) |
|
29c37882ee1f
(wait_reading_process_input): When exiting because
Richard M. Stallman <rms@gnu.org>
parents:
18230
diff
changeset
|
2398 redisplay_preserve_echo_area (); |
|
29c37882ee1f
(wait_reading_process_input): When exiting because
Richard M. Stallman <rms@gnu.org>
parents:
18230
diff
changeset
|
2399 |
|
2893
4df57953d5d0
* process.c (wait_reading_process_input): Don't forget to call
Jim Blandy <jimb@redhat.com>
parents:
2887
diff
changeset
|
2400 break; |
|
4df57953d5d0
* process.c (wait_reading_process_input): Don't forget to call
Jim Blandy <jimb@redhat.com>
parents:
2887
diff
changeset
|
2401 } |
|
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
2402 |
| 578 | 2403 /* Wait till there is something to do */ |
| 2404 | |
|
17224
dd2545e79add
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
17110
diff
changeset
|
2405 if (wait_for_cell) |
|
dd2545e79add
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
17110
diff
changeset
|
2406 Available = non_process_wait_mask; |
|
dd2545e79add
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
17110
diff
changeset
|
2407 else if (! XINT (read_kbd)) |
|
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
2408 Available = non_keyboard_wait_mask; |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
2409 else |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
2410 Available = input_wait_mask; |
| 578 | 2411 |
| 765 | 2412 /* If frame size has changed or the window is newly mapped, |
| 648 | 2413 redisplay now, before we start to wait. There is a race |
| 2414 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
|
2415 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
|
2416 displaying a trashed screen. */ |
|
6429
1dbe24a029fd
(wait_reading_process_input, both versions): Don't call
Richard M. Stallman <rms@gnu.org>
parents:
6393
diff
changeset
|
2417 if (frame_garbaged && do_display) |
|
11728
affed1766d34
(wait_reading_process_input): Don't call prepare_menu_bars.
Richard M. Stallman <rms@gnu.org>
parents:
11695
diff
changeset
|
2418 { |
|
affed1766d34
(wait_reading_process_input): Don't call prepare_menu_bars.
Richard M. Stallman <rms@gnu.org>
parents:
11695
diff
changeset
|
2419 clear_waiting_for_input (); |
|
affed1766d34
(wait_reading_process_input): Don't call prepare_menu_bars.
Richard M. Stallman <rms@gnu.org>
parents:
11695
diff
changeset
|
2420 redisplay_preserve_echo_area (); |
|
affed1766d34
(wait_reading_process_input): Don't call prepare_menu_bars.
Richard M. Stallman <rms@gnu.org>
parents:
11695
diff
changeset
|
2421 if (XINT (read_kbd) < 0) |
|
11744
52a2c8e81bb7
(wait_reading_process_input): Pass arg in new call to set_waiting_for_input.
Richard M. Stallman <rms@gnu.org>
parents:
11728
diff
changeset
|
2422 set_waiting_for_input (&timeout); |
|
11728
affed1766d34
(wait_reading_process_input): Don't call prepare_menu_bars.
Richard M. Stallman <rms@gnu.org>
parents:
11695
diff
changeset
|
2423 } |
| 648 | 2424 |
|
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
2425 if (XINT (read_kbd) && detect_input_pending ()) |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
2426 { |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
2427 nfds = 0; |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
2428 FD_ZERO (&Available); |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
2429 } |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
2430 else |
|
18492
668304de6f92
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
18378
diff
changeset
|
2431 nfds = select (max (max_process_desc, max_keyboard_desc) + 1, |
|
668304de6f92
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
18378
diff
changeset
|
2432 &Available, (SELECT_TYPE *)0, (SELECT_TYPE *)0, |
|
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
2433 &timeout); |
| 588 | 2434 |
| 578 | 2435 xerrno = errno; |
| 2436 | |
| 2437 /* Make C-g and alarm signals set flags again */ | |
| 2438 clear_waiting_for_input (); | |
| 2439 | |
| 2440 /* If we woke up due to SIGWINCH, actually change size now. */ | |
| 2441 do_pending_window_change (); | |
| 2442 | |
|
14458
2bb4652305c1
(wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents:
14405
diff
changeset
|
2443 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers) |
|
2bb4652305c1
(wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents:
14405
diff
changeset
|
2444 /* We wanted the full specified time, so return now. */ |
| 578 | 2445 break; |
| 2446 if (nfds < 0) | |
| 2447 { | |
| 2448 if (xerrno == EINTR) | |
| 2449 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
|
2450 #ifdef ultrix |
|
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
2451 /* 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
|
2452 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
|
2453 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
|
2454 "__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
|
2455 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
|
2456 else if (xerrno == ENOMEM) |
|
25b5b55a3916
* process.c (wait_reading_process_input): If the select returns
Jim Blandy <jimb@redhat.com>
parents:
1207
diff
changeset
|
2457 FD_ZERO (&Available); |
|
25b5b55a3916
* process.c (wait_reading_process_input): If the select returns
Jim Blandy <jimb@redhat.com>
parents:
1207
diff
changeset
|
2458 #endif |
| 578 | 2459 #ifdef ALLIANT |
| 2460 /* This happens for no known reason on ALLIANT. | |
| 2461 I am guessing that this is the right response. -- RMS. */ | |
| 2462 else if (xerrno == EFAULT) | |
| 2463 FD_ZERO (&Available); | |
| 2464 #endif | |
| 2465 else if (xerrno == EBADF) | |
| 2466 { | |
| 2467 #ifdef AIX | |
| 2468 /* AIX doesn't handle PTY closure the same way BSD does. On AIX, | |
| 2469 the child's closure of the pts gives the parent a SIGHUP, and | |
| 2470 the ptc file descriptor is automatically closed, | |
| 2471 yielding EBADF here or at select() call above. | |
| 2472 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF | |
| 5534 | 2473 in m/ibmrt-aix.h), and here we just ignore the select error. |
| 578 | 2474 Cleanup occurs c/o status_notify after SIGCLD. */ |
| 648 | 2475 FD_ZERO (&Available); /* Cannot depend on values returned */ |
| 578 | 2476 #else |
| 2477 abort (); | |
| 2478 #endif | |
| 2479 } | |
| 2480 else | |
| 14613 | 2481 error ("select error: %s", strerror (xerrno)); |
| 578 | 2482 } |
|
2815
60f122cfe785
* process.c (wait_reading_process_input): If we're running
Jim Blandy <jimb@redhat.com>
parents:
2610
diff
changeset
|
2483 #if defined(sun) && !defined(USG5_4) |
|
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
2484 else if (nfds > 0 && keyboard_bit_set (&Available) |
|
4682
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
2485 && interrupt_input) |
| 2830 | 2486 /* System sometimes fails to deliver SIGIO. |
| 2487 | |
| 2488 David J. Mackenzie says that Emacs doesn't compile under | |
| 2489 Solaris if this code is enabled, thus the USG5_4 in the CPP | |
| 2490 conditional. "I haven't noticed any ill effects so far. | |
| 2491 If you find a Solaris expert somewhere, they might know | |
| 2492 better." */ | |
| 578 | 2493 kill (getpid (), SIGIO); |
| 2494 #endif | |
| 2495 | |
|
18378
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
2496 #if 0 /* When polling is used, interrupt_input is 0, |
|
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
2497 so get_input_pending should read the input. |
|
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
2498 So this should not be needed. */ |
|
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
2499 /* If we are using polling for input, |
|
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
2500 and we see input available, make it get read now. |
|
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
2501 Otherwise it might not actually get read for a second. |
|
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
2502 And on hpux, since we turn off polling in wait_reading_process_input, |
|
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
2503 it might never get read at all if we don't spend much time |
|
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
2504 outside of wait_reading_process_input. */ |
|
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
2505 if (XINT (read_kbd) && interrupt_input |
|
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
2506 && keyboard_bit_set (&Available) |
|
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
2507 && input_polling_used ()) |
|
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
2508 kill (getpid (), SIGALRM); |
|
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
2509 #endif |
|
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
2510 |
| 578 | 2511 /* Check for keyboard input */ |
| 2512 /* If there is any, return immediately | |
| 2513 to give it higher priority than subprocesses */ | |
| 2514 | |
|
19053
7b5642657857
(read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
18974
diff
changeset
|
2515 if (XINT (read_kbd) != 0 |
|
14758
849458c13c0c
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14736
diff
changeset
|
2516 && detect_input_pending_run_timers (do_display)) |
| 14613 | 2517 { |
| 2518 swallow_events (do_display); | |
|
14758
849458c13c0c
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14736
diff
changeset
|
2519 if (detect_input_pending_run_timers (do_display)) |
| 14613 | 2520 break; |
| 2521 } | |
| 2522 | |
|
18230
2f1f942f25ca
(wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents:
18183
diff
changeset
|
2523 /* If there is unread keyboard input, also return. */ |
|
2f1f942f25ca
(wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents:
18183
diff
changeset
|
2524 if (XINT (read_kbd) != 0 |
|
2f1f942f25ca
(wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents:
18183
diff
changeset
|
2525 && requeued_events_pending_p ()) |
|
2f1f942f25ca
(wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents:
18183
diff
changeset
|
2526 break; |
|
2f1f942f25ca
(wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents:
18183
diff
changeset
|
2527 |
|
19053
7b5642657857
(read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
18974
diff
changeset
|
2528 /* If we are not checking for keyboard input now, |
|
7b5642657857
(read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
18974
diff
changeset
|
2529 do process events (but don't run any timers). |
|
7b5642657857
(read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
18974
diff
changeset
|
2530 This is so that X events will be processed. |
|
18492
668304de6f92
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
18378
diff
changeset
|
2531 Otherwise they may have to wait until polling takes place. |
|
19053
7b5642657857
(read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
18974
diff
changeset
|
2532 That would causes delays in pasting selections, for example. |
|
7b5642657857
(read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
18974
diff
changeset
|
2533 |
|
7b5642657857
(read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
18974
diff
changeset
|
2534 (We used to do this only if wait_for_cell.) */ |
|
7b5642657857
(read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
18974
diff
changeset
|
2535 if (XINT (read_kbd) == 0 && detect_input_pending ()) |
|
15064
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
2536 { |
|
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
2537 swallow_events (do_display); |
|
18492
668304de6f92
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
18378
diff
changeset
|
2538 #if 0 /* Exiting when read_kbd doesn't request that seems wrong, though. */ |
|
15064
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
2539 if (detect_input_pending ()) |
|
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
2540 break; |
|
18492
668304de6f92
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
18378
diff
changeset
|
2541 #endif |
|
15064
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
2542 } |
|
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
2543 |
|
2200
5e58643bb169
(wait_reading_process_input): New option to wait
Richard M. Stallman <rms@gnu.org>
parents:
2120
diff
changeset
|
2544 /* 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
|
2545 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
|
2546 break; |
|
5e58643bb169
(wait_reading_process_input): New option to wait
Richard M. Stallman <rms@gnu.org>
parents:
2120
diff
changeset
|
2547 |
| 621 | 2548 #ifdef SIGIO |
|
18378
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
2549 /* If we think we have keyboard input waiting, but didn't get SIGIO, |
| 578 | 2550 go read it. This can happen with X on BSD after logging out. |
| 2551 In that case, there really is no input and no SIGIO, | |
| 2552 but select says there is input. */ | |
| 2553 | |
|
4682
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
2554 if (XINT (read_kbd) && interrupt_input |
|
18378
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
2555 && keyboard_bit_set (&Available)) |
|
14736
b17ec81a6294
(wait_reading_process_input): Use getpid when generating SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
14671
diff
changeset
|
2556 kill (getpid (), SIGIO); |
| 621 | 2557 #endif |
| 578 | 2558 |
| 2559 if (! wait_proc) | |
| 2560 got_some_input |= nfds > 0; | |
| 2561 | |
| 624 | 2562 /* If checking input just got us a size-change event from X, |
| 2563 obey it now if we should. */ | |
|
4057
2fe1488b503c
(wait_reading_process_input): If wait_for_cell, do call
Richard M. Stallman <rms@gnu.org>
parents:
3953
diff
changeset
|
2564 if (XINT (read_kbd) || wait_for_cell) |
| 624 | 2565 do_pending_window_change (); |
| 2566 | |
|
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
2567 /* Check for data from a process. */ |
|
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
2568 /* Really FIRST_PROC_DESC should be 0 on Unix, |
|
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
2569 but this is safer in the short run. */ |
|
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
2570 for (channel = 0; channel <= max_process_desc; channel++) |
| 578 | 2571 { |
|
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
2572 if (FD_ISSET (channel, &Available) |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
2573 && FD_ISSET (channel, &non_keyboard_wait_mask)) |
| 578 | 2574 { |
| 2575 int nread; | |
| 2576 | |
| 2577 /* If waiting for this channel, arrange to return as | |
| 2578 soon as no more input to be processed. No more | |
| 2579 waiting. */ | |
| 2580 if (wait_channel == channel) | |
| 2581 { | |
|
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
2582 wait_channel = -1; |
| 578 | 2583 time_limit = -1; |
| 2584 got_some_input = 1; | |
| 2585 } | |
| 2586 proc = chan_process[channel]; | |
| 2587 if (NILP (proc)) | |
| 2588 continue; | |
| 2589 | |
| 2590 /* Read data from the process, starting with our | |
| 2591 buffered-ahead character if we have one. */ | |
| 2592 | |
| 2593 nread = read_process_output (proc, channel); | |
| 2594 if (nread > 0) | |
| 2595 { | |
| 2596 /* Since read_process_output can run a filter, | |
| 2597 which can call accept-process-output, | |
| 2598 don't try to read from any other processes | |
| 2599 before doing the select again. */ | |
| 2600 FD_ZERO (&Available); | |
| 2601 | |
| 2602 if (do_display) | |
| 2603 redisplay_preserve_echo_area (); | |
| 2604 } | |
| 2605 #ifdef EWOULDBLOCK | |
| 2606 else if (nread == -1 && errno == EWOULDBLOCK) | |
| 2607 ; | |
|
15405
c27bb6e69e2d
(wait_reading_process_input): Move the O_NONBLOCK and
Richard M. Stallman <rms@gnu.org>
parents:
15368
diff
changeset
|
2608 #endif |
| 15406 | 2609 /* ISC 4.1 defines both EWOULDBLOCK and O_NONBLOCK, |
| 2610 and Emacs uses O_NONBLOCK, so what we get is EAGAIN. */ | |
| 578 | 2611 #ifdef O_NONBLOCK |
| 2612 else if (nread == -1 && errno == EAGAIN) | |
| 2613 ; | |
| 2614 #else | |
| 2615 #ifdef O_NDELAY | |
| 2616 else if (nread == -1 && errno == EAGAIN) | |
| 2617 ; | |
| 2618 /* Note that we cannot distinguish between no input | |
| 2619 available now and a closed pipe. | |
| 2620 With luck, a closed pipe will be accompanied by | |
| 2621 subprocess termination and SIGCHLD. */ | |
| 2622 else if (nread == 0 && !NETCONN_P (proc)) | |
| 2623 ; | |
| 648 | 2624 #endif /* O_NDELAY */ |
| 2625 #endif /* O_NONBLOCK */ | |
| 578 | 2626 #ifdef HAVE_PTYS |
| 2627 /* On some OSs with ptys, when the process on one end of | |
| 2628 a pty exits, the other end gets an error reading with | |
| 2629 errno = EIO instead of getting an EOF (0 bytes read). | |
| 2630 Therefore, if we get an error reading and errno = | |
| 2631 EIO, just continue, because the child process has | |
| 2632 exited and should clean itself up soon (e.g. when we | |
| 2633 get a SIGCHLD). */ | |
| 2634 else if (nread == -1 && errno == EIO) | |
| 2635 ; | |
| 648 | 2636 #endif /* HAVE_PTYS */ |
| 2637 /* If we can detect process termination, don't consider the process | |
| 2638 gone just because its pipe is closed. */ | |
| 578 | 2639 #ifdef SIGCHLD |
| 2640 else if (nread == 0 && !NETCONN_P (proc)) | |
| 2641 ; | |
| 2642 #endif | |
| 2643 else | |
| 2644 { | |
| 2645 /* Preserve status of processes already terminated. */ | |
| 2646 XSETINT (XPROCESS (proc)->tick, ++process_tick); | |
| 2647 deactivate_process (proc); | |
| 2648 if (!NILP (XPROCESS (proc)->raw_status_low)) | |
| 2649 update_status (XPROCESS (proc)); | |
| 2650 if (EQ (XPROCESS (proc)->status, Qrun)) | |
| 2651 XPROCESS (proc)->status | |
| 2652 = Fcons (Qexit, Fcons (make_number (256), Qnil)); | |
| 2653 } | |
| 2654 } | |
| 648 | 2655 } /* end for each file descriptor */ |
| 2656 } /* end while exit conditions not met */ | |
| 2657 | |
|
8570
dd3dfde8f973
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
8390
diff
changeset
|
2658 waiting_for_user_input_p = 0; |
|
dd3dfde8f973
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
8390
diff
changeset
|
2659 |
| 648 | 2660 /* If calling from keyboard input, do not quit |
| 2661 since we want to return C-g as an input character. | |
| 2662 Otherwise, do pending quit if requested. */ | |
| 650 | 2663 if (XINT (read_kbd) >= 0) |
| 648 | 2664 { |
| 2665 /* Prevent input_pending from remaining set if we quit. */ | |
| 2666 clear_input_pending (); | |
| 2667 QUIT; | |
| 2668 } | |
|
15661
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
2669 #ifdef hpux |
|
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
2670 /* AlainF 5-Jul-1996 |
|
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
2671 HP-UX 10.10 seems to have problems with signals coming in |
|
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
2672 Causes "poll: interrupted system call" messages when Emacs is run |
|
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
2673 in an X window |
|
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
2674 Turn periodic alarms back on */ |
|
18378
22cd8d7dd5aa
(wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents:
18329
diff
changeset
|
2675 start_polling (); |
|
15661
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
2676 #endif |
|
96debed5fb36
(wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents:
15406
diff
changeset
|
2677 |
| 578 | 2678 return got_some_input; |
| 2679 } | |
| 2680 | |
|
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
2681 /* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */ |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
2682 |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
2683 static Lisp_Object |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
2684 read_process_output_call (fun_and_args) |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
2685 Lisp_Object fun_and_args; |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
2686 { |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
2687 return apply1 (XCONS (fun_and_args)->car, XCONS (fun_and_args)->cdr); |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
2688 } |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
2689 |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
2690 static Lisp_Object |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
2691 read_process_output_error_handler (error) |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
2692 Lisp_Object error; |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
2693 { |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
2694 cmd_error_internal (error, "error in process filter: "); |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
2695 Vinhibit_quit = Qt; |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
2696 update_echo_area (); |
|
11277
d4547e4b0aab
(read_process_output_error_handler)
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
2697 Fsleep_for (make_number (2), Qnil); |
|
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
2698 } |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
2699 |
| 578 | 2700 /* Read pending output from the process channel, |
| 2701 starting with our buffered-ahead character if we have one. | |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2702 Yield number of decoded characters read. |
| 578 | 2703 |
| 2704 This function reads at most 1024 characters. | |
| 2705 If you want to read all available subprocess output, | |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2706 you must call it repeatedly until it returns zero. |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2707 |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2708 The characters read are decoded according to PROC's coding-system |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2709 for decoding. */ |
| 578 | 2710 |
| 2711 read_process_output (proc, channel) | |
| 2712 Lisp_Object proc; | |
| 2713 register int channel; | |
| 2714 { | |
|
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
2715 register int nchars, nbytes; |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2716 char *chars; |
| 578 | 2717 #ifdef VMS |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2718 int chars_allocated = 0; /* If 1, `chars' should be freed later. */ |
| 578 | 2719 #else |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2720 char buf[1024]; |
| 578 | 2721 #endif |
| 2722 register Lisp_Object outstream; | |
| 2723 register struct buffer *old = current_buffer; | |
| 2724 register struct Lisp_Process *p = XPROCESS (proc); | |
| 2725 register int opoint; | |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
2726 struct coding_system *coding = proc_decode_coding_system[channel]; |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2727 int chars_in_decoding_buf = 0; /* If 1, `chars' points |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2728 XSTRING (p->decoding_buf)->data. */ |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2729 int carryover = XINT (p->decoding_carryover); |
| 578 | 2730 |
| 2731 #ifdef VMS | |
| 2732 VMS_PROC_STUFF *vs, *get_vms_process_pointer(); | |
| 2733 | |
| 2734 vs = get_vms_process_pointer (p->pid); | |
| 2735 if (vs) | |
| 2736 { | |
| 2737 if (!vs->iosb[0]) | |
| 2738 return(0); /* Really weird if it does this */ | |
| 2739 if (!(vs->iosb[0] & 1)) | |
| 2740 return -1; /* I/O error */ | |
| 2741 } | |
| 2742 else | |
| 2743 error ("Could not get VMS process pointer"); | |
| 2744 chars = vs->inputBuffer; | |
|
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
2745 nbytes = clean_vms_buffer (chars, vs->iosb[1]); |
|
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
2746 if (nbytes <= 0) |
| 578 | 2747 { |
| 2748 start_vms_process_read (vs); /* Crank up the next read on the process */ | |
| 2749 return 1; /* Nothing worth printing, say we got 1 */ | |
| 2750 } | |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2751 if (carryover > 0) |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2752 { |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2753 /* The data carried over in the previous decoding (which are at |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2754 the tail of decoding buffer) should be prepended to the new |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2755 data read to decode all together. */ |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2756 char *buf = (char *) xmalloc (nbytes + carryover); |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2757 |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2758 bcopy (XSTRING (p->decoding_buf)->data |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2759 + XSTRING (p->decoding_buf)->size_byte - carryover, |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2760 buf, carryover); |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2761 bcopy (chars, buf + carryover, nbytes); |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2762 chars = buf; |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2763 chars_allocated = 1; |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2764 } |
| 578 | 2765 #else /* not VMS */ |
| 2766 | |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2767 if (carryover) |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2768 /* See the comment above. */ |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2769 bcopy (XSTRING (p->decoding_buf)->data |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2770 + XSTRING (p->decoding_buf)->size_byte - carryover, |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2771 buf, carryover); |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2772 |
| 578 | 2773 if (proc_buffered_char[channel] < 0) |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2774 nbytes = read (channel, buf + carryover, (sizeof buf) - carryover); |
| 578 | 2775 else |
| 2776 { | |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2777 buf[carryover] = proc_buffered_char[channel]; |
| 578 | 2778 proc_buffered_char[channel] = -1; |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2779 nbytes = read (channel, buf + carryover + 1, |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2780 (sizeof buf) - carryover - 1); |
|
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
2781 if (nbytes < 0) |
|
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
2782 nbytes = 1; |
| 578 | 2783 else |
|
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
2784 nbytes = nbytes + 1; |
| 578 | 2785 } |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2786 chars = buf; |
| 578 | 2787 #endif /* not VMS */ |
| 2788 | |
|
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
2789 /* At this point, NBYTES holds number of characters just received |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2790 (including the one in proc_buffered_char[channel]). */ |
|
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
2791 if (nbytes <= 0) return nbytes; |
|
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
2792 |
|
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
2793 /* Now set NBYTES how many bytes we must decode. */ |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2794 nbytes += carryover; |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2795 nchars = nbytes; |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2796 |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2797 if (CODING_MAY_REQUIRE_DECODING (coding)) |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2798 { |
|
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
2799 int require = decoding_buffer_size (coding, nbytes); |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2800 int result; |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2801 |
|
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
2802 if (XSTRING (p->decoding_buf)->size_byte < require) |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2803 p->decoding_buf = make_uninit_string (require); |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2804 result = decode_coding (coding, chars, XSTRING (p->decoding_buf)->data, |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2805 nbytes, XSTRING (p->decoding_buf)->size_byte); |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2806 carryover = nbytes - coding->consumed; |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2807 |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2808 /* A new coding system might be found by `decode_coding'. */ |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2809 if (!EQ (p->decode_coding_system, coding->symbol)) |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2810 { |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2811 p->decode_coding_system = coding->symbol; |
|
19053
7b5642657857
(read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
18974
diff
changeset
|
2812 |
|
7b5642657857
(read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
18974
diff
changeset
|
2813 /* Don't call setup_coding_system for |
|
7b5642657857
(read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
18974
diff
changeset
|
2814 proc_decode_coding_system[channel] here. It is done in |
|
7b5642657857
(read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
18974
diff
changeset
|
2815 detect_coding called via decode_coding above. */ |
|
7b5642657857
(read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents:
18974
diff
changeset
|
2816 |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2817 /* If a coding system for encoding is not yet decided, we set |
|
20433
a43789debf48
(read_process_output): Fix previous change, i.e, if
Kenichi Handa <handa@m17n.org>
parents:
20428
diff
changeset
|
2818 it as the same as coding-system for decoding. |
|
a43789debf48
(read_process_output): Fix previous change, i.e, if
Kenichi Handa <handa@m17n.org>
parents:
20428
diff
changeset
|
2819 |
|
a43789debf48
(read_process_output): Fix previous change, i.e, if
Kenichi Handa <handa@m17n.org>
parents:
20428
diff
changeset
|
2820 But, before doing that we must check if |
|
a43789debf48
(read_process_output): Fix previous change, i.e, if
Kenichi Handa <handa@m17n.org>
parents:
20428
diff
changeset
|
2821 proc_encode_coding_system[p->outfd] surely points to a |
|
a43789debf48
(read_process_output): Fix previous change, i.e, if
Kenichi Handa <handa@m17n.org>
parents:
20428
diff
changeset
|
2822 valid memory because p->outfd will be changed once EOF is |
|
a43789debf48
(read_process_output): Fix previous change, i.e, if
Kenichi Handa <handa@m17n.org>
parents:
20428
diff
changeset
|
2823 sent to the process. */ |
|
a43789debf48
(read_process_output): Fix previous change, i.e, if
Kenichi Handa <handa@m17n.org>
parents:
20428
diff
changeset
|
2824 if (NILP (p->encode_coding_system) |
|
a43789debf48
(read_process_output): Fix previous change, i.e, if
Kenichi Handa <handa@m17n.org>
parents:
20428
diff
changeset
|
2825 && proc_encode_coding_system[p->outfd]) |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2826 { |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2827 p->encode_coding_system = coding->symbol; |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2828 setup_coding_system (coding->symbol, |
|
19642
cb9a9d17bd69
(read_process_output): Index for
Kenichi Handa <handa@m17n.org>
parents:
19133
diff
changeset
|
2829 proc_encode_coding_system[p->outfd]); |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2830 } |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2831 } |
|
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
2832 |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2833 #ifdef VMS |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2834 /* Now we don't need the contents of `chars'. */ |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2835 if (chars_allocated) |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2836 free (chars); |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2837 #endif |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2838 if (coding->produced == 0) |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2839 return 0; |
|
18708
965c5ee65d86
(read_process_output): Add cast.
Richard M. Stallman <rms@gnu.org>
parents:
18648
diff
changeset
|
2840 chars = (char *) XSTRING (p->decoding_buf)->data; |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2841 nbytes = coding->produced; |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2842 nchars = coding->produced_char; |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2843 chars_in_decoding_buf = 1; |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2844 } |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2845 #ifdef VMS |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2846 else if (chars_allocated) |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2847 { |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2848 /* Although we don't have to decode the received data, we must |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2849 move it to an area which we don't have to free. */ |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2850 if (! STRINGP (p->decoding_buf) |
|
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
2851 || XSTRING (p->decoding_buf)->size < nbytes) |
|
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
2852 p->decoding_buf = make_uninit_string (nbytes); |
|
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
2853 bcopy (chars, XSTRING (p->decoding_buf)->data, nbytes); |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2854 free (chars); |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2855 chars = XSTRING (p->decoding_buf)->data; |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2856 chars_in_decoding_buf = 1; |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2857 carryover = 0; |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2858 } |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2859 #endif |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2860 |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
2861 XSETINT (p->decoding_carryover, carryover); |
|
20433
a43789debf48
(read_process_output): Fix previous change, i.e, if
Kenichi Handa <handa@m17n.org>
parents:
20428
diff
changeset
|
2862 Vlast_coding_system_used = coding->symbol; |
|
a43789debf48
(read_process_output): Fix previous change, i.e, if
Kenichi Handa <handa@m17n.org>
parents:
20428
diff
changeset
|
2863 |
|
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
2864 /* Read and dispose of the process output. */ |
| 578 | 2865 outstream = p->filter; |
| 2866 if (!NILP (outstream)) | |
| 2867 { | |
| 2868 /* We inhibit quit here instead of just catching it so that | |
| 2869 hitting ^G when a filter happens to be running won't screw | |
| 2870 it up. */ | |
| 2871 int count = specpdl_ptr - specpdl; | |
|
3510
b4a552ca4e99
(read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3238
diff
changeset
|
2872 Lisp_Object odeactivate; |
|
10914
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
2873 Lisp_Object obuffer, okeymap; |
|
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
2874 Lisp_Object text; |
|
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
2875 int outer_running_asynch_code = running_asynch_code; |
|
10914
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
2876 |
|
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
2877 /* No need to gcpro these, because all we do with them later |
|
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
2878 is test them for EQness, and none of them should be a string. */ |
|
3510
b4a552ca4e99
(read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3238
diff
changeset
|
2879 odeactivate = Vdeactivate_mark; |
|
10914
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
2880 XSETBUFFER (obuffer, current_buffer); |
|
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
2881 okeymap = current_buffer->keymap; |
|
3510
b4a552ca4e99
(read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3238
diff
changeset
|
2882 |
| 578 | 2883 specbind (Qinhibit_quit, Qt); |
|
8231
5226ed89c1a6
(Qlast_nonmenu_event): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8063
diff
changeset
|
2884 specbind (Qlast_nonmenu_event, Qt); |
|
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
2885 |
|
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
2886 /* In case we get recursively called, |
|
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
2887 and we already saved the match data nonrecursively, |
|
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
2888 save the same match data in safely recursive fashion. */ |
|
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
2889 if (outer_running_asynch_code) |
|
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
2890 { |
|
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
2891 Lisp_Object tem; |
|
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
2892 /* Don't clobber the CURRENT match data, either! */ |
|
16728
309a750fd5c0
(read_process_output, exec_sentinel):
Richard M. Stallman <rms@gnu.org>
parents:
16718
diff
changeset
|
2893 tem = Fmatch_data (Qnil, Qnil); |
|
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
2894 restore_match_data (); |
|
16728
309a750fd5c0
(read_process_output, exec_sentinel):
Richard M. Stallman <rms@gnu.org>
parents:
16718
diff
changeset
|
2895 record_unwind_protect (Fstore_match_data, Fmatch_data (Qnil, Qnil)); |
|
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
2896 Fstore_match_data (tem); |
|
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
2897 } |
|
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
2898 |
|
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
2899 /* For speed, if a search happens within this code, |
|
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
2900 save the match data in a special nonrecursive fashion. */ |
|
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potort? <pot@gnu.org>
parents:
9969
diff
changeset
|
2901 running_asynch_code = 1; |
|
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
2902 |
|
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
2903 text = make_multibyte_string (chars, nchars, nbytes); |
|
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
2904 internal_condition_case_1 (read_process_output_call, |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
2905 Fcons (outstream, |
|
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
2906 Fcons (proc, Fcons (text, Qnil))), |
|
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
2907 !NILP (Vdebug_on_error) ? Qnil : Qerror, |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
2908 read_process_output_error_handler); |
|
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
2909 |
|
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
2910 /* If we saved the match data nonrecursively, restore it now. */ |
|
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potort? <pot@gnu.org>
parents:
9969
diff
changeset
|
2911 restore_match_data (); |
|
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
2912 running_asynch_code = outer_running_asynch_code; |
| 578 | 2913 |
|
3666
c7ff787b096f
(read_process_output): Don't deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3608
diff
changeset
|
2914 /* Handling the process output should not deactivate the mark. */ |
|
3510
b4a552ca4e99
(read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3238
diff
changeset
|
2915 Vdeactivate_mark = odeactivate; |
|
b4a552ca4e99
(read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3238
diff
changeset
|
2916 |
|
12808
4db1f387e85f
(read_process_output, exec_sentinel): Call
Richard M. Stallman <rms@gnu.org>
parents:
12749
diff
changeset
|
2917 #if 0 /* Call record_asynch_buffer_change unconditionally, |
|
4db1f387e85f
(read_process_output, exec_sentinel): Call
Richard M. Stallman <rms@gnu.org>
parents:
12749
diff
changeset
|
2918 because we might have changed minor modes or other things |
|
4db1f387e85f
(read_process_output, exec_sentinel): Call
Richard M. Stallman <rms@gnu.org>
parents:
12749
diff
changeset
|
2919 that affect key bindings. */ |
|
10914
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
2920 if (! EQ (Fcurrent_buffer (), obuffer) |
|
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
2921 || ! EQ (current_buffer->keymap, okeymap)) |
|
12808
4db1f387e85f
(read_process_output, exec_sentinel): Call
Richard M. Stallman <rms@gnu.org>
parents:
12749
diff
changeset
|
2922 #endif |
|
13159
2af96ac471bc
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
12808
diff
changeset
|
2923 /* But do it only if the caller is actually going to read events. |
|
2af96ac471bc
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
12808
diff
changeset
|
2924 Otherwise there's no need to make him wake up, and it could |
|
2af96ac471bc
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
12808
diff
changeset
|
2925 cause trouble (for example it would make Fsit_for return). */ |
|
2af96ac471bc
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
12808
diff
changeset
|
2926 if (waiting_for_user_input_p == -1) |
|
2af96ac471bc
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
12808
diff
changeset
|
2927 record_asynch_buffer_change (); |
|
6748
b1cde622fa65
(read_process_output): If buffer changes, record that fact.
Karl Heuer <kwzh@gnu.org>
parents:
6569
diff
changeset
|
2928 |
| 578 | 2929 #ifdef VMS |
| 2930 start_vms_process_read (vs); | |
| 2931 #endif | |
|
5561
fd7524d61a8d
(read_process_output): Supply second arg to unbind_to.
Richard M. Stallman <rms@gnu.org>
parents:
5548
diff
changeset
|
2932 unbind_to (count, Qnil); |
| 578 | 2933 return nchars; |
| 2934 } | |
| 2935 | |
| 2936 /* If no filter, write into buffer if it isn't dead. */ | |
| 2937 if (!NILP (p->buffer) && !NILP (XBUFFER (p->buffer)->name)) | |
| 2938 { | |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
2939 Lisp_Object old_read_only; |
|
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
2940 int old_begv, old_zv; |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
2941 int old_begv_byte, old_zv_byte; |
|
3510
b4a552ca4e99
(read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3238
diff
changeset
|
2942 Lisp_Object odeactivate; |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
2943 int before, before_byte; |
|
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
2944 int opoint_byte; |
|
3510
b4a552ca4e99
(read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3238
diff
changeset
|
2945 |
|
b4a552ca4e99
(read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3238
diff
changeset
|
2946 odeactivate = Vdeactivate_mark; |
| 578 | 2947 |
| 2948 Fset_buffer (p->buffer); | |
|
16039
855c8d8ba0f0
Change all references from point to PT.
Karl Heuer <kwzh@gnu.org>
parents:
15895
diff
changeset
|
2949 opoint = PT; |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
2950 opoint_byte = PT_BYTE; |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
2951 old_read_only = current_buffer->read_only; |
|
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
2952 old_begv = BEGV; |
|
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
2953 old_zv = ZV; |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
2954 old_begv_byte = BEGV_BYTE; |
|
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
2955 old_zv_byte = ZV_BYTE; |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
2956 |
|
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
2957 current_buffer->read_only = Qnil; |
| 578 | 2958 |
| 2959 /* Insert new output into buffer | |
| 2960 at the current end-of-output marker, | |
| 2961 thus preserving logical ordering of input and output. */ | |
| 2962 if (XMARKER (p->mark)->buffer) | |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
2963 SET_PT_BOTH (clip_to_bounds (BEGV, marker_position (p->mark), ZV), |
|
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
2964 clip_to_bounds (BEGV_BYTE, marker_byte_position (p->mark), |
|
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
2965 ZV_BYTE)); |
| 578 | 2966 else |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
2967 SET_PT_BOTH (ZV, ZV_BYTE); |
|
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
2968 before = PT; |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
2969 before_byte = PT_BYTE; |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
2970 |
|
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
2971 /* 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
|
2972 the restriction and widen. */ |
|
16039
855c8d8ba0f0
Change all references from point to PT.
Karl Heuer <kwzh@gnu.org>
parents:
15895
diff
changeset
|
2973 if (! (BEGV <= PT && 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
|
2974 Fwiden (); |
|
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
2975 |
| 578 | 2976 /* Insert before markers in case we are inserting where |
| 2977 the buffer's mark is, and the user's next command is Meta-y. */ | |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2978 if (chars_in_decoding_buf) |
|
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
2979 insert_from_string_before_markers (p->decoding_buf, 0, 0, |
|
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
2980 nchars, nbytes, 0); |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
2981 else |
|
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
2982 insert_1_both (chars, nchars, nbytes, 0, 1, 1); |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
2983 set_marker_both (p->mark, p->buffer, PT, PT_BYTE); |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
2984 |
| 578 | 2985 update_mode_lines++; |
| 2986 | |
|
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
2987 /* Make sure opoint and the old restrictions |
|
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
2988 float ahead of any new text just as point would. */ |
|
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
2989 if (opoint >= before) |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
2990 { |
|
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
2991 opoint += PT - before; |
|
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
2992 opoint_byte += PT_BYTE - before_byte; |
|
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
2993 } |
|
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
2994 if (old_begv > before) |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
2995 { |
|
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
2996 old_begv += PT - before; |
|
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
2997 old_begv_byte += PT_BYTE - before_byte; |
|
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
2998 } |
|
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
2999 if (old_zv >= before) |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
3000 { |
|
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
3001 old_zv += PT - before; |
|
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
3002 old_zv_byte += PT_BYTE - before_byte; |
|
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
3003 } |
|
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
3004 |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3005 /* If the restriction isn't what it should be, set it. */ |
|
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
3006 if (old_begv != BEGV || old_zv != ZV) |
|
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
3007 Fnarrow_to_region (make_number (old_begv), make_number (old_zv)); |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3008 |
|
3666
c7ff787b096f
(read_process_output): Don't deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3608
diff
changeset
|
3009 /* Handling the process output should not deactivate the mark. */ |
|
3510
b4a552ca4e99
(read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3238
diff
changeset
|
3010 Vdeactivate_mark = odeactivate; |
|
b4a552ca4e99
(read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
3238
diff
changeset
|
3011 |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3012 current_buffer->read_only = old_read_only; |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
3013 SET_PT_BOTH (opoint, opoint_byte); |
| 578 | 3014 set_buffer_internal (old); |
| 3015 } | |
| 3016 #ifdef VMS | |
| 3017 start_vms_process_read (vs); | |
| 3018 #endif | |
|
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
3019 return nbytes; |
| 578 | 3020 } |
| 3021 | |
| 3022 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p, Swaiting_for_user_input_p, | |
| 3023 0, 0, 0, | |
|
7352
ef89b78c1a92
(wait_reading_process_input): Don't call prepare_menu_bars
Richard M. Stallman <rms@gnu.org>
parents:
7266
diff
changeset
|
3024 "Returns non-nil if emacs is waiting for input from the user.\n\ |
| 578 | 3025 This is intended for use by asynchronous process output filters and sentinels.") |
| 3026 () | |
| 3027 { | |
|
7352
ef89b78c1a92
(wait_reading_process_input): Don't call prepare_menu_bars
Richard M. Stallman <rms@gnu.org>
parents:
7266
diff
changeset
|
3028 return (waiting_for_user_input_p ? Qt : Qnil); |
| 578 | 3029 } |
| 3030 | |
| 3031 /* Sending data to subprocess */ | |
| 3032 | |
| 3033 jmp_buf send_process_frame; | |
| 3034 | |
| 3035 SIGTYPE | |
| 3036 send_process_trap () | |
| 3037 { | |
| 3038 #ifdef BSD4_1 | |
| 3039 sigrelse (SIGPIPE); | |
| 3040 sigrelse (SIGALRM); | |
| 3041 #endif /* BSD4_1 */ | |
| 3042 longjmp (send_process_frame, 1); | |
| 3043 } | |
| 3044 | |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3045 /* Send some data to process PROC. |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3046 BUF is the beginning of the data; LEN is the number of characters. |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3047 OBJECT is the Lisp object that the data comes from. |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3048 |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3049 The data is encoded by PROC's coding-system for encoding before it |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3050 is sent. But if the data ends at the middle of multi-byte |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3051 representation, that incomplete sequence of bytes are sent without |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3052 being encoded. Should we store them in a buffer to prepend them to |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3053 the data send later? */ |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3054 |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3055 send_process (proc, buf, len, object) |
|
11926
40d7e6f04ebe
(create_process, send_process): Add volatile qualifiers.
Karl Heuer <kwzh@gnu.org>
parents:
11845
diff
changeset
|
3056 volatile Lisp_Object proc; |
|
18585
64184009811b
(send_process): Make buf and temp_buf `unsigned char *'.
Richard M. Stallman <rms@gnu.org>
parents:
18540
diff
changeset
|
3057 unsigned char *buf; |
| 578 | 3058 int len; |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3059 Lisp_Object object; |
| 578 | 3060 { |
|
11926
40d7e6f04ebe
(create_process, send_process): Add volatile qualifiers.
Karl Heuer <kwzh@gnu.org>
parents:
11845
diff
changeset
|
3061 /* Use volatile to protect variables from being clobbered by longjmp. */ |
| 578 | 3062 int rv; |
|
11926
40d7e6f04ebe
(create_process, send_process): Add volatile qualifiers.
Karl Heuer <kwzh@gnu.org>
parents:
11845
diff
changeset
|
3063 volatile unsigned char *procname = XSTRING (XPROCESS (proc)->name)->data; |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3064 struct coding_system *coding; |
|
15895
85112cca0b22
(send_process): GCPRO object.
Richard M. Stallman <rms@gnu.org>
parents:
15717
diff
changeset
|
3065 struct gcpro gcpro1; |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3066 int carryover = XINT (XPROCESS (proc)->encoding_carryover); |
|
15895
85112cca0b22
(send_process): GCPRO object.
Richard M. Stallman <rms@gnu.org>
parents:
15717
diff
changeset
|
3067 |
|
85112cca0b22
(send_process): GCPRO object.
Richard M. Stallman <rms@gnu.org>
parents:
15717
diff
changeset
|
3068 GCPRO1 (object); |
| 578 | 3069 |
| 3070 #ifdef VMS | |
| 3071 struct Lisp_Process *p = XPROCESS (proc); | |
| 3072 VMS_PROC_STUFF *vs, *get_vms_process_pointer(); | |
| 3073 #endif /* VMS */ | |
| 3074 | |
| 3075 if (! NILP (XPROCESS (proc)->raw_status_low)) | |
| 3076 update_status (XPROCESS (proc)); | |
| 3077 if (! EQ (XPROCESS (proc)->status, Qrun)) | |
| 3078 error ("Process %s not running", procname); | |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3079 if (XINT (XPROCESS (proc)->outfd) < 0) |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3080 error ("Output file descriptor of %s is closed", procname); |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3081 |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
3082 coding = proc_encode_coding_system[XINT (XPROCESS (proc)->outfd)]; |
|
20433
a43789debf48
(read_process_output): Fix previous change, i.e, if
Kenichi Handa <handa@m17n.org>
parents:
20428
diff
changeset
|
3083 Vlast_coding_system_used = coding->symbol; |
|
a43789debf48
(read_process_output): Fix previous change, i.e, if
Kenichi Handa <handa@m17n.org>
parents:
20428
diff
changeset
|
3084 |
|
20225
ca258a32a122
(create_process): Encode arguments for the process.
Kenichi Handa <handa@m17n.org>
parents:
19837
diff
changeset
|
3085 if (CODING_REQUIRE_ENCODING (coding)) |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3086 { |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3087 int require = encoding_buffer_size (coding, len); |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3088 int offset, dummy; |
|
18585
64184009811b
(send_process): Make buf and temp_buf `unsigned char *'.
Richard M. Stallman <rms@gnu.org>
parents:
18540
diff
changeset
|
3089 unsigned char *temp_buf = NULL; |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3090 |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3091 /* Remember the offset of data because a string or a buffer may |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3092 be relocated. Setting OFFSET to -1 means we don't have to |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3093 care relocation. */ |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3094 offset = (BUFFERP (object) |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
3095 ? BUF_PTR_BYTE_POS (XBUFFER (object), buf) |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3096 : (STRINGP (object) |
|
18585
64184009811b
(send_process): Make buf and temp_buf `unsigned char *'.
Richard M. Stallman <rms@gnu.org>
parents:
18540
diff
changeset
|
3097 ? offset = buf - XSTRING (object)->data |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3098 : -1)); |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3099 |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3100 if (carryover > 0) |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3101 { |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3102 temp_buf = (unsigned char *) xmalloc (len + carryover); |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3103 |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3104 if (offset >= 0) |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3105 { |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3106 if (BUFFERP (object)) |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
3107 buf = BUF_BYTE_ADDRESS (XBUFFER (object), offset); |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3108 else if (STRINGP (object)) |
|
18585
64184009811b
(send_process): Make buf and temp_buf `unsigned char *'.
Richard M. Stallman <rms@gnu.org>
parents:
18540
diff
changeset
|
3109 buf = offset + XSTRING (object)->data; |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3110 /* Now we don't have to care relocation. */ |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3111 offset = -1; |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3112 } |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3113 bcopy ((XSTRING (XPROCESS (proc)->encoding_buf)->data |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3114 + XSTRING (XPROCESS (proc)->encoding_buf)->size_byte |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3115 - carryover), |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3116 temp_buf, |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3117 carryover); |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3118 bcopy (buf, temp_buf + carryover, len); |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3119 buf = temp_buf; |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3120 } |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3121 |
|
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
3122 if (XSTRING (XPROCESS (proc)->encoding_buf)->size_byte < require) |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3123 { |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3124 XPROCESS (proc)->encoding_buf = make_uninit_string (require); |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3125 |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3126 if (offset >= 0) |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3127 { |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3128 if (BUFFERP (object)) |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
3129 buf = BUF_BYTE_ADDRESS (XBUFFER (object), offset); |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3130 else if (STRINGP (object)) |
|
18585
64184009811b
(send_process): Make buf and temp_buf `unsigned char *'.
Richard M. Stallman <rms@gnu.org>
parents:
18540
diff
changeset
|
3131 buf = offset + XSTRING (object)->data; |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3132 } |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3133 } |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3134 object = XPROCESS (proc)->encoding_buf; |
|
20715
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3135 encode_coding (coding, buf, XSTRING (object)->data, |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3136 len, XSTRING (object)->size_byte); |
|
5e983ddb85c9
(Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3137 len = coding->produced; |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3138 buf = XSTRING (object)->data; |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3139 if (temp_buf) |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3140 xfree (temp_buf); |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
3141 } |
| 578 | 3142 |
| 3143 #ifdef VMS | |
| 3144 vs = get_vms_process_pointer (p->pid); | |
| 3145 if (vs == 0) | |
| 3146 error ("Could not find this process: %x", p->pid); | |
| 3147 else if (write_to_vms_process (vs, buf, len)) | |
| 3148 ; | |
| 3149 #else | |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3150 |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3151 if (pty_max_bytes == 0) |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3152 { |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3153 #if defined (HAVE_FPATHCONF) && defined (_PC_MAX_CANON) |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3154 pty_max_bytes = fpathconf (XFASTINT (XPROCESS (proc)->outfd), |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3155 _PC_MAX_CANON); |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3156 if (pty_max_bytes < 0) |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3157 pty_max_bytes = 250; |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3158 #else |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3159 pty_max_bytes = 250; |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3160 #endif |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3161 /* Deduct one, to leave space for the eof. */ |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3162 pty_max_bytes--; |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3163 } |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3164 |
| 578 | 3165 if (!setjmp (send_process_frame)) |
| 3166 while (len > 0) | |
| 3167 { | |
| 3168 int this = len; | |
| 621 | 3169 SIGTYPE (*old_sigpipe)(); |
| 6158 | 3170 int flush_pty = 0; |
| 3171 | |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3172 /* Decide how much data we can send in one batch. |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3173 Long lines need to be split into multiple batches. */ |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3174 if (!NILP (XPROCESS (proc)->pty_flag)) |
| 6158 | 3175 { |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3176 /* Starting this at zero is always correct when not the first iteration |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3177 because the previous iteration ended by sending C-d. |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3178 It may not be correct for the first iteration |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3179 if a partial line was sent in a separate send_process call. |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3180 If that proves worth handling, we need to save linepos |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3181 in the process object. */ |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3182 int linepos = 0; |
|
18585
64184009811b
(send_process): Make buf and temp_buf `unsigned char *'.
Richard M. Stallman <rms@gnu.org>
parents:
18540
diff
changeset
|
3183 unsigned char *ptr = buf; |
|
64184009811b
(send_process): Make buf and temp_buf `unsigned char *'.
Richard M. Stallman <rms@gnu.org>
parents:
18540
diff
changeset
|
3184 unsigned char *end = buf + len; |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3185 |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3186 /* Scan through this text for a line that is too long. */ |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3187 while (ptr != end && linepos < pty_max_bytes) |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3188 { |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3189 if (*ptr == '\n') |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3190 linepos = 0; |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3191 else |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3192 linepos++; |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3193 ptr++; |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3194 } |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3195 /* If we found one, break the line there |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3196 and put in a C-d to force the buffer through. */ |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3197 this = ptr - buf; |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3198 } |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3199 |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3200 /* Send this batch, using one or more write calls. */ |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3201 while (this > 0) |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3202 { |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3203 old_sigpipe = (SIGTYPE (*) ()) signal (SIGPIPE, send_process_trap); |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3204 rv = write (XINT (XPROCESS (proc)->outfd), buf, this); |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3205 signal (SIGPIPE, old_sigpipe); |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3206 |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3207 if (rv < 0) |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3208 { |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3209 if (0 |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3210 #ifdef EWOULDBLOCK |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3211 || errno == EWOULDBLOCK |
| 6158 | 3212 #endif |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3213 #ifdef EAGAIN |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3214 || errno == EAGAIN |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3215 #endif |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3216 ) |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3217 /* Buffer is full. Wait, accepting input; |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3218 that may allow the program |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3219 to finish doing output and read more. */ |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3220 { |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3221 Lisp_Object zero; |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3222 int offset; |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3223 |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3224 /* Running filters might relocate buffers or strings. |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3225 Arrange to relocate BUF. */ |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3226 if (BUFFERP (object)) |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
3227 offset = BUF_PTR_BYTE_POS (XBUFFER (object), buf); |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3228 else if (STRINGP (object)) |
|
18585
64184009811b
(send_process): Make buf and temp_buf `unsigned char *'.
Richard M. Stallman <rms@gnu.org>
parents:
18540
diff
changeset
|
3229 offset = buf - XSTRING (object)->data; |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3230 |
|
9318
a14cc1712337
(make_process, list_processes_1, create_process, Faccept_process_output,
Karl Heuer <kwzh@gnu.org>
parents:
9277
diff
changeset
|
3231 XSETFASTINT (zero, 0); |
|
16718
ea26040865cb
(send_process) [EMACS_HAS_USECS]:
Richard M. Stallman <rms@gnu.org>
parents:
16644
diff
changeset
|
3232 #ifdef EMACS_HAS_USECS |
|
ea26040865cb
(send_process) [EMACS_HAS_USECS]:
Richard M. Stallman <rms@gnu.org>
parents:
16644
diff
changeset
|
3233 wait_reading_process_input (0, 20000, zero, 0); |
|
ea26040865cb
(send_process) [EMACS_HAS_USECS]:
Richard M. Stallman <rms@gnu.org>
parents:
16644
diff
changeset
|
3234 #else |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3235 wait_reading_process_input (1, 0, zero, 0); |
|
16718
ea26040865cb
(send_process) [EMACS_HAS_USECS]:
Richard M. Stallman <rms@gnu.org>
parents:
16644
diff
changeset
|
3236 #endif |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3237 |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3238 if (BUFFERP (object)) |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
3239 buf = BUF_BYTE_ADDRESS (XBUFFER (object), offset); |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3240 else if (STRINGP (object)) |
|
18585
64184009811b
(send_process): Make buf and temp_buf `unsigned char *'.
Richard M. Stallman <rms@gnu.org>
parents:
18540
diff
changeset
|
3241 buf = offset + XSTRING (object)->data; |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3242 |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3243 rv = 0; |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3244 } |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3245 else |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3246 /* This is a real error. */ |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3247 report_file_error ("writing to process", Fcons (proc, Qnil)); |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3248 } |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3249 buf += rv; |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3250 len -= rv; |
|
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3251 this -= rv; |
| 6158 | 3252 } |
| 3253 | |
| 3254 /* If we sent just part of the string, put in an EOF | |
| 3255 to force it through, before we send the rest. */ | |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3256 if (len > 0) |
| 6158 | 3257 Fprocess_send_eof (proc); |
| 578 | 3258 } |
| 3259 #endif | |
| 3260 else | |
| 3261 { | |
| 3262 XPROCESS (proc)->raw_status_low = Qnil; | |
| 3263 XPROCESS (proc)->raw_status_high = Qnil; | |
| 3264 XPROCESS (proc)->status = Fcons (Qexit, Fcons (make_number (256), Qnil)); | |
| 3265 XSETINT (XPROCESS (proc)->tick, ++process_tick); | |
| 3266 deactivate_process (proc); | |
| 3267 #ifdef VMS | |
| 3268 error ("Error writing to process %s; closed it", procname); | |
| 3269 #else | |
| 3270 error ("SIGPIPE raised on process %s; closed it", procname); | |
| 3271 #endif | |
| 3272 } | |
|
15895
85112cca0b22
(send_process): GCPRO object.
Richard M. Stallman <rms@gnu.org>
parents:
15717
diff
changeset
|
3273 |
|
85112cca0b22
(send_process): GCPRO object.
Richard M. Stallman <rms@gnu.org>
parents:
15717
diff
changeset
|
3274 UNGCPRO; |
| 578 | 3275 } |
| 3276 | |
| 3277 DEFUN ("process-send-region", Fprocess_send_region, Sprocess_send_region, | |
| 3278 3, 3, 0, | |
| 3279 "Send current contents of region as input to PROCESS.\n\ | |
| 808 | 3280 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\ |
| 3281 nil, indicating the current buffer's process.\n\ | |
| 578 | 3282 Called from program, takes three arguments, PROCESS, START and END.\n\ |
| 3283 If the region is more than 500 characters long,\n\ | |
| 3284 it is sent in several bunches. This may happen even for shorter regions.\n\ | |
| 3285 Output from processes can arrive in between bunches.") | |
| 3286 (process, start, end) | |
| 3287 Lisp_Object process, start, end; | |
| 3288 { | |
| 3289 Lisp_Object proc; | |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
3290 int start1, end1; |
| 578 | 3291 |
| 3292 proc = get_process (process); | |
| 3293 validate_region (&start, &end); | |
| 3294 | |
| 3295 if (XINT (start) < GPT && XINT (end) > GPT) | |
|
18739
60f002497be1
(Fprocess_send_region): Convert move_gap argument to int.
Richard M. Stallman <rms@gnu.org>
parents:
18708
diff
changeset
|
3296 move_gap (XINT (start)); |
| 578 | 3297 |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
3298 start1 = CHAR_TO_BYTE (XINT (start)); |
|
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
3299 end1 = CHAR_TO_BYTE (XINT (end)); |
|
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
3300 send_process (proc, BYTE_POS_ADDR (start1), end1 - start1, |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3301 Fcurrent_buffer ()); |
| 578 | 3302 |
| 3303 return Qnil; | |
| 3304 } | |
| 3305 | |
| 3306 DEFUN ("process-send-string", Fprocess_send_string, Sprocess_send_string, | |
| 3307 2, 2, 0, | |
| 3308 "Send PROCESS the contents of STRING as input.\n\ | |
| 808 | 3309 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\ |
| 3310 nil, indicating the current buffer's process.\n\ | |
| 578 | 3311 If STRING is more than 500 characters long,\n\ |
| 3312 it is sent in several bunches. This may happen even for shorter strings.\n\ | |
| 3313 Output from processes can arrive in between bunches.") | |
| 3314 (process, string) | |
| 3315 Lisp_Object process, string; | |
| 3316 { | |
| 3317 Lisp_Object proc; | |
| 3318 CHECK_STRING (string, 1); | |
| 3319 proc = get_process (process); | |
|
20594
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
3320 send_process (proc, XSTRING (string)->data, |
|
6e5a5afbe628
(read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents:
20551
diff
changeset
|
3321 XSTRING (string)->size_byte, string); |
| 578 | 3322 return Qnil; |
| 3323 } | |
| 3324 | |
| 3325 /* send a signal number SIGNO to PROCESS. | |
| 3326 CURRENT_GROUP means send to the process group that currently owns | |
| 3327 the terminal being used to communicate with PROCESS. | |
| 3328 This is used for various commands in shell mode. | |
| 3329 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
|
3330 right away. |
|
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3331 |
|
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3332 If we can, we try to signal PROCESS by sending control characters |
|
7220
a33eb16cab9d
(Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents:
7157
diff
changeset
|
3333 down the pty. This allows us to signal inferiors who have changed |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3334 their uid, for which killpg would return an EPERM error. */ |
| 578 | 3335 |
|
1522
19ccf004b172
* process.c: (status_convert): Declare this to return a
Jim Blandy <jimb@redhat.com>
parents:
1323
diff
changeset
|
3336 static void |
| 578 | 3337 process_send_signal (process, signo, current_group, nomsg) |
| 3338 Lisp_Object process; | |
| 3339 int signo; | |
| 3340 Lisp_Object current_group; | |
| 3341 int nomsg; | |
| 3342 { | |
| 3343 Lisp_Object proc; | |
| 3344 register struct Lisp_Process *p; | |
| 3345 int gid; | |
| 3346 int no_pgrp = 0; | |
| 3347 | |
| 3348 proc = get_process (process); | |
| 3349 p = XPROCESS (proc); | |
| 3350 | |
| 3351 if (!EQ (p->childp, Qt)) | |
| 3352 error ("Process %s is not a subprocess", | |
| 3353 XSTRING (p->name)->data); | |
|
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3354 if (XINT (p->infd) < 0) |
| 578 | 3355 error ("Process %s is not active", |
| 3356 XSTRING (p->name)->data); | |
| 3357 | |
| 3358 if (NILP (p->pty_flag)) | |
| 3359 current_group = Qnil; | |
| 3360 | |
| 3361 /* If we are using pgrps, get a pgrp number and make it negative. */ | |
| 3362 if (!NILP (current_group)) | |
| 3363 { | |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3364 #ifdef SIGNALS_VIA_CHARACTERS |
| 578 | 3365 /* If possible, send signals to the entire pgrp |
| 3366 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
|
3367 |
|
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3368 /* 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
|
3369 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
|
3370 #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
|
3371 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
|
3372 |
|
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3373 switch (signo) |
|
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3374 { |
|
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3375 case SIGINT: |
|
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3376 tcgetattr (XINT (p->infd), &t); |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3377 send_process (proc, &t.c_cc[VINTR], 1, Qnil); |
|
2120
fc3cdca22f8d
* process.c (process_send_signal): In the TERMIOS code for sending
Jim Blandy <jimb@redhat.com>
parents:
1925
diff
changeset
|
3378 return; |
|
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3379 |
|
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3380 case SIGQUIT: |
|
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3381 tcgetattr (XINT (p->infd), &t); |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3382 send_process (proc, &t.c_cc[VQUIT], 1, Qnil); |
|
2120
fc3cdca22f8d
* process.c (process_send_signal): In the TERMIOS code for sending
Jim Blandy <jimb@redhat.com>
parents:
1925
diff
changeset
|
3383 return; |
|
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3384 |
|
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3385 case SIGTSTP: |
|
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3386 tcgetattr (XINT (p->infd), &t); |
|
7414
33e5afbb62bf
(process_send_signal): If PREFER_VSUSP, use VSUSP instead of VSWTCH.
Richard M. Stallman <rms@gnu.org>
parents:
7352
diff
changeset
|
3387 #if defined (VSWTCH) && !defined (PREFER_VSUSP) |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3388 send_process (proc, &t.c_cc[VSWTCH], 1, Qnil); |
|
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3389 #else |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3390 send_process (proc, &t.c_cc[VSUSP], 1, Qnil); |
|
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3391 #endif |
|
2120
fc3cdca22f8d
* process.c (process_send_signal): In the TERMIOS code for sending
Jim Blandy <jimb@redhat.com>
parents:
1925
diff
changeset
|
3392 return; |
|
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3393 } |
|
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3394 |
|
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3395 #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
|
3396 |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3397 /* 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
|
3398 current control characters. */ |
| 578 | 3399 #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
|
3400 |
| 578 | 3401 struct tchars c; |
| 3402 struct ltchars lc; | |
| 3403 | |
| 3404 switch (signo) | |
| 3405 { | |
| 3406 case SIGINT: | |
|
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3407 ioctl (XINT (p->infd), TIOCGETC, &c); |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3408 send_process (proc, &c.t_intrc, 1, Qnil); |
|
1522
19ccf004b172
* process.c: (status_convert): Declare this to return a
Jim Blandy <jimb@redhat.com>
parents:
1323
diff
changeset
|
3409 return; |
| 578 | 3410 case SIGQUIT: |
|
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3411 ioctl (XINT (p->infd), TIOCGETC, &c); |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3412 send_process (proc, &c.t_quitc, 1, Qnil); |
|
1522
19ccf004b172
* process.c: (status_convert): Declare this to return a
Jim Blandy <jimb@redhat.com>
parents:
1323
diff
changeset
|
3413 return; |
|
1012
a48ed1d416dd
* process.c (process_send_signal): Don't send SIGTSTP if the
Jim Blandy <jimb@redhat.com>
parents:
849
diff
changeset
|
3414 #ifdef SIGTSTP |
| 578 | 3415 case SIGTSTP: |
|
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3416 ioctl (XINT (p->infd), TIOCGLTC, &lc); |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3417 send_process (proc, &lc.t_suspc, 1, Qnil); |
|
1522
19ccf004b172
* process.c: (status_convert): Declare this to return a
Jim Blandy <jimb@redhat.com>
parents:
1323
diff
changeset
|
3418 return; |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3419 #endif /* ! defined (SIGTSTP) */ |
| 578 | 3420 } |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3421 |
|
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3422 #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
|
3423 |
|
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3424 /* 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
|
3425 characters. */ |
|
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3426 #ifdef TCGETA |
| 578 | 3427 struct termio t; |
| 3428 switch (signo) | |
| 3429 { | |
| 3430 case SIGINT: | |
|
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3431 ioctl (XINT (p->infd), TCGETA, &t); |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3432 send_process (proc, &t.c_cc[VINTR], 1, Qnil); |
|
1522
19ccf004b172
* process.c: (status_convert): Declare this to return a
Jim Blandy <jimb@redhat.com>
parents:
1323
diff
changeset
|
3433 return; |
| 578 | 3434 case SIGQUIT: |
|
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3435 ioctl (XINT (p->infd), TCGETA, &t); |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3436 send_process (proc, &t.c_cc[VQUIT], 1, Qnil); |
|
1522
19ccf004b172
* process.c: (status_convert): Declare this to return a
Jim Blandy <jimb@redhat.com>
parents:
1323
diff
changeset
|
3437 return; |
|
1569
52a69b6a8f96
* process.c [SYSV]: Don't include <termios.h>, <termio.h>, or
Jim Blandy <jimb@redhat.com>
parents:
1522
diff
changeset
|
3438 #ifdef SIGTSTP |
| 578 | 3439 case SIGTSTP: |
|
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3440 ioctl (XINT (p->infd), TCGETA, &t); |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3441 send_process (proc, &t.c_cc[VSWTCH], 1, Qnil); |
|
1522
19ccf004b172
* process.c: (status_convert): Declare this to return a
Jim Blandy <jimb@redhat.com>
parents:
1323
diff
changeset
|
3442 return; |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3443 #endif /* ! defined (SIGTSTP) */ |
| 578 | 3444 } |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3445 #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
|
3446 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
|
3447 /* 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
|
3448 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
|
3449 #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
|
3450 #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
|
3451 #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
|
3452 #endif /* ! defined (SIGNALS_VIA_CHARACTERS) */ |
| 849 | 3453 |
| 3454 #ifdef TIOCGPGRP | |
| 578 | 3455 /* Get the pgrp using the tty itself, if we have that. |
| 3456 Otherwise, use the pty to get the pgrp. | |
| 3457 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
|
3458 "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
|
3459 But, TIOCGPGRP does not work on E50 ;-P works fine on E60" |
| 578 | 3460 His patch indicates that if TIOCGPGRP returns an error, then |
| 3461 we should just assume that p->pid is also the process group id. */ | |
| 3462 { | |
| 3463 int err; | |
| 3464 | |
| 3465 if (!NILP (p->subtty)) | |
| 3466 err = ioctl (XFASTINT (p->subtty), TIOCGPGRP, &gid); | |
| 3467 else | |
|
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3468 err = ioctl (XINT (p->infd), TIOCGPGRP, &gid); |
| 578 | 3469 |
| 3470 #ifdef pfa | |
| 3471 if (err == -1) | |
| 3472 gid = - XFASTINT (p->pid); | |
| 849 | 3473 #endif /* ! defined (pfa) */ |
| 578 | 3474 } |
| 3475 if (gid == -1) | |
| 3476 no_pgrp = 1; | |
| 3477 else | |
| 3478 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
|
3479 #else /* ! defined (TIOCGPGRP ) */ |
| 849 | 3480 /* Can't select pgrps on this system, so we know that |
| 3481 the child itself heads the pgrp. */ | |
| 3482 gid = - XFASTINT (p->pid); | |
| 3483 #endif /* ! defined (TIOCGPGRP ) */ | |
| 578 | 3484 } |
| 3485 else | |
| 3486 gid = - XFASTINT (p->pid); | |
| 3487 | |
| 3488 switch (signo) | |
| 3489 { | |
| 3490 #ifdef SIGCONT | |
| 3491 case SIGCONT: | |
| 3492 p->raw_status_low = Qnil; | |
| 3493 p->raw_status_high = Qnil; | |
| 3494 p->status = Qrun; | |
| 3495 XSETINT (p->tick, ++process_tick); | |
| 3496 if (!nomsg) | |
| 3497 status_notify (); | |
| 3498 break; | |
| 849 | 3499 #endif /* ! defined (SIGCONT) */ |
| 578 | 3500 case SIGINT: |
| 3501 #ifdef VMS | |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3502 send_process (proc, "\003", 1, Qnil); /* ^C */ |
| 578 | 3503 goto whoosh; |
| 3504 #endif | |
| 3505 case SIGQUIT: | |
| 3506 #ifdef VMS | |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3507 send_process (proc, "\031", 1, Qnil); /* ^Y */ |
| 578 | 3508 goto whoosh; |
| 3509 #endif | |
| 3510 case SIGKILL: | |
| 3511 #ifdef VMS | |
| 3512 sys$forcex (&(XFASTINT (p->pid)), 0, 1); | |
| 3513 whoosh: | |
| 3514 #endif | |
|
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3515 flush_pending_output (XINT (p->infd)); |
| 578 | 3516 break; |
| 3517 } | |
| 3518 | |
| 3519 /* If we don't have process groups, send the signal to the immediate | |
| 3520 subprocess. That isn't really right, but it's better than any | |
| 3521 obvious alternative. */ | |
| 3522 if (no_pgrp) | |
| 3523 { | |
| 3524 kill (XFASTINT (p->pid), signo); | |
| 3525 return; | |
| 3526 } | |
| 3527 | |
| 3528 /* gid may be a pid, or minus a pgrp's number */ | |
| 3529 #ifdef TIOCSIGSEND | |
| 3530 if (!NILP (current_group)) | |
|
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3531 ioctl (XINT (p->infd), TIOCSIGSEND, signo); |
| 578 | 3532 else |
| 3533 { | |
| 3534 gid = - XFASTINT (p->pid); | |
| 3535 kill (gid, signo); | |
| 3536 } | |
| 849 | 3537 #else /* ! defined (TIOCSIGSEND) */ |
| 578 | 3538 EMACS_KILLPG (-gid, signo); |
| 849 | 3539 #endif /* ! defined (TIOCSIGSEND) */ |
| 578 | 3540 } |
| 3541 | |
| 3542 DEFUN ("interrupt-process", Finterrupt_process, Sinterrupt_process, 0, 2, 0, | |
| 3543 "Interrupt process PROCESS. May be process or name of one.\n\ | |
| 808 | 3544 PROCESS may be a process, a buffer, or the name of a process or buffer.\n\ |
|
7220
a33eb16cab9d
(Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents:
7157
diff
changeset
|
3545 nil or no arg means current buffer's process.\n\ |
| 578 | 3546 Second arg CURRENT-GROUP non-nil means send signal to\n\ |
| 3547 the current process-group of the process's controlling terminal\n\ | |
| 3548 rather than to the process's own process group.\n\ | |
| 3549 If the process is a shell, this means interrupt current subjob\n\ | |
| 3550 rather than the shell.") | |
| 3551 (process, current_group) | |
| 3552 Lisp_Object process, current_group; | |
| 3553 { | |
| 3554 process_send_signal (process, SIGINT, current_group, 0); | |
| 3555 return process; | |
| 3556 } | |
| 3557 | |
| 3558 DEFUN ("kill-process", Fkill_process, Skill_process, 0, 2, 0, | |
| 3559 "Kill process PROCESS. May be process or name of one.\n\ | |
| 3560 See function `interrupt-process' for more details on usage.") | |
| 3561 (process, current_group) | |
| 3562 Lisp_Object process, current_group; | |
| 3563 { | |
| 3564 process_send_signal (process, SIGKILL, current_group, 0); | |
| 3565 return process; | |
| 3566 } | |
| 3567 | |
| 3568 DEFUN ("quit-process", Fquit_process, Squit_process, 0, 2, 0, | |
| 3569 "Send QUIT signal to process PROCESS. May be process or name of one.\n\ | |
| 3570 See function `interrupt-process' for more details on usage.") | |
| 3571 (process, current_group) | |
| 3572 Lisp_Object process, current_group; | |
| 3573 { | |
| 3574 process_send_signal (process, SIGQUIT, current_group, 0); | |
| 3575 return process; | |
| 3576 } | |
| 3577 | |
| 3578 DEFUN ("stop-process", Fstop_process, Sstop_process, 0, 2, 0, | |
| 3579 "Stop process PROCESS. May be process or name of one.\n\ | |
| 3580 See function `interrupt-process' for more details on usage.") | |
| 3581 (process, current_group) | |
| 3582 Lisp_Object process, current_group; | |
| 3583 { | |
| 3584 #ifndef SIGTSTP | |
| 3585 error ("no SIGTSTP support"); | |
| 3586 #else | |
| 3587 process_send_signal (process, SIGTSTP, current_group, 0); | |
| 3588 #endif | |
| 3589 return process; | |
| 3590 } | |
| 3591 | |
| 3592 DEFUN ("continue-process", Fcontinue_process, Scontinue_process, 0, 2, 0, | |
| 3593 "Continue process PROCESS. May be process or name of one.\n\ | |
| 3594 See function `interrupt-process' for more details on usage.") | |
| 3595 (process, current_group) | |
| 3596 Lisp_Object process, current_group; | |
| 3597 { | |
| 3598 #ifdef SIGCONT | |
| 3599 process_send_signal (process, SIGCONT, current_group, 0); | |
| 3600 #else | |
| 3601 error ("no SIGCONT support"); | |
| 3602 #endif | |
| 3603 return process; | |
| 3604 } | |
| 3605 | |
| 3606 DEFUN ("signal-process", Fsignal_process, Ssignal_process, | |
| 3607 2, 2, "nProcess number: \nnSignal code: ", | |
|
11144
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3608 "Send the process with process id PID the signal with code SIGCODE.\n\ |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3609 PID must be an integer. The process need not be a child of this Emacs.\n\ |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3610 SIGCODE may be an integer, or a symbol whose name is a signal name.") |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3611 (pid, sigcode) |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3612 Lisp_Object pid, sigcode; |
| 578 | 3613 { |
| 3614 CHECK_NUMBER (pid, 0); | |
|
11144
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3615 |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3616 #define handle_signal(NAME, VALUE) \ |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3617 else if (!strcmp (name, NAME)) \ |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3618 XSETINT (sigcode, VALUE) |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3619 |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3620 if (INTEGERP (sigcode)) |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3621 ; |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3622 else |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3623 { |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3624 unsigned char *name; |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3625 |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3626 CHECK_SYMBOL (sigcode, 1); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3627 name = XSYMBOL (sigcode)->name->data; |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3628 |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3629 if (0) |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3630 ; |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3631 #ifdef SIGHUP |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3632 handle_signal ("SIGHUP", SIGHUP); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3633 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3634 #ifdef SIGINT |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3635 handle_signal ("SIGINT", SIGINT); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3636 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3637 #ifdef SIGQUIT |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3638 handle_signal ("SIGQUIT", SIGQUIT); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3639 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3640 #ifdef SIGILL |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3641 handle_signal ("SIGILL", SIGILL); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3642 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3643 #ifdef SIGABRT |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3644 handle_signal ("SIGABRT", SIGABRT); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3645 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3646 #ifdef SIGEMT |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3647 handle_signal ("SIGEMT", SIGEMT); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3648 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3649 #ifdef SIGKILL |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3650 handle_signal ("SIGKILL", SIGKILL); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3651 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3652 #ifdef SIGFPE |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3653 handle_signal ("SIGFPE", SIGFPE); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3654 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3655 #ifdef SIGBUS |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3656 handle_signal ("SIGBUS", SIGBUS); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3657 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3658 #ifdef SIGSEGV |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3659 handle_signal ("SIGSEGV", SIGSEGV); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3660 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3661 #ifdef SIGSYS |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3662 handle_signal ("SIGSYS", SIGSYS); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3663 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3664 #ifdef SIGPIPE |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3665 handle_signal ("SIGPIPE", SIGPIPE); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3666 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3667 #ifdef SIGALRM |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3668 handle_signal ("SIGALRM", SIGALRM); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3669 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3670 #ifdef SIGTERM |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3671 handle_signal ("SIGTERM", SIGTERM); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3672 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3673 #ifdef SIGURG |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3674 handle_signal ("SIGURG", SIGURG); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3675 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3676 #ifdef SIGSTOP |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3677 handle_signal ("SIGSTOP", SIGSTOP); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3678 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3679 #ifdef SIGTSTP |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3680 handle_signal ("SIGTSTP", SIGTSTP); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3681 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3682 #ifdef SIGCONT |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3683 handle_signal ("SIGCONT", SIGCONT); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3684 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3685 #ifdef SIGCHLD |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3686 handle_signal ("SIGCHLD", SIGCHLD); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3687 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3688 #ifdef SIGTTIN |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3689 handle_signal ("SIGTTIN", SIGTTIN); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3690 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3691 #ifdef SIGTTOU |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3692 handle_signal ("SIGTTOU", SIGTTOU); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3693 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3694 #ifdef SIGIO |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3695 handle_signal ("SIGIO", SIGIO); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3696 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3697 #ifdef SIGXCPU |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3698 handle_signal ("SIGXCPU", SIGXCPU); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3699 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3700 #ifdef SIGXFSZ |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3701 handle_signal ("SIGXFSZ", SIGXFSZ); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3702 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3703 #ifdef SIGVTALRM |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3704 handle_signal ("SIGVTALRM", SIGVTALRM); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3705 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3706 #ifdef SIGPROF |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3707 handle_signal ("SIGPROF", SIGPROF); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3708 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3709 #ifdef SIGWINCH |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3710 handle_signal ("SIGWINCH", SIGWINCH); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3711 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3712 #ifdef SIGINFO |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3713 handle_signal ("SIGINFO", SIGINFO); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3714 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3715 #ifdef SIGUSR1 |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3716 handle_signal ("SIGUSR1", SIGUSR1); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3717 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3718 #ifdef SIGUSR2 |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3719 handle_signal ("SIGUSR2", SIGUSR2); |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3720 #endif |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3721 else |
|
11148
117b32676686
(Fsignal_process): SIGCODE is a symbol, not a string.
Karl Heuer <kwzh@gnu.org>
parents:
11144
diff
changeset
|
3722 error ("Undefined signal name %s", name); |
|
11144
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3723 } |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3724 |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3725 #undef handle_signal |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3726 |
|
c2b689aeb934
(Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents:
10914
diff
changeset
|
3727 return make_number (kill (XINT (pid), XINT (sigcode))); |
| 578 | 3728 } |
| 3729 | |
| 3730 DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0, | |
| 3731 "Make PROCESS see end-of-file in its input.\n\ | |
| 3732 Eof comes after any text already sent to it.\n\ | |
| 808 | 3733 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\ |
|
7884
066a06dd3bd3
(Fprocess_send_eof): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7764
diff
changeset
|
3734 nil, indicating the current buffer's process.\n\ |
|
066a06dd3bd3
(Fprocess_send_eof): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7764
diff
changeset
|
3735 If PROCESS is a network connection, or is a process communicating\n\ |
|
066a06dd3bd3
(Fprocess_send_eof): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7764
diff
changeset
|
3736 through a pipe (as opposed to a pty), then you cannot send any more\n\ |
|
066a06dd3bd3
(Fprocess_send_eof): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7764
diff
changeset
|
3737 text to PROCESS after you call this function.") |
| 578 | 3738 (process) |
| 3739 Lisp_Object process; | |
| 3740 { | |
| 3741 Lisp_Object proc; | |
| 3742 | |
| 3743 proc = get_process (process); | |
|
2221
7edc78402205
(Fprocess_send_eof): Make sure proc is running.
Richard M. Stallman <rms@gnu.org>
parents:
2200
diff
changeset
|
3744 |
|
7edc78402205
(Fprocess_send_eof): Make sure proc is running.
Richard M. Stallman <rms@gnu.org>
parents:
2200
diff
changeset
|
3745 /* 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
|
3746 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
|
3747 update_status (XPROCESS (proc)); |
|
7edc78402205
(Fprocess_send_eof): Make sure proc is running.
Richard M. Stallman <rms@gnu.org>
parents:
2200
diff
changeset
|
3748 if (! EQ (XPROCESS (proc)->status, Qrun)) |
|
2222
d81c60c5f9ce
Fix typo in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
2221
diff
changeset
|
3749 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
|
3750 |
| 578 | 3751 #ifdef VMS |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3752 send_process (proc, "\032", 1, Qnil); /* ^z */ |
| 578 | 3753 #else |
| 3754 if (!NILP (XPROCESS (proc)->pty_flag)) | |
|
8063
30861f2f4f84
(send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
7937
diff
changeset
|
3755 send_process (proc, "\004", 1, Qnil); |
| 578 | 3756 else |
| 3757 { | |
|
18329
ddaafa596bf5
(Fprocess_send_eof): Prooperly conditionalize prev. change.
Richard M. Stallman <rms@gnu.org>
parents:
18328
diff
changeset
|
3758 #ifdef HAVE_SHUTDOWN |
|
18328
0295bbed3c39
(Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents:
18292
diff
changeset
|
3759 /* If this is a network connection, or socketpair is used |
|
0295bbed3c39
(Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents:
18292
diff
changeset
|
3760 for communication with the subprocess, call shutdown to cause EOF. |
|
0295bbed3c39
(Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents:
18292
diff
changeset
|
3761 (In some old system, shutdown to socketpair doesn't work. |
|
0295bbed3c39
(Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents:
18292
diff
changeset
|
3762 Then we just can't win.) */ |
|
0295bbed3c39
(Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents:
18292
diff
changeset
|
3763 if (NILP (XPROCESS (proc)->pid) |
|
0295bbed3c39
(Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents:
18292
diff
changeset
|
3764 || XINT (XPROCESS (proc)->outfd) == XINT (XPROCESS (proc)->infd)) |
|
0295bbed3c39
(Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents:
18292
diff
changeset
|
3765 shutdown (XINT (XPROCESS (proc)->outfd), 1); |
|
0295bbed3c39
(Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents:
18292
diff
changeset
|
3766 /* In case of socketpair, outfd == infd, so don't close it. */ |
|
0295bbed3c39
(Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents:
18292
diff
changeset
|
3767 if (XINT (XPROCESS (proc)->outfd) != XINT (XPROCESS (proc)->infd)) |
|
0295bbed3c39
(Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents:
18292
diff
changeset
|
3768 close (XINT (XPROCESS (proc)->outfd)); |
|
18329
ddaafa596bf5
(Fprocess_send_eof): Prooperly conditionalize prev. change.
Richard M. Stallman <rms@gnu.org>
parents:
18328
diff
changeset
|
3769 #else /* not HAVE_SHUTDOWN */ |
|
ddaafa596bf5
(Fprocess_send_eof): Prooperly conditionalize prev. change.
Richard M. Stallman <rms@gnu.org>
parents:
18328
diff
changeset
|
3770 close (XINT (XPROCESS (proc)->outfd)); |
|
ddaafa596bf5
(Fprocess_send_eof): Prooperly conditionalize prev. change.
Richard M. Stallman <rms@gnu.org>
parents:
18328
diff
changeset
|
3771 #endif /* not HAVE_SHUTDOWN */ |
|
9277
21f6120be5ba
(make_process, create_process, Fopen_network_stream, deactivate_process,
Karl Heuer <kwzh@gnu.org>
parents:
9115
diff
changeset
|
3772 XSETINT (XPROCESS (proc)->outfd, open (NULL_DEVICE, O_WRONLY)); |
| 578 | 3773 } |
| 3774 #endif /* VMS */ | |
| 3775 return process; | |
| 3776 } | |
| 3777 | |
| 3778 /* Kill all processes associated with `buffer'. | |
| 3779 If `buffer' is nil, kill all processes */ | |
| 3780 | |
|
20382
dbad9367d232
(create_process, deactivate_process, close_process_descs):
Andreas Schwab <schwab@suse.de>
parents:
20225
diff
changeset
|
3781 void |
| 578 | 3782 kill_buffer_processes (buffer) |
| 3783 Lisp_Object buffer; | |
| 3784 { | |
| 3785 Lisp_Object tail, proc; | |
| 3786 | |
|
9952
9daedd94a204
(NETCONN_P, kill_buffer_processes): Use the new type-test macros.
Karl Heuer <kwzh@gnu.org>
parents:
9882
diff
changeset
|
3787 for (tail = Vprocess_alist; GC_CONSP (tail); tail = XCONS (tail)->cdr) |
| 578 | 3788 { |
| 3789 proc = XCONS (XCONS (tail)->car)->cdr; | |
|
9952
9daedd94a204
(NETCONN_P, kill_buffer_processes): Use the new type-test macros.
Karl Heuer <kwzh@gnu.org>
parents:
9882
diff
changeset
|
3790 if (GC_PROCESSP (proc) |
| 578 | 3791 && (NILP (buffer) || EQ (XPROCESS (proc)->buffer, buffer))) |
| 3792 { | |
| 3793 if (NETCONN_P (proc)) | |
|
7764
fad00b057e50
(kill_buffer_processes): For net conn, use Fdelete_process.
Richard M. Stallman <rms@gnu.org>
parents:
7748
diff
changeset
|
3794 Fdelete_process (proc); |
|
5134
0a4e46e15304
(wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
4998
diff
changeset
|
3795 else if (XINT (XPROCESS (proc)->infd) >= 0) |
| 578 | 3796 process_send_signal (proc, SIGHUP, Qnil, 1); |
| 3797 } | |
| 3798 } | |
| 3799 } | |
| 3800 | |
| 3801 /* On receipt of a signal that a child status has changed, | |
| 3802 loop asking about children with changed statuses until | |
| 3803 the system says there are no more. | |
| 3804 All we do is change the status; | |
| 3805 we do not run sentinels or print notifications. | |
| 3806 That is saved for the next time keyboard input is done, | |
| 3807 in order to avoid timing errors. */ | |
| 3808 | |
| 3809 /** WARNING: this can be called during garbage collection. | |
| 3810 Therefore, it must not be fooled by the presence of mark bits in | |
| 3811 Lisp objects. */ | |
| 3812 | |
| 3813 /** USG WARNING: Although it is not obvious from the documentation | |
| 3814 in signal(2), on a USG system the SIGCLD handler MUST NOT call | |
| 3815 signal() before executing at least one wait(), otherwise the handler | |
| 3816 will be called again, resulting in an infinite loop. The relevant | |
| 3817 portion of the documentation reads "SIGCLD signals will be queued | |
| 3818 and the signal-catching function will be continually reentered until | |
| 3819 the queue is empty". Invoking signal() causes the kernel to reexamine | |
| 3820 the SIGCLD queue. Fred Fish, UniSoft Systems Inc. */ | |
| 3821 | |
| 3822 SIGTYPE | |
| 3823 sigchld_handler (signo) | |
| 3824 int signo; | |
| 3825 { | |
| 3826 int old_errno = errno; | |
| 3827 Lisp_Object proc; | |
| 3828 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
|
3829 extern EMACS_TIME *input_available_clear_time; |
| 578 | 3830 |
| 3831 #ifdef BSD4_1 | |
| 3832 extern int sigheld; | |
| 3833 sigheld |= sigbit (SIGCHLD); | |
| 3834 #endif | |
| 3835 | |
| 3836 while (1) | |
| 3837 { | |
| 3838 register int pid; | |
| 3839 WAITTYPE w; | |
| 3840 Lisp_Object tail; | |
| 3841 | |
| 3842 #ifdef WNOHANG | |
| 3843 #ifndef WUNTRACED | |
| 3844 #define WUNTRACED 0 | |
| 3845 #endif /* no WUNTRACED */ | |
| 3846 /* Keep trying to get a status until we get a definitive result. */ | |
| 3847 do | |
| 3848 { | |
| 3849 errno = 0; | |
| 3850 pid = wait3 (&w, WNOHANG | WUNTRACED, 0); | |
| 3851 } | |
| 3852 while (pid <= 0 && errno == EINTR); | |
| 3853 | |
| 3854 if (pid <= 0) | |
| 3855 { | |
| 3856 /* A real failure. We have done all our job, so return. */ | |
| 3857 | |
| 3858 /* USG systems forget handlers when they are used; | |
| 3859 must reestablish each time */ | |
|
16116
80a67b8f39e9
(create_process_1, sigchld_handler) [POSIX_SIGNALS]:
Richard M. Stallman <rms@gnu.org>
parents:
16076
diff
changeset
|
3860 #if defined (USG) && !defined (POSIX_SIGNALS) |
| 578 | 3861 signal (signo, sigchld_handler); /* WARNING - must come after wait3() */ |
| 3862 #endif | |
| 3863 #ifdef BSD4_1 | |
| 3864 sigheld &= ~sigbit (SIGCHLD); | |
| 3865 sigrelse (SIGCHLD); | |
| 3866 #endif | |
| 3867 errno = old_errno; | |
| 3868 return; | |
| 3869 } | |
| 3870 #else | |
| 3871 pid = wait (&w); | |
| 3872 #endif /* no WNOHANG */ | |
| 3873 | |
| 3874 /* Find the process that signaled us, and record its status. */ | |
| 3875 | |
| 3876 p = 0; | |
|
14496
beca72fdb420
(sigchld_handler): Use cleaner end-of-list test.
Karl Heuer <kwzh@gnu.org>
parents:
14458
diff
changeset
|
3877 for (tail = Vprocess_alist; CONSP (tail); tail = XCONS (tail)->cdr) |
| 578 | 3878 { |
| 3879 proc = XCONS (XCONS (tail)->car)->cdr; | |
| 3880 p = XPROCESS (proc); | |
| 3881 if (EQ (p->childp, Qt) && XFASTINT (p->pid) == pid) | |
| 3882 break; | |
| 3883 p = 0; | |
| 3884 } | |
| 3885 | |
| 3886 /* Look for an asynchronous process whose pid hasn't been filled | |
| 3887 in yet. */ | |
| 3888 if (p == 0) | |
|
14496
beca72fdb420
(sigchld_handler): Use cleaner end-of-list test.
Karl Heuer <kwzh@gnu.org>
parents:
14458
diff
changeset
|
3889 for (tail = Vprocess_alist; CONSP (tail); tail = XCONS (tail)->cdr) |
| 578 | 3890 { |
| 3891 proc = XCONS (XCONS (tail)->car)->cdr; | |
| 3892 p = XPROCESS (proc); | |
|
9115
59bc2d010b5f
(decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents:
9034
diff
changeset
|
3893 if (INTEGERP (p->pid) && XINT (p->pid) == -1) |
| 578 | 3894 break; |
| 3895 p = 0; | |
| 3896 } | |
| 3897 | |
| 3898 /* Change the status of the process that was found. */ | |
| 3899 if (p != 0) | |
| 3900 { | |
| 3901 union { int i; WAITTYPE wt; } u; | |
|
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
3902 int clear_desc_flag = 0; |
| 578 | 3903 |
| 3904 XSETINT (p->tick, ++process_tick); | |
| 3905 u.wt = w; | |
|
12324
41bd44279127
(sigchld_handler): Change XSETFASTINT to XSETINT.
Richard M. Stallman <rms@gnu.org>
parents:
12215
diff
changeset
|
3906 XSETINT (p->raw_status_low, u.i & 0xffff); |
|
41bd44279127
(sigchld_handler): Change XSETFASTINT to XSETINT.
Richard M. Stallman <rms@gnu.org>
parents:
12215
diff
changeset
|
3907 XSETINT (p->raw_status_high, u.i >> 16); |
| 578 | 3908 |
| 3909 /* If process has terminated, stop waiting for its output. */ | |
|
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
3910 if ((WIFSIGNALED (w) || WIFEXITED (w)) |
|
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
3911 && XINT (p->infd) >= 0) |
|
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
3912 clear_desc_flag = 1; |
|
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
3913 |
|
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
3914 /* We use clear_desc_flag to avoid a compiler bug in Microsoft C. */ |
|
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
3915 if (clear_desc_flag) |
|
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
3916 { |
|
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
3917 FD_CLR (XINT (p->infd), &input_wait_mask); |
|
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
3918 FD_CLR (XINT (p->infd), &non_keyboard_wait_mask); |
|
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
3919 } |
|
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3920 |
|
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3921 /* 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
|
3922 look around. */ |
|
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3923 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
|
3924 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0); |
| 578 | 3925 } |
| 3926 | |
| 3927 /* There was no asynchronous process found for that id. Check | |
| 3928 if we have a synchronous process. */ | |
| 3929 else | |
| 3930 { | |
| 3931 synch_process_alive = 0; | |
| 3932 | |
| 3933 /* Report the status of the synchronous process. */ | |
| 3934 if (WIFEXITED (w)) | |
| 3935 synch_process_retcode = WRETCODE (w); | |
| 3936 else if (WIFSIGNALED (w)) | |
|
5579
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
3937 { |
|
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
3938 int code = WTERMSIG (w); |
|
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
3939 char *signame = 0; |
|
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
3940 |
|
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
3941 if (code < NSIG) |
|
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
3942 { |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3943 #ifndef VMS |
|
9705
f7535deb913a
(status_message): Add a cast.
Richard M. Stallman <rms@gnu.org>
parents:
9697
diff
changeset
|
3944 /* Suppress warning if the table has const char *. */ |
|
f7535deb913a
(status_message): Add a cast.
Richard M. Stallman <rms@gnu.org>
parents:
9697
diff
changeset
|
3945 signame = (char *) sys_siglist[code]; |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3946 #else |
|
5579
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
3947 signame = sys_errlist[code]; |
|
1594
b476a97ad17e
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1569
diff
changeset
|
3948 #endif |
|
5579
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
3949 } |
|
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
3950 if (signame == 0) |
|
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
3951 signame = "unknown"; |
|
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
3952 |
|
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
3953 synch_process_death = signame; |
|
466bc8ef8e21
(sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents:
5561
diff
changeset
|
3954 } |
|
1925
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3955 |
|
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3956 /* 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
|
3957 look around. */ |
|
3ddb163a9201
* process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents:
1886
diff
changeset
|
3958 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
|
3959 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0); |
| 578 | 3960 } |
| 3961 | |
| 3962 /* On some systems, we must return right away. | |
| 3963 If any more processes want to signal us, we will | |
| 3964 get another signal. | |
| 3965 Otherwise (on systems that have WNOHANG), loop around | |
| 3966 to use up all the processes that have something to tell us. */ | |
|
9793
28267fcc61be
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents:
9705
diff
changeset
|
3967 #if defined (USG) && ! (defined (HPUX) && defined (WNOHANG)) || defined (WINDOWSNT) |
|
16116
80a67b8f39e9
(create_process_1, sigchld_handler) [POSIX_SIGNALS]:
Richard M. Stallman <rms@gnu.org>
parents:
16076
diff
changeset
|
3968 #if defined (USG) && ! defined (POSIX_SIGNALS) |
| 578 | 3969 signal (signo, sigchld_handler); |
| 3970 #endif | |
| 3971 errno = old_errno; | |
| 3972 return; | |
| 3973 #endif /* USG, but not HPUX with WNOHANG */ | |
| 3974 } | |
| 3975 } | |
| 3976 | |
| 3977 | |
| 3978 static Lisp_Object | |
| 3979 exec_sentinel_unwind (data) | |
| 3980 Lisp_Object data; | |
| 3981 { | |
| 3982 XPROCESS (XCONS (data)->car)->sentinel = XCONS (data)->cdr; | |
| 3983 return Qnil; | |
| 3984 } | |
| 3985 | |
|
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
3986 static Lisp_Object |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
3987 exec_sentinel_error_handler (error) |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
3988 Lisp_Object error; |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
3989 { |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
3990 cmd_error_internal (error, "error in process sentinel: "); |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
3991 Vinhibit_quit = Qt; |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
3992 update_echo_area (); |
|
11277
d4547e4b0aab
(read_process_output_error_handler)
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
3993 Fsleep_for (make_number (2), Qnil); |
|
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
3994 } |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
3995 |
| 578 | 3996 static void |
| 3997 exec_sentinel (proc, reason) | |
| 3998 Lisp_Object proc, reason; | |
| 3999 { | |
|
10914
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
4000 Lisp_Object sentinel, obuffer, odeactivate, okeymap; |
| 578 | 4001 register struct Lisp_Process *p = XPROCESS (proc); |
| 4002 int count = specpdl_ptr - specpdl; | |
|
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4003 int outer_running_asynch_code = running_asynch_code; |
| 578 | 4004 |
|
10914
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
4005 /* No need to gcpro these, because all we do with them later |
|
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
4006 is test them for EQness, and none of them should be a string. */ |
|
7454
8d9e41a175fa
(exec_sentinel): Don't deactivate the mark. Check for asynch buffer switch.
Karl Heuer <kwzh@gnu.org>
parents:
7414
diff
changeset
|
4007 odeactivate = Vdeactivate_mark; |
|
10914
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
4008 XSETBUFFER (obuffer, current_buffer); |
|
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
4009 okeymap = current_buffer->keymap; |
|
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
4010 |
| 578 | 4011 sentinel = p->sentinel; |
| 4012 if (NILP (sentinel)) | |
| 4013 return; | |
| 4014 | |
| 4015 /* Zilch the sentinel while it's running, to avoid recursive invocations; | |
| 4016 assure that it gets restored no matter how the sentinel exits. */ | |
| 4017 p->sentinel = Qnil; | |
| 4018 record_unwind_protect (exec_sentinel_unwind, Fcons (proc, sentinel)); | |
| 4019 /* Inhibit quit so that random quits don't screw up a running filter. */ | |
| 4020 specbind (Qinhibit_quit, Qt); | |
|
8231
5226ed89c1a6
(Qlast_nonmenu_event): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8063
diff
changeset
|
4021 specbind (Qlast_nonmenu_event, Qt); |
|
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4022 |
|
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4023 /* In case we get recursively called, |
|
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4024 and we already saved the match data nonrecursively, |
|
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4025 save the same match data in safely recursive fashion. */ |
|
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4026 if (outer_running_asynch_code) |
|
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4027 { |
|
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4028 Lisp_Object tem; |
|
16728
309a750fd5c0
(read_process_output, exec_sentinel):
Richard M. Stallman <rms@gnu.org>
parents:
16718
diff
changeset
|
4029 tem = Fmatch_data (Qnil, Qnil); |
|
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4030 restore_match_data (); |
|
16728
309a750fd5c0
(read_process_output, exec_sentinel):
Richard M. Stallman <rms@gnu.org>
parents:
16718
diff
changeset
|
4031 record_unwind_protect (Fstore_match_data, Fmatch_data (Qnil, Qnil)); |
|
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4032 Fstore_match_data (tem); |
|
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4033 } |
|
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4034 |
|
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4035 /* For speed, if a search happens within this code, |
|
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4036 save the match data in a special nonrecursive fashion. */ |
|
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potort? <pot@gnu.org>
parents:
9969
diff
changeset
|
4037 running_asynch_code = 1; |
|
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4038 |
|
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4039 internal_condition_case_1 (read_process_output_call, |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4040 Fcons (sentinel, |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4041 Fcons (proc, Fcons (reason, Qnil))), |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4042 !NILP (Vdebug_on_error) ? Qnil : Qerror, |
|
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4043 exec_sentinel_error_handler); |
|
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4044 |
|
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4045 /* If we saved the match data nonrecursively, restore it now. */ |
|
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potort? <pot@gnu.org>
parents:
9969
diff
changeset
|
4046 restore_match_data (); |
|
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4047 running_asynch_code = outer_running_asynch_code; |
|
7454
8d9e41a175fa
(exec_sentinel): Don't deactivate the mark. Check for asynch buffer switch.
Karl Heuer <kwzh@gnu.org>
parents:
7414
diff
changeset
|
4048 |
|
8d9e41a175fa
(exec_sentinel): Don't deactivate the mark. Check for asynch buffer switch.
Karl Heuer <kwzh@gnu.org>
parents:
7414
diff
changeset
|
4049 Vdeactivate_mark = odeactivate; |
|
12808
4db1f387e85f
(read_process_output, exec_sentinel): Call
Richard M. Stallman <rms@gnu.org>
parents:
12749
diff
changeset
|
4050 #if 0 |
|
10914
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
4051 if (! EQ (Fcurrent_buffer (), obuffer) |
|
413d44c0bd41
(exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents:
10744
diff
changeset
|
4052 || ! EQ (current_buffer->keymap, okeymap)) |
|
12808
4db1f387e85f
(read_process_output, exec_sentinel): Call
Richard M. Stallman <rms@gnu.org>
parents:
12749
diff
changeset
|
4053 #endif |
|
13159
2af96ac471bc
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
12808
diff
changeset
|
4054 /* But do it only if the caller is actually going to read events. |
|
2af96ac471bc
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
12808
diff
changeset
|
4055 Otherwise there's no need to make him wake up, and it could |
|
2af96ac471bc
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
12808
diff
changeset
|
4056 cause trouble (for example it would make Fsit_for return). */ |
|
2af96ac471bc
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
12808
diff
changeset
|
4057 if (waiting_for_user_input_p == -1) |
|
2af96ac471bc
(exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents:
12808
diff
changeset
|
4058 record_asynch_buffer_change (); |
|
7454
8d9e41a175fa
(exec_sentinel): Don't deactivate the mark. Check for asynch buffer switch.
Karl Heuer <kwzh@gnu.org>
parents:
7414
diff
changeset
|
4059 |
|
5561
fd7524d61a8d
(read_process_output): Supply second arg to unbind_to.
Richard M. Stallman <rms@gnu.org>
parents:
5548
diff
changeset
|
4060 unbind_to (count, Qnil); |
| 578 | 4061 } |
| 4062 | |
| 4063 /* Report all recent events of a change in process status | |
| 4064 (either run the sentinel or output a message). | |
| 4065 This is done while Emacs is waiting for keyboard input. */ | |
| 4066 | |
|
20382
dbad9367d232
(create_process, deactivate_process, close_process_descs):
Andreas Schwab <schwab@suse.de>
parents:
20225
diff
changeset
|
4067 void |
| 578 | 4068 status_notify () |
| 4069 { | |
| 4070 register Lisp_Object proc, buffer; | |
|
6515
df7438605e1e
(status_notify): Use assignment, not initialization.
Karl Heuer <kwzh@gnu.org>
parents:
6429
diff
changeset
|
4071 Lisp_Object tail, msg; |
| 578 | 4072 struct gcpro gcpro1, gcpro2; |
| 4073 | |
|
6515
df7438605e1e
(status_notify): Use assignment, not initialization.
Karl Heuer <kwzh@gnu.org>
parents:
6429
diff
changeset
|
4074 tail = Qnil; |
|
df7438605e1e
(status_notify): Use assignment, not initialization.
Karl Heuer <kwzh@gnu.org>
parents:
6429
diff
changeset
|
4075 msg = Qnil; |
| 578 | 4076 /* We need to gcpro tail; if read_process_output calls a filter |
| 4077 which deletes a process and removes the cons to which tail points | |
| 4078 from Vprocess_alist, and then causes a GC, tail is an unprotected | |
| 4079 reference. */ | |
| 4080 GCPRO2 (tail, msg); | |
| 4081 | |
|
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4082 /* Set this now, so that if new processes are created by sentinels |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4083 that we run, we get called again to handle their status changes. */ |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4084 update_tick = process_tick; |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4085 |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4086 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail)) |
| 578 | 4087 { |
|
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4088 Lisp_Object symbol; |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4089 register struct Lisp_Process *p; |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4090 |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4091 proc = Fcdr (Fcar (tail)); |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4092 p = XPROCESS (proc); |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4093 |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4094 if (XINT (p->tick) != XINT (p->update_tick)) |
| 578 | 4095 { |
|
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4096 XSETINT (p->update_tick, XINT (p->tick)); |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4097 |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4098 /* If process is still active, read any output that remains. */ |
|
16644
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4099 while (! EQ (p->filter, Qt) |
|
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4100 && XINT (p->infd) >= 0 |
|
3a93437adce1
(status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents:
16464
diff
changeset
|
4101 && read_process_output (proc, XINT (p->infd)) > 0); |
|
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4102 |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4103 buffer = p->buffer; |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4104 |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4105 /* Get the text to use for the message. */ |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4106 if (!NILP (p->raw_status_low)) |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4107 update_status (p); |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4108 msg = status_message (p->status); |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4109 |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4110 /* If process is terminated, deactivate it or delete it. */ |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4111 symbol = p->status; |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4112 if (CONSP (p->status)) |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4113 symbol = XCONS (p->status)->car; |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4114 |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4115 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit) |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4116 || EQ (symbol, Qclosed)) |
| 578 | 4117 { |
|
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4118 if (delete_exited_processes) |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4119 remove_process (proc); |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4120 else |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4121 deactivate_process (proc); |
| 578 | 4122 } |
|
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4123 |
|
16464
c1f19d8e5b80
(status_notify): Update p->tick again
Richard M. Stallman <rms@gnu.org>
parents:
16220
diff
changeset
|
4124 /* The actions above may have further incremented p->tick. |
|
c1f19d8e5b80
(status_notify): Update p->tick again
Richard M. Stallman <rms@gnu.org>
parents:
16220
diff
changeset
|
4125 So set p->update_tick again |
|
c1f19d8e5b80
(status_notify): Update p->tick again
Richard M. Stallman <rms@gnu.org>
parents:
16220
diff
changeset
|
4126 so that an error in the sentinel will not cause |
|
c1f19d8e5b80
(status_notify): Update p->tick again
Richard M. Stallman <rms@gnu.org>
parents:
16220
diff
changeset
|
4127 this code to be run again. */ |
|
c1f19d8e5b80
(status_notify): Update p->tick again
Richard M. Stallman <rms@gnu.org>
parents:
16220
diff
changeset
|
4128 XSETINT (p->update_tick, XINT (p->tick)); |
|
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4129 /* Now output the message suitably. */ |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4130 if (!NILP (p->sentinel)) |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4131 exec_sentinel (proc, msg); |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4132 /* Don't bother with a message in the buffer |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4133 when a process becomes runnable. */ |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4134 else if (!EQ (symbol, Qrun) && !NILP (buffer)) |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4135 { |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4136 Lisp_Object ro, tem; |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4137 struct buffer *old = current_buffer; |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4138 int opoint, opoint_byte; |
|
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4139 int before, before_byte; |
|
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4140 |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4141 ro = XBUFFER (buffer)->read_only; |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4142 |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4143 /* Avoid error if buffer is deleted |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4144 (probably that's why the process is dead, too) */ |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4145 if (NILP (XBUFFER (buffer)->name)) |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4146 continue; |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4147 Fset_buffer (buffer); |
|
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
4148 |
|
16039
855c8d8ba0f0
Change all references from point to PT.
Karl Heuer <kwzh@gnu.org>
parents:
15895
diff
changeset
|
4149 opoint = PT; |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4150 opoint_byte = PT_BYTE; |
|
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4151 /* Insert new output into buffer |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4152 at the current end-of-output marker, |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4153 thus preserving logical ordering of input and output. */ |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4154 if (XMARKER (p->mark)->buffer) |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4155 Fgoto_char (p->mark); |
|
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4156 else |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4157 SET_PT_BOTH (ZV, ZV_BYTE); |
|
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
4158 |
|
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
4159 before = PT; |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4160 before_byte = PT_BYTE; |
|
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4161 |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4162 tem = current_buffer->read_only; |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4163 current_buffer->read_only = Qnil; |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4164 insert_string ("\nProcess "); |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4165 Finsert (1, &p->name); |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4166 insert_string (" "); |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4167 Finsert (1, &msg); |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4168 current_buffer->read_only = tem; |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4169 set_marker_both (p->mark, p->buffer, PT, PT_BYTE); |
|
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4170 |
|
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
4171 if (opoint >= before) |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4172 SET_PT_BOTH (opoint + (PT - before), |
|
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4173 opoint_byte + (PT_BYTE - before_byte)); |
|
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
4174 else |
|
20551
5f17380c85f1
(status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents:
20433
diff
changeset
|
4175 SET_PT_BOTH (opoint, opoint_byte); |
|
17604
77b137e2d9a7
(read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents:
17247
diff
changeset
|
4176 |
|
12215
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4177 set_buffer_internal (old); |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4178 } |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4179 } |
|
2f1f03964f08
(status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents:
12132
diff
changeset
|
4180 } /* end for */ |
| 578 | 4181 |
| 4182 update_mode_lines++; /* in case buffers use %s in mode-line-format */ | |
| 4183 redisplay_preserve_echo_area (); | |
| 4184 | |
| 4185 UNGCPRO; | |
| 4186 } | |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4187 |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4188 |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4189 DEFUN ("set-process-coding-system", Fset_process_coding_system, |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4190 Sset_process_coding_system, 1, 3, 0, |
|
19133
a5f15ed1907d
(Fset_process_coding_system): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents:
19053
diff
changeset
|
4191 "Set coding systems of PROCESS to DECODING (input from the process) and\n\ |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4192 ENCODING (output to the process).") |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4193 (proc, decoding, encoding) |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4194 register Lisp_Object proc, decoding, encoding; |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4195 { |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4196 register struct Lisp_Process *p; |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4197 |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4198 CHECK_PROCESS (proc, 0); |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4199 p = XPROCESS (proc); |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4200 if (XINT (p->infd) < 0) |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4201 error ("Input file descriptor of %s closed", XSTRING (p->name)->data); |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4202 if (XINT (p->outfd) < 0) |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4203 error ("Output file descriptor of %s closed", XSTRING (p->name)->data); |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4204 |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4205 p->decode_coding_system = Fcheck_coding_system (decoding); |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4206 p->encode_coding_system = Fcheck_coding_system (encoding); |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4207 setup_coding_system (decoding, |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
4208 proc_decode_coding_system[XINT (p->infd)]); |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4209 setup_coding_system (encoding, |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
4210 proc_encode_coding_system[XINT (p->outfd)]); |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4211 |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4212 return Qnil; |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4213 } |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4214 |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4215 DEFUN ("process-coding-system", |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4216 Fprocess_coding_system, Sprocess_coding_system, 1, 1, 0, |
|
19133
a5f15ed1907d
(Fset_process_coding_system): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents:
19053
diff
changeset
|
4217 "Return a cons of coding systems for decoding and encoding of PROCESS.") |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4218 (proc) |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4219 register Lisp_Object proc; |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4220 { |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4221 CHECK_PROCESS (proc, 0); |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4222 return Fcons (XPROCESS (proc)->decode_coding_system, |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4223 XPROCESS (proc)->encode_coding_system); |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4224 } |
| 578 | 4225 |
|
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4226 /* The first time this is called, assume keyboard input comes from DESC |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4227 instead of from where we used to expect it. |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4228 Subsequent calls mean assume input keyboard can come from DESC |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4229 in addition to other places. */ |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4230 |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4231 static int add_keyboard_wait_descriptor_called_flag; |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4232 |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4233 void |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4234 add_keyboard_wait_descriptor (desc) |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4235 int desc; |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4236 { |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4237 if (! add_keyboard_wait_descriptor_called_flag) |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4238 FD_CLR (0, &input_wait_mask); |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4239 add_keyboard_wait_descriptor_called_flag = 1; |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4240 FD_SET (desc, &input_wait_mask); |
|
17224
dd2545e79add
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
17110
diff
changeset
|
4241 FD_SET (desc, &non_process_wait_mask); |
|
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4242 if (desc > max_keyboard_desc) |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4243 max_keyboard_desc = desc; |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4244 } |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4245 |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4246 /* From now on, do not expect DESC to give keyboard input. */ |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4247 |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4248 void |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4249 delete_keyboard_wait_descriptor (desc) |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4250 int desc; |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4251 { |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4252 int fd; |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4253 int lim = max_keyboard_desc; |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4254 |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4255 FD_CLR (desc, &input_wait_mask); |
|
17224
dd2545e79add
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
17110
diff
changeset
|
4256 FD_CLR (desc, &non_process_wait_mask); |
|
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4257 |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4258 if (desc == max_keyboard_desc) |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4259 for (fd = 0; fd < lim; fd++) |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4260 if (FD_ISSET (fd, &input_wait_mask) |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4261 && !FD_ISSET (fd, &non_keyboard_wait_mask)) |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4262 max_keyboard_desc = fd; |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4263 } |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4264 |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4265 /* Return nonzero if *MASK has a bit set |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4266 that corresponds to one of the keyboard input descriptors. */ |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4267 |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4268 int |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4269 keyboard_bit_set (mask) |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4270 SELECT_TYPE *mask; |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4271 { |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4272 int fd; |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4273 |
|
12541
33a4586124e9
(keyboard_bit_set): Fix one-off in loop end.
Karl Heuer <kwzh@gnu.org>
parents:
12491
diff
changeset
|
4274 for (fd = 0; fd <= max_keyboard_desc; fd++) |
|
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4275 if (FD_ISSET (fd, mask) && FD_ISSET (fd, &input_wait_mask) |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4276 && !FD_ISSET (fd, &non_keyboard_wait_mask)) |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4277 return 1; |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4278 |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4279 return 0; |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4280 } |
|
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4281 |
| 578 | 4282 init_process () |
| 4283 { | |
| 4284 register int i; | |
| 4285 | |
| 4286 #ifdef SIGCHLD | |
| 4287 #ifndef CANNOT_DUMP | |
| 4288 if (! noninteractive || initialized) | |
| 4289 #endif | |
| 4290 signal (SIGCHLD, sigchld_handler); | |
| 4291 #endif | |
| 4292 | |
| 4293 FD_ZERO (&input_wait_mask); | |
|
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4294 FD_ZERO (&non_keyboard_wait_mask); |
|
17224
dd2545e79add
(wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents:
17110
diff
changeset
|
4295 FD_ZERO (&non_process_wait_mask); |
|
7044
7032d07f5ad9
(max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7013
diff
changeset
|
4296 max_process_desc = 0; |
|
4682
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
4297 |
|
9686
cd788aa8cb2a
Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents:
9334
diff
changeset
|
4298 FD_SET (0, &input_wait_mask); |
|
4682
c4d471244116
(keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4639
diff
changeset
|
4299 |
| 578 | 4300 Vprocess_alist = Qnil; |
| 4301 for (i = 0; i < MAXDESC; i++) | |
| 4302 { | |
| 4303 chan_process[i] = Qnil; | |
| 4304 proc_buffered_char[i] = -1; | |
| 4305 } | |
|
17110
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
4306 bzero (proc_decode_coding_system, sizeof proc_decode_coding_system); |
|
3a348cbb354f
(Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents:
17041
diff
changeset
|
4307 bzero (proc_encode_coding_system, sizeof proc_encode_coding_system); |
| 578 | 4308 } |
|
4231
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
4309 |
| 578 | 4310 syms_of_process () |
| 4311 { | |
| 4312 Qprocessp = intern ("processp"); | |
| 4313 staticpro (&Qprocessp); | |
| 4314 Qrun = intern ("run"); | |
| 4315 staticpro (&Qrun); | |
| 4316 Qstop = intern ("stop"); | |
| 4317 staticpro (&Qstop); | |
| 4318 Qsignal = intern ("signal"); | |
| 4319 staticpro (&Qsignal); | |
| 4320 | |
| 4321 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it | |
| 4322 here again. | |
| 4323 | |
| 4324 Qexit = intern ("exit"); | |
| 4325 staticpro (&Qexit); */ | |
| 4326 | |
| 4327 Qopen = intern ("open"); | |
| 4328 staticpro (&Qopen); | |
| 4329 Qclosed = intern ("closed"); | |
| 4330 staticpro (&Qclosed); | |
| 4331 | |
|
8231
5226ed89c1a6
(Qlast_nonmenu_event): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8063
diff
changeset
|
4332 Qlast_nonmenu_event = intern ("last-nonmenu-event"); |
|
5226ed89c1a6
(Qlast_nonmenu_event): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8063
diff
changeset
|
4333 staticpro (&Qlast_nonmenu_event); |
|
5226ed89c1a6
(Qlast_nonmenu_event): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8063
diff
changeset
|
4334 |
| 578 | 4335 staticpro (&Vprocess_alist); |
| 4336 | |
| 4337 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes, | |
| 4338 "*Non-nil means delete processes immediately when they exit.\n\ | |
| 4339 nil means don't delete them until `list-processes' is run."); | |
| 4340 | |
| 4341 delete_exited_processes = 1; | |
| 4342 | |
| 4343 DEFVAR_LISP ("process-connection-type", &Vprocess_connection_type, | |
| 4344 "Control type of device used to communicate with subprocesses.\n\ | |
|
7220
a33eb16cab9d
(Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents:
7157
diff
changeset
|
4345 Values are nil to use a pipe, or t or `pty' to use a pty.\n\ |
|
a33eb16cab9d
(Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents:
7157
diff
changeset
|
4346 The value has no effect if the system has no ptys or if all ptys are busy:\n\ |
|
a33eb16cab9d
(Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents:
7157
diff
changeset
|
4347 then a pipe is used in any case.\n\ |
|
a33eb16cab9d
(Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents:
7157
diff
changeset
|
4348 The value takes effect when `start-process' is called."); |
| 578 | 4349 Vprocess_connection_type = Qt; |
| 4350 | |
| 4351 defsubr (&Sprocessp); | |
| 4352 defsubr (&Sget_process); | |
| 4353 defsubr (&Sget_buffer_process); | |
| 4354 defsubr (&Sdelete_process); | |
| 4355 defsubr (&Sprocess_status); | |
| 4356 defsubr (&Sprocess_exit_status); | |
| 4357 defsubr (&Sprocess_id); | |
| 4358 defsubr (&Sprocess_name); | |
|
9030
b14532c71632
(exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8570
diff
changeset
|
4359 defsubr (&Sprocess_tty_name); |
| 578 | 4360 defsubr (&Sprocess_command); |
| 4361 defsubr (&Sset_process_buffer); | |
| 4362 defsubr (&Sprocess_buffer); | |
| 4363 defsubr (&Sprocess_mark); | |
| 4364 defsubr (&Sset_process_filter); | |
| 4365 defsubr (&Sprocess_filter); | |
| 4366 defsubr (&Sset_process_sentinel); | |
|
16058
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
4367 defsubr (&Sprocess_sentinel); |
|
6830
bcaddbe53068
(Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6823
diff
changeset
|
4368 defsubr (&Sset_process_window_size); |
| 578 | 4369 defsubr (&Sprocess_kill_without_query); |
|
16058
924aeb9ed7c3
(Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16053
diff
changeset
|
4370 defsubr (&Sprocess_contact); |
| 578 | 4371 defsubr (&Slist_processes); |
| 4372 defsubr (&Sprocess_list); | |
| 4373 defsubr (&Sstart_process); | |
| 4374 #ifdef HAVE_SOCKETS | |
| 4375 defsubr (&Sopen_network_stream); | |
| 4376 #endif /* HAVE_SOCKETS */ | |
| 4377 defsubr (&Saccept_process_output); | |
| 4378 defsubr (&Sprocess_send_region); | |
| 4379 defsubr (&Sprocess_send_string); | |
| 4380 defsubr (&Sinterrupt_process); | |
| 4381 defsubr (&Skill_process); | |
| 4382 defsubr (&Squit_process); | |
| 4383 defsubr (&Sstop_process); | |
| 4384 defsubr (&Scontinue_process); | |
| 4385 defsubr (&Sprocess_send_eof); | |
| 4386 defsubr (&Ssignal_process); | |
| 4387 defsubr (&Swaiting_for_user_input_p); | |
| 4388 /* defsubr (&Sprocess_connection); */ | |
|
17041
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4389 defsubr (&Sset_process_coding_system); |
|
b61cbe595be5
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16780
diff
changeset
|
4390 defsubr (&Sprocess_coding_system); |
| 578 | 4391 } |
| 4392 | |
| 588 | 4393 |
| 4394 #else /* not subprocesses */ | |
| 4395 | |
| 4396 #include <sys/types.h> | |
| 4397 #include <errno.h> | |
| 4398 | |
| 4399 #include "lisp.h" | |
| 4400 #include "systime.h" | |
| 4401 #include "termopts.h" | |
|
12132
017f32786ed3
[!subprocesses]: Include sysselect.h.
Karl Heuer <kwzh@gnu.org>
parents:
11926
diff
changeset
|
4402 #include "sysselect.h" |
| 588 | 4403 |
| 765 | 4404 extern int frame_garbaged; |
| 588 | 4405 |
|
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4406 extern EMACS_TIME timer_check (); |
|
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4407 extern int timers_run; |
| 588 | 4408 |
| 4409 /* As described above, except assuming that there are no subprocesses: | |
| 4410 | |
| 4411 Wait for timeout to elapse and/or keyboard input to be available. | |
| 4412 | |
| 4413 time_limit is: | |
| 4414 timeout in seconds, or | |
| 4415 zero for no limit, or | |
| 4416 -1 means gobble data immediately available but don't wait for any. | |
| 4417 | |
| 650 | 4418 read_kbd is a Lisp_Object: |
| 588 | 4419 0 to ignore keyboard input, or |
| 4420 1 to return when input is available, or | |
| 4421 -1 means caller will actually read the input, so don't throw to | |
| 4422 the quit handler. | |
|
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4423 a cons cell, meaning wait until its car is non-nil |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4424 (and gobble terminal input into the buffer if any arrives), or |
| 588 | 4425 We know that read_kbd will never be a Lisp_Process, since |
| 4426 `subprocesses' isn't defined. | |
| 4427 | |
| 4428 do_display != 0 means redisplay should be done to show subprocess | |
|
6429
1dbe24a029fd
(wait_reading_process_input, both versions): Don't call
Richard M. Stallman <rms@gnu.org>
parents:
6393
diff
changeset
|
4429 output that arrives. |
| 588 | 4430 |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3510
diff
changeset
|
4431 Return true iff we received input from any process. */ |
| 588 | 4432 |
| 4433 int | |
| 4434 wait_reading_process_input (time_limit, microsecs, read_kbd, do_display) | |
| 650 | 4435 int time_limit, microsecs; |
| 4436 Lisp_Object read_kbd; | |
| 4437 int do_display; | |
| 588 | 4438 { |
|
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4439 EMACS_TIME end_time, timeout; |
|
14278
3562c5f43780
(wait_reading_process_input) [not subprocesses]: Do
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
4440 SELECT_TYPE waitchannels; |
|
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4441 int xerrno; |
|
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4442 Lisp_Object *wait_for_cell = 0; |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4443 |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4444 /* If waiting for non-nil in a cell, record where. */ |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4445 if (CONSP (read_kbd)) |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4446 { |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4447 wait_for_cell = &XCONS (read_kbd)->car; |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4448 XSETFASTINT (read_kbd, 0); |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4449 } |
| 588 | 4450 |
| 4451 /* What does time_limit really mean? */ | |
| 4452 if (time_limit || microsecs) | |
| 4453 { | |
| 4454 if (time_limit == -1) | |
| 4455 /* In fact, it's zero. */ | |
| 4456 EMACS_SET_SECS_USECS (timeout, 0, 0); | |
| 4457 else | |
| 4458 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs); | |
| 4459 | |
| 4460 /* How far in the future is that? */ | |
| 4461 EMACS_GET_TIME (end_time); | |
| 4462 EMACS_ADD_TIME (end_time, end_time, timeout); | |
| 4463 } | |
| 4464 else | |
| 4465 /* It's infinite. */ | |
|
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4466 EMACS_SET_SECS_USECS (timeout, 100000, 0); |
| 588 | 4467 |
| 4468 /* Turn off periodic alarms (in case they are in use) | |
| 4469 because the select emulator uses alarms. */ | |
| 4470 stop_polling (); | |
| 4471 | |
| 4472 for (;;) | |
| 4473 { | |
| 4474 int nfds; | |
|
14802
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
4475 int timeout_reduced_for_timers = 0; |
| 588 | 4476 |
| 4477 /* If calling from keyboard input, do not quit | |
| 4478 since we want to return C-g as an input character. | |
| 4479 Otherwise, do pending quit if requested. */ | |
| 650 | 4480 if (XINT (read_kbd) >= 0) |
| 588 | 4481 QUIT; |
| 4482 | |
|
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4483 /* Exit now if the cell we're waiting for became non-nil. */ |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4484 if (wait_for_cell && ! NILP (*wait_for_cell)) |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4485 break; |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4486 |
|
14802
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
4487 /* Compute time from now till when time limit is up */ |
|
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
4488 /* Exit if already run out */ |
|
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4489 if (time_limit > 0 || microsecs) |
| 588 | 4490 { |
|
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4491 EMACS_GET_TIME (timeout); |
|
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4492 EMACS_SUB_TIME (timeout, end_time, timeout); |
|
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4493 if (EMACS_TIME_NEG_P (timeout)) |
| 588 | 4494 break; |
| 4495 } | |
| 4496 | |
|
14802
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
4497 /* If our caller will not immediately handle keyboard events, |
|
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
4498 run timer events directly. |
|
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
4499 (Callers that will immediately read keyboard events |
|
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
4500 call timer_delay on their own.) */ |
|
15064
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
4501 if (! wait_for_cell) |
|
14802
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
4502 { |
|
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
4503 EMACS_TIME timer_delay; |
|
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4504 int old_timers_run; |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4505 |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4506 retry: |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4507 old_timers_run = timers_run; |
|
14802
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
4508 timer_delay = timer_check (1); |
|
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
4509 if (timers_run != old_timers_run && do_display) |
|
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4510 { |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4511 redisplay_preserve_echo_area (); |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4512 /* We must retry, since a timer may have requeued itself |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4513 and that could alter the time delay. */ |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4514 goto retry; |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4515 } |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4516 |
|
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4517 if (! EMACS_TIME_NEG_P (timer_delay) && time_limit != -1) |
|
14802
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
4518 { |
|
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
4519 EMACS_TIME difference; |
|
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4520 EMACS_SUB_TIME (difference, timer_delay, timeout); |
|
14802
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
4521 if (EMACS_TIME_NEG_P (difference)) |
|
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
4522 { |
|
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4523 timeout = timer_delay; |
|
14802
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
4524 timeout_reduced_for_timers = 1; |
|
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
4525 } |
|
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
4526 } |
|
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
4527 } |
|
45827a5afe4d
[!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents:
14785
diff
changeset
|
4528 |
| 588 | 4529 /* Cause C-g and alarm signals to take immediate action, |
| 4530 and cause input available signals to zero out timeout. */ | |
| 650 | 4531 if (XINT (read_kbd) < 0) |
| 588 | 4532 set_waiting_for_input (&timeout); |
| 4533 | |
|
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4534 /* Wait till there is something to do. */ |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4535 |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4536 if (! XINT (read_kbd) && wait_for_cell == 0) |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4537 FD_ZERO (&waitchannels); |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4538 else |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4539 FD_SET (0, &waitchannels); |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4540 |
| 765 | 4541 /* If a frame has been newly mapped and needs updating, |
| 588 | 4542 reprocess its display stuff. */ |
|
6429
1dbe24a029fd
(wait_reading_process_input, both versions): Don't call
Richard M. Stallman <rms@gnu.org>
parents:
6393
diff
changeset
|
4543 if (frame_garbaged && do_display) |
|
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4544 { |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4545 clear_waiting_for_input (); |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4546 redisplay_preserve_echo_area (); |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4547 if (XINT (read_kbd) < 0) |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4548 set_waiting_for_input (&timeout); |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4549 } |
| 588 | 4550 |
|
15025
e5f54fd1c352
(wait_reading_process_input) [!subprocesses]:
Richard M. Stallman <rms@gnu.org>
parents:
15021
diff
changeset
|
4551 if (XINT (read_kbd) && detect_input_pending ()) |
|
e5f54fd1c352
(wait_reading_process_input) [!subprocesses]:
Richard M. Stallman <rms@gnu.org>
parents:
15021
diff
changeset
|
4552 { |
|
e5f54fd1c352
(wait_reading_process_input) [!subprocesses]:
Richard M. Stallman <rms@gnu.org>
parents:
15021
diff
changeset
|
4553 nfds = 0; |
|
e5f54fd1c352
(wait_reading_process_input) [!subprocesses]:
Richard M. Stallman <rms@gnu.org>
parents:
15021
diff
changeset
|
4554 FD_ZERO (&waitchannels); |
|
e5f54fd1c352
(wait_reading_process_input) [!subprocesses]:
Richard M. Stallman <rms@gnu.org>
parents:
15021
diff
changeset
|
4555 } |
|
e5f54fd1c352
(wait_reading_process_input) [!subprocesses]:
Richard M. Stallman <rms@gnu.org>
parents:
15021
diff
changeset
|
4556 else |
|
e5f54fd1c352
(wait_reading_process_input) [!subprocesses]:
Richard M. Stallman <rms@gnu.org>
parents:
15021
diff
changeset
|
4557 nfds = select (1, &waitchannels, (SELECT_TYPE *)0, (SELECT_TYPE *)0, |
|
e5f54fd1c352
(wait_reading_process_input) [!subprocesses]:
Richard M. Stallman <rms@gnu.org>
parents:
15021
diff
changeset
|
4558 &timeout); |
|
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4559 |
|
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4560 xerrno = errno; |
| 588 | 4561 |
| 4562 /* Make C-g and alarm signals set flags again */ | |
| 4563 clear_waiting_for_input (); | |
| 4564 | |
| 4565 /* If we woke up due to SIGWINCH, actually change size now. */ | |
| 4566 do_pending_window_change (); | |
| 4567 | |
|
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4568 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers) |
|
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4569 /* We waited the full specified time, so return now. */ |
|
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4570 break; |
|
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4571 |
| 588 | 4572 if (nfds == -1) |
| 4573 { | |
| 4574 /* If the system call was interrupted, then go around the | |
| 4575 loop again. */ | |
|
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4576 if (xerrno == EINTR) |
|
14278
3562c5f43780
(wait_reading_process_input) [not subprocesses]: Do
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
4577 FD_ZERO (&waitchannels); |
|
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4578 else |
|
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4579 error ("select error: %s", strerror (xerrno)); |
| 588 | 4580 } |
| 4581 #ifdef sun | |
| 4582 else if (nfds > 0 && (waitchannels & 1) && interrupt_input) | |
| 4583 /* System sometimes fails to deliver SIGIO. */ | |
| 4584 kill (getpid (), SIGIO); | |
| 4585 #endif | |
|
3915
55ed7a65746e
(wait_reading_process_input): Use SIGIO only if defined.
Richard M. Stallman <rms@gnu.org>
parents:
3826
diff
changeset
|
4586 #ifdef SIGIO |
| 650 | 4587 if (XINT (read_kbd) && interrupt_input && (waitchannels & 1)) |
|
14736
b17ec81a6294
(wait_reading_process_input): Use getpid when generating SIGIO.
Richard M. Stallman <rms@gnu.org>
parents:
14671
diff
changeset
|
4588 kill (getpid (), SIGIO); |
|
3915
55ed7a65746e
(wait_reading_process_input): Use SIGIO only if defined.
Richard M. Stallman <rms@gnu.org>
parents:
3826
diff
changeset
|
4589 #endif |
| 588 | 4590 |
|
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4591 /* Check for keyboard input */ |
|
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4592 |
|
15064
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
4593 if ((XINT (read_kbd) != 0) |
|
14806
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4594 && detect_input_pending_run_timers (do_display)) |
|
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4595 { |
|
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4596 swallow_events (do_display); |
|
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4597 if (detect_input_pending_run_timers (do_display)) |
|
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4598 break; |
|
232b90ad50e8
(wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents:
14802
diff
changeset
|
4599 } |
|
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4600 |
|
15064
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
4601 /* If wait_for_cell. check for keyboard input |
|
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
4602 but don't run any timers. |
|
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
4603 ??? (It seems wrong to me to check for keyboard |
|
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
4604 input at all when wait_for_cell, but the code |
|
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
4605 has been this way since July 1994. |
|
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
4606 Try changing this after version 19.31.) */ |
|
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
4607 if (wait_for_cell |
|
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
4608 && detect_input_pending ()) |
|
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
4609 { |
|
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
4610 swallow_events (do_display); |
|
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
4611 if (detect_input_pending ()) |
|
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
4612 break; |
|
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
4613 } |
|
fb0f2804c34a
(wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents:
15025
diff
changeset
|
4614 |
|
15021
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4615 /* Exit now if the cell we're waiting for became non-nil. */ |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4616 if (wait_for_cell && ! NILP (*wait_for_cell)) |
|
af36df262fc5
(wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents:
14998
diff
changeset
|
4617 break; |
| 588 | 4618 } |
| 4619 | |
|
2120
fc3cdca22f8d
* process.c (process_send_signal): In the TERMIOS code for sending
Jim Blandy <jimb@redhat.com>
parents:
1925
diff
changeset
|
4620 start_polling (); |
|
fc3cdca22f8d
* process.c (process_send_signal): In the TERMIOS code for sending
Jim Blandy <jimb@redhat.com>
parents:
1925
diff
changeset
|
4621 |
| 588 | 4622 return 0; |
| 4623 } | |
| 4624 | |
| 4625 | |
| 4626 DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0, | |
|
6345
862304c3b015
(Fget_buffer_process): Fix typo in comment.
Karl Heuer <kwzh@gnu.org>
parents:
6313
diff
changeset
|
4627 /* Don't confuse make-docfile by having two doc strings for this function. |
|
4231
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
4628 make-docfile does not pay attention to #if, for good reason! */ |
|
91a883c56382
(Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents:
4057
diff
changeset
|
4629 0) |
| 588 | 4630 (name) |
| 4631 register Lisp_Object name; | |
| 4632 { | |
| 4633 return Qnil; | |
| 4634 } | |
| 4635 | |
| 4636 /* Kill all processes associated with `buffer'. | |
| 4637 If `buffer' is nil, kill all processes. | |
| 4638 Since we have no subprocesses, this does nothing. */ | |
| 4639 | |
| 4640 kill_buffer_processes (buffer) | |
| 4641 Lisp_Object buffer; | |
| 4642 { | |
| 4643 } | |
| 4644 | |
| 4645 init_process () | |
| 4646 { | |
| 4647 } | |
| 4648 | |
| 4649 syms_of_process () | |
| 4650 { | |
| 4651 defsubr (&Sget_buffer_process); | |
| 4652 } | |
| 4653 | |
| 4654 | |
| 4655 #endif /* not subprocesses */ |
