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