annotate src/process.c @ 76718:217f3f19f471

revert the last patch to the original fix: sleep BEFORE the first wait it appears to be absolutely necessary for prevention of the load surge
author Sam Steingold <sds@gnu.org>
date Sun, 25 Mar 2007 03:03:40 +0000
parents 2fb8fb4a9bab
children c39f6a4ef598
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1 /* Asynchronous subprocess control for GNU Emacs.
64770
a0d1312ede66 Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 64084
diff changeset
2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995,
a0d1312ede66 Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 64084
diff changeset
3 1996, 1998, 1999, 2001, 2002, 2003, 2004,
75348
3d45362f1d38 Add 2007 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 75220
diff changeset
4 2005, 2006, 2007 Free Software Foundation, Inc.
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6 This file is part of GNU Emacs.
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
8 GNU Emacs is free software; you can redistribute it and/or modify
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
9 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
10 the Free Software Foundation; either version 2, or (at your option)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
11 any later version.
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
12
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
13 GNU Emacs is distributed in the hope that it will be useful,
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
16 GNU General Public License for more details.
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
17
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
19 along with GNU Emacs; see the file COPYING. If not, write to
64084
a8fa7c632ee4 Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 63701
diff changeset
20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
a8fa7c632ee4 Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 63701
diff changeset
21 Boston, MA 02110-1301, USA. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
22
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
23
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
24 #include <config.h>
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
25 #include <signal.h>
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
26
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
27 /* This file is split into two parts by the following preprocessor
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
28 conditional. The 'then' clause contains all of the support for
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
29 asynchronous subprocesses. The 'else' clause contains stub
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
30 versions of some of the asynchronous subprocess routines that are
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
31 often called elsewhere in Emacs, so we don't have to #ifdef the
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
32 sections that call them. */
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
33
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
34
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
35 #ifdef subprocesses
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
36
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
37 #include <stdio.h>
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
38 #include <errno.h>
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
39 #include <setjmp.h>
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
40 #include <sys/types.h> /* some typedefs are used in sys/file.h */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
41 #include <sys/file.h>
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
42 #include <sys/stat.h>
68146
e5c85a134e67 [HAVE_INTTYPES_H]: Include inttypes.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 68041
diff changeset
43 #ifdef HAVE_INTTYPES_H
e5c85a134e67 [HAVE_INTTYPES_H]: Include inttypes.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 68041
diff changeset
44 #include <inttypes.h>
e5c85a134e67 [HAVE_INTTYPES_H]: Include inttypes.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 68041
diff changeset
45 #endif
6158
6b81b2575071 Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents: 5891
diff changeset
46 #ifdef HAVE_UNISTD_H
6b81b2575071 Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents: 5891
diff changeset
47 #include <unistd.h>
6b81b2575071 Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents: 5891
diff changeset
48 #endif
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
49
29035
95e767e77a88 (toplevel) [UNIX98_PTYS]: Include stdlib.h.
Gerd Moellmann <gerd@gnu.org>
parents: 29017
diff changeset
50 #if defined(WINDOWSNT) || defined(UNIX98_PTYS)
9793
28267fcc61be Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents: 9705
diff changeset
51 #include <stdlib.h>
28267fcc61be Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents: 9705
diff changeset
52 #include <fcntl.h>
28267fcc61be Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents: 9705
diff changeset
53 #endif /* not WINDOWSNT */
28267fcc61be Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents: 9705
diff changeset
54
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
55 #ifdef HAVE_SOCKETS /* TCP connection support, if kernel can do it */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
56 #include <sys/socket.h>
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
57 #include <netdb.h>
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
58 #include <netinet/in.h>
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
59 #include <arpa/inet.h>
12749
ce48ec025b0a Maybe include net/errno.h.
Richard M. Stallman <rms@gnu.org>
parents: 12648
diff changeset
60 #ifdef NEED_NET_ERRNO_H
ce48ec025b0a Maybe include net/errno.h.
Richard M. Stallman <rms@gnu.org>
parents: 12648
diff changeset
61 #include <net/errno.h>
ce48ec025b0a Maybe include net/errno.h.
Richard M. Stallman <rms@gnu.org>
parents: 12648
diff changeset
62 #endif /* NEED_NET_ERRNO_H */
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
63
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
64 /* Are local (unix) sockets supported? */
43999
177616cff62b Define HAVE_LOCAL_SOCKETS based on HAVE_SYS_UN_H.
Kim F. Storm <storm@cua.dk>
parents: 43995
diff changeset
65 #if defined (HAVE_SYS_UN_H) && !defined (NO_SOCKETS_IN_FILE_SYSTEM)
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
66 #if !defined (AF_LOCAL) && defined (AF_UNIX)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
67 #define AF_LOCAL AF_UNIX
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
68 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
69 #ifdef AF_LOCAL
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
70 #define HAVE_LOCAL_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
71 #include <sys/un.h>
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
72 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
73 #endif
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
74 #endif /* HAVE_SOCKETS */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
75
26313
9275b6adbad2 Undo last change and define _GNU_SOURCE before config.h.
Dave Love <fx@gnu.org>
parents: 26311
diff changeset
76 /* TERM is a poor-man's SLIP, used on GNU/Linux. */
4914
56bc426b1eb4 [TERM]: Include client.h.
Richard M. Stallman <rms@gnu.org>
parents: 4883
diff changeset
77 #ifdef TERM
56bc426b1eb4 [TERM]: Include client.h.
Richard M. Stallman <rms@gnu.org>
parents: 4883
diff changeset
78 #include <client.h>
56bc426b1eb4 [TERM]: Include client.h.
Richard M. Stallman <rms@gnu.org>
parents: 4883
diff changeset
79 #endif
56bc426b1eb4 [TERM]: Include client.h.
Richard M. Stallman <rms@gnu.org>
parents: 4883
diff changeset
80
7238
c9598edda1a2 (IN_ADDR, NUMERIC_ADDR_ERROR): Made conditional on HAVE_BROKEN_INET_ADDR.
Paul Reilly <pmr@pajato.com>
parents: 7220
diff changeset
81 /* 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
82 #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
83 #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
84 #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
85 #else
3cd3a39f98f4 (IN_ADDR, NUMERIC_ADDR_ERROR): New macros (two versions).
Richard M. Stallman <rms@gnu.org>
parents: 4994
diff changeset
86 #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
87 #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
88 #endif
3cd3a39f98f4 (IN_ADDR, NUMERIC_ADDR_ERROR): New macros (two versions).
Richard M. Stallman <rms@gnu.org>
parents: 4994
diff changeset
89
16220
02044b05d8e0 Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents: 16206
diff changeset
90 #if defined(BSD_SYSTEM) || defined(STRIDE)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
91 #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
92 #if !defined (O_NDELAY) && defined (HAVE_PTYS) && !defined(USG5)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
93 #include <fcntl.h>
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
94 #endif /* HAVE_PTYS and no O_NDELAY */
16220
02044b05d8e0 Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents: 16206
diff changeset
95 #endif /* BSD_SYSTEM || STRIDE */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
96
5240
eed870591987 (Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents: 5239
diff changeset
97 #ifdef BROKEN_O_NONBLOCK
eed870591987 (Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents: 5239
diff changeset
98 #undef O_NONBLOCK
eed870591987 (Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents: 5239
diff changeset
99 #endif /* BROKEN_O_NONBLOCK */
eed870591987 (Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents: 5239
diff changeset
100
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
101 #ifdef NEED_BSDTTY
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
102 #include <bsdtty.h>
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
103 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
104
52503
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
105 /* Can we use SIOCGIFCONF and/or SIOCGIFADDR */
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
106 #ifdef HAVE_SOCKETS
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
107 #if defined(HAVE_SYS_IOCTL_H) && defined(HAVE_NET_IF_H)
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
108 /* sys/ioctl.h may have been included already */
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
109 #ifndef SIOCGIFADDR
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
110 #include <sys/ioctl.h>
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
111 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
112 #include <net/if.h>
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
113 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
114 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
115
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
116 #ifdef IRIS
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
117 #include <sys/sysmacros.h> /* for "minor" */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
118 #endif /* not IRIS */
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
119
48088
9618c046ce89 Include sys/wait.h.
Dave Love <fx@gnu.org>
parents: 48053
diff changeset
120 #ifdef HAVE_SYS_WAIT
9618c046ce89 Include sys/wait.h.
Dave Love <fx@gnu.org>
parents: 48053
diff changeset
121 #include <sys/wait.h>
9618c046ce89 Include sys/wait.h.
Dave Love <fx@gnu.org>
parents: 48053
diff changeset
122 #endif
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
123
68022
e213d76ca446 [WINDOWSNT]: Undef AF_INET6 to disable IPv6 support for w32.
Eli Zaretskii <eliz@gnu.org>
parents: 68008
diff changeset
124 /* Disable IPv6 support for w32 until someone figures out how to do it
e213d76ca446 [WINDOWSNT]: Undef AF_INET6 to disable IPv6 support for w32.
Eli Zaretskii <eliz@gnu.org>
parents: 68008
diff changeset
125 properly. */
e213d76ca446 [WINDOWSNT]: Undef AF_INET6 to disable IPv6 support for w32.
Eli Zaretskii <eliz@gnu.org>
parents: 68008
diff changeset
126 #ifdef WINDOWSNT
e213d76ca446 [WINDOWSNT]: Undef AF_INET6 to disable IPv6 support for w32.
Eli Zaretskii <eliz@gnu.org>
parents: 68008
diff changeset
127 # ifdef AF_INET6
e213d76ca446 [WINDOWSNT]: Undef AF_INET6 to disable IPv6 support for w32.
Eli Zaretskii <eliz@gnu.org>
parents: 68008
diff changeset
128 # undef AF_INET6
e213d76ca446 [WINDOWSNT]: Undef AF_INET6 to disable IPv6 support for w32.
Eli Zaretskii <eliz@gnu.org>
parents: 68008
diff changeset
129 # endif
e213d76ca446 [WINDOWSNT]: Undef AF_INET6 to disable IPv6 support for w32.
Eli Zaretskii <eliz@gnu.org>
parents: 68008
diff changeset
130 #endif
e213d76ca446 [WINDOWSNT]: Undef AF_INET6 to disable IPv6 support for w32.
Eli Zaretskii <eliz@gnu.org>
parents: 68008
diff changeset
131
65764
375ab086d366 * image.c (slurp_file, xbm_read_bitmap_data): Cast to the correct
Dan Nicolaescu <dann@ics.uci.edu>
parents: 65713
diff changeset
132 #include "lisp.h"
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
133 #include "systime.h"
1047
1ab1ed32e82a * process.c: Include "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents: 1030
diff changeset
134 #include "systty.h"
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
135
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
136 #include "window.h"
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
137 #include "buffer.h"
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
138 #include "charset.h"
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
139 #include "coding.h"
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
140 #include "process.h"
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
141 #include "termhooks.h"
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
142 #include "termopts.h"
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
143 #include "commands.h"
31099
0fe5afca71e4 Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents: 30582
diff changeset
144 #include "keyboard.h"
1780
d01c59bac5c1 * frame.h (FRAME_SAMPLE_VISIBILITY): Make sure frame is marked as
Jim Blandy <jimb@redhat.com>
parents: 1683
diff changeset
145 #include "frame.h"
16780
e9dc2569cb12 Include blockinput.h.
Richard M. Stallman <rms@gnu.org>
parents: 16728
diff changeset
146 #include "blockinput.h"
21514
fa9ff387d260 Fix -Wimplicit warnings.
Andreas Schwab <schwab@suse.de>
parents: 21414
diff changeset
147 #include "dispextern.h"
26868
edeeffd7d8c7 Include composite.h.
Kenichi Handa <handa@m17n.org>
parents: 26526
diff changeset
148 #include "composite.h"
27430
1aa71680fe50 (toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents: 27028
diff changeset
149 #include "atimer.h"
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
150
4682
c4d471244116 (keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 4639
diff changeset
151 Lisp_Object Qprocessp;
74749
526fb5e934a5 (Qsignal): Declare here.
Kim F. Storm <storm@cua.dk>
parents: 74540
diff changeset
152 Lisp_Object Qrun, Qstop, Qsignal;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
153 Lisp_Object Qopen, Qclosed, Qconnect, Qfailed, Qlisten;
68008
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
154 Lisp_Object Qlocal, Qipv4, Qdatagram;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
155 #ifdef AF_INET6
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
156 Lisp_Object Qipv6;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
157 #endif
44067
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
158 Lisp_Object QCname, QCbuffer, QChost, QCservice, QCtype;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
159 Lisp_Object QClocal, QCremote, QCcoding;
44067
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
160 Lisp_Object QCserver, QCnowait, QCnoquery, QCstop;
49223
26622fa0d099 Reworked 2003-01-12 change -- call a plist a plist!
Kim F. Storm <storm@cua.dk>
parents: 49164
diff changeset
161 Lisp_Object QCsentinel, QClog, QCoptions, QCplist;
49680
7c27c9efd353 Doc fixes.
Kim F. Storm <storm@cua.dk>
parents: 49667
diff changeset
162 Lisp_Object QCfilter_multibyte;
8231
5226ed89c1a6 (Qlast_nonmenu_event): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8063
diff changeset
163 Lisp_Object Qlast_nonmenu_event;
44041
134644f94850 (QCfamily, QCfiler): Remove duplicate declaration and initialization.
Jason Rumney <jasonr@gnu.org>
parents: 44038
diff changeset
164 /* QCfamily is declared and initialized in xfaces.c,
134644f94850 (QCfamily, QCfiler): Remove duplicate declaration and initialization.
Jason Rumney <jasonr@gnu.org>
parents: 44038
diff changeset
165 QCfilter in keyboard.c. */
134644f94850 (QCfamily, QCfiler): Remove duplicate declaration and initialization.
Jason Rumney <jasonr@gnu.org>
parents: 44038
diff changeset
166 extern Lisp_Object QCfamily, QCfilter;
134644f94850 (QCfamily, QCfiler): Remove duplicate declaration and initialization.
Jason Rumney <jasonr@gnu.org>
parents: 44038
diff changeset
167
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
168 /* Qexit is declared and initialized in eval.c. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
169
44890
01b93e5e53a7 Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents: 44372
diff changeset
170 /* QCfamily is defined in xfaces.c. */
01b93e5e53a7 Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents: 44372
diff changeset
171 extern Lisp_Object QCfamily;
01b93e5e53a7 Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents: 44372
diff changeset
172 /* QCfilter is defined in keyboard.c. */
01b93e5e53a7 Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents: 44372
diff changeset
173 extern Lisp_Object QCfilter;
01b93e5e53a7 Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents: 44372
diff changeset
174
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
175 /* a process object is a network connection when its childp field is neither
49142
8dca38bc0261 (Fset_process_contact): New function.
Kim F. Storm <storm@cua.dk>
parents: 49119
diff changeset
176 Qt nor Qnil but is instead a property list (KEY VAL ...). */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
177
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
178 #ifdef HAVE_SOCKETS
16058
924aeb9ed7c3 (Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents: 16053
diff changeset
179 #define NETCONN_P(p) (GC_CONSP (XPROCESS (p)->childp))
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
180 #define NETCONN1_P(p) (GC_CONSP ((p)->childp))
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
181 #else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
182 #define NETCONN_P(p) 0
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
183 #define NETCONN1_P(p) 0
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
184 #endif /* HAVE_SOCKETS */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
185
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
186 /* Define first descriptor number available for subprocesses. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
187 #ifdef VMS
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
188 #define FIRST_PROC_DESC 1
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
189 #else /* Not VMS */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
190 #define FIRST_PROC_DESC 3
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
191 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
192
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
193 /* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
194 testing SIGCHLD. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
195
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
196 #if !defined (SIGCHLD) && defined (SIGCLD)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
197 #define SIGCHLD SIGCLD
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
198 #endif /* SIGCLD */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
199
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
200 #include "syssignal.h"
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
201
4639
76f242eb1fa8 Include syswait.h.
Richard M. Stallman <rms@gnu.org>
parents: 4320
diff changeset
202 #include "syswait.h"
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
203
59689
007a1a6d92de * s/darwin.h: Removed PTY_ITERATION from here.
Steven Tamm <steventamm@mac.com>
parents: 59113
diff changeset
204 extern char *get_operating_system_release ();
25770
3a44b5298cd5 (list_processes_1): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents: 25760
diff changeset
205
31099
0fe5afca71e4 Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents: 30582
diff changeset
206 #ifndef USE_CRT_DLL
5543
dbc1d920ef5c Don't declare sys_nerr.
Roland McGrath <roland@gnu.org>
parents: 5534
diff changeset
207 extern int errno;
31099
0fe5afca71e4 Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents: 30582
diff changeset
208 #endif
5543
dbc1d920ef5c Don't declare sys_nerr.
Roland McGrath <roland@gnu.org>
parents: 5534
diff changeset
209 #ifdef VMS
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
210 extern char *sys_errlist[];
5543
dbc1d920ef5c Don't declare sys_nerr.
Roland McGrath <roland@gnu.org>
parents: 5534
diff changeset
211 #endif
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
212
8331
14ddb4c66461 [!HAVE_H_ERRNO]: Declare h_errno.
Richard M. Stallman <rms@gnu.org>
parents: 8287
diff changeset
213 #ifndef HAVE_H_ERRNO
14ddb4c66461 [!HAVE_H_ERRNO]: Declare h_errno.
Richard M. Stallman <rms@gnu.org>
parents: 8287
diff changeset
214 extern int h_errno;
14ddb4c66461 [!HAVE_H_ERRNO]: Declare h_errno.
Richard M. Stallman <rms@gnu.org>
parents: 8287
diff changeset
215 #endif
14ddb4c66461 [!HAVE_H_ERRNO]: Declare h_errno.
Richard M. Stallman <rms@gnu.org>
parents: 8287
diff changeset
216
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
217 /* t means use pty, nil means use a pipe,
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
218 maybe other values to come. */
4682
c4d471244116 (keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 4639
diff changeset
219 static Lisp_Object Vprocess_connection_type;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
220
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
221 #ifdef SKTPAIR
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
222 #ifndef HAVE_SOCKETS
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
223 #include <sys/socket.h>
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
224 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
225 #endif /* SKTPAIR */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
226
10548
dcae4394587d (process_tick, update_tick): Make non-static.
Karl Heuer <kwzh@gnu.org>
parents: 10527
diff changeset
227 /* 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
228 emulation of `select'. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
229 /* 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
230 int process_tick;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
231 /* 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
232 int update_tick;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
233
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
234 /* Define NON_BLOCKING_CONNECT if we can support non-blocking connects. */
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
235
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
236 #ifdef BROKEN_NON_BLOCKING_CONNECT
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
237 #undef NON_BLOCKING_CONNECT
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
238 #else
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
239 #ifndef NON_BLOCKING_CONNECT
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
240 #ifdef HAVE_SOCKETS
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
241 #ifdef HAVE_SELECT
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
242 #if defined (HAVE_GETPEERNAME) || defined (GNU_LINUX)
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
243 #if defined (O_NONBLOCK) || defined (O_NDELAY)
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
244 #if defined (EWOULDBLOCK) || defined (EINPROGRESS)
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
245 #define NON_BLOCKING_CONNECT
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
246 #endif /* EWOULDBLOCK || EINPROGRESS */
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
247 #endif /* O_NONBLOCK || O_NDELAY */
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
248 #endif /* HAVE_GETPEERNAME || GNU_LINUX */
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
249 #endif /* HAVE_SELECT */
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
250 #endif /* HAVE_SOCKETS */
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
251 #endif /* NON_BLOCKING_CONNECT */
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
252 #endif /* BROKEN_NON_BLOCKING_CONNECT */
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
253
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
254 /* Define DATAGRAM_SOCKETS if datagrams can be used safely on
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
255 this system. We need to read full packets, so we need a
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
256 "non-destructive" select. So we require either native select,
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
257 or emulation of select using FIONREAD. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
258
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
259 #ifdef BROKEN_DATAGRAM_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
260 #undef DATAGRAM_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
261 #else
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
262 #ifndef DATAGRAM_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
263 #ifdef HAVE_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
264 #if defined (HAVE_SELECT) || defined (FIONREAD)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
265 #if defined (HAVE_SENDTO) && defined (HAVE_RECVFROM) && defined (EMSGSIZE)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
266 #define DATAGRAM_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
267 #endif /* HAVE_SENDTO && HAVE_RECVFROM && EMSGSIZE */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
268 #endif /* HAVE_SELECT || FIONREAD */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
269 #endif /* HAVE_SOCKETS */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
270 #endif /* DATAGRAM_SOCKETS */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
271 #endif /* BROKEN_DATAGRAM_SOCKETS */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
272
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
273 #ifdef TERM
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
274 #undef NON_BLOCKING_CONNECT
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
275 #undef DATAGRAM_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
276 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
277
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
278 #if !defined (ADAPTIVE_READ_BUFFERING) && !defined (NO_ADAPTIVE_READ_BUFFERING)
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
279 #ifdef EMACS_HAS_USECS
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
280 #define ADAPTIVE_READ_BUFFERING
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
281 #endif
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
282 #endif
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
283
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
284 #ifdef ADAPTIVE_READ_BUFFERING
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
285 #define READ_OUTPUT_DELAY_INCREMENT 10000
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
286 #define READ_OUTPUT_DELAY_MAX (READ_OUTPUT_DELAY_INCREMENT * 5)
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
287 #define READ_OUTPUT_DELAY_MAX_MAX (READ_OUTPUT_DELAY_INCREMENT * 7)
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
288
63114
6ef9e44e50d7 Improve commentary for adaptive read buffering.
Kim F. Storm <storm@cua.dk>
parents: 62604
diff changeset
289 /* Number of processes which have a non-zero read_output_delay,
6ef9e44e50d7 Improve commentary for adaptive read buffering.
Kim F. Storm <storm@cua.dk>
parents: 62604
diff changeset
290 and therefore might be delayed for adaptive read buffering. */
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
291
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
292 static int process_output_delay_count;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
293
63114
6ef9e44e50d7 Improve commentary for adaptive read buffering.
Kim F. Storm <storm@cua.dk>
parents: 62604
diff changeset
294 /* Non-zero if any process has non-nil read_output_skip. */
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
295
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
296 static int process_output_skip;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
297
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
298 /* Non-nil means to delay reading process output to improve buffering.
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
299 A value of t means that delay is reset after each send, any other
63114
6ef9e44e50d7 Improve commentary for adaptive read buffering.
Kim F. Storm <storm@cua.dk>
parents: 62604
diff changeset
300 non-nil value does not reset the delay. A value of nil disables
6ef9e44e50d7 Improve commentary for adaptive read buffering.
Kim F. Storm <storm@cua.dk>
parents: 62604
diff changeset
301 adaptive read buffering completely. */
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
302 static Lisp_Object Vprocess_adaptive_read_buffering;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
303 #else
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
304 #define process_output_delay_count 0
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
305 #endif
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
306
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
307
10527
68b8191091a7 #include sysselect.h instead of defining things by hand.
Karl Heuer <kwzh@gnu.org>
parents: 10032
diff changeset
308 #include "sysselect.h"
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
309
64977
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
310 static int keyboard_bit_set P_ ((SELECT_TYPE *));
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
311 static void deactivate_process P_ ((Lisp_Object));
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
312 static void status_notify P_ ((struct Lisp_Process *));
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
313 static int read_process_output P_ ((Lisp_Object, int));
25770
3a44b5298cd5 (list_processes_1): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents: 25760
diff changeset
314
13414
b035c6e41457 [HAVE_NTGUI] (POLL_FOR_INPUT): Define macro.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13159
diff changeset
315 /* 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
316 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
317 #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
318 #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
319 #endif
cfe4840ffde9 (Fopen_network_stream): Call bind_polling_period; later unbind the binding.
Richard M. Stallman <rms@gnu.org>
parents: 7454
diff changeset
320
72727
5f2a73453aa3 (inhibit_sentinels): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 72277
diff changeset
321 static Lisp_Object get_process ();
5f2a73453aa3 (inhibit_sentinels): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 72277
diff changeset
322 static void exec_sentinel ();
5f2a73453aa3 (inhibit_sentinels): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 72277
diff changeset
323
5f2a73453aa3 (inhibit_sentinels): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 72277
diff changeset
324 extern EMACS_TIME timer_check ();
5f2a73453aa3 (inhibit_sentinels): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 72277
diff changeset
325 extern int timers_run;
5f2a73453aa3 (inhibit_sentinels): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 72277
diff changeset
326
9686
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
327 /* Mask of bits indicating the descriptors that we wait for input on. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
328
4682
c4d471244116 (keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 4639
diff changeset
329 static SELECT_TYPE input_wait_mask;
c4d471244116 (keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 4639
diff changeset
330
9686
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
331 /* Mask that excludes keyboard input descriptor (s). */
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
332
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
333 static SELECT_TYPE non_keyboard_wait_mask;
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
334
17224
dd2545e79add (wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents: 17110
diff changeset
335 /* Mask that excludes process input descriptor (s). */
dd2545e79add (wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents: 17110
diff changeset
336
dd2545e79add (wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents: 17110
diff changeset
337 static SELECT_TYPE non_process_wait_mask;
dd2545e79add (wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents: 17110
diff changeset
338
57840
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
339 #ifdef NON_BLOCKING_CONNECT
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
340 /* Mask of bits indicating the descriptors that we wait for connect to
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
341 complete on. Once they complete, they are removed from this mask
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
342 and added to the input_wait_mask and non_keyboard_wait_mask. */
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
343
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
344 static SELECT_TYPE connect_wait_mask;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
345
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
346 /* Number of bits set in connect_wait_mask. */
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
347 static int num_pending_connects;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
348
57840
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
349 #define IF_NON_BLOCKING_CONNECT(s) s
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
350 #else
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
351 #define IF_NON_BLOCKING_CONNECT(s)
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
352 #endif
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
353
7044
7032d07f5ad9 (max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7013
diff changeset
354 /* 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
355 static int max_process_desc;
7032d07f5ad9 (max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7013
diff changeset
356
9686
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
357 /* 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
358 static int max_keyboard_desc;
4682
c4d471244116 (keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 4639
diff changeset
359
c4d471244116 (keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 4639
diff changeset
360 /* 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
361 static int delete_exited_processes;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
362
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
363 /* 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
364 Lisp_Object chan_process[MAXDESC];
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
365
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
366 /* Alist of elements (NAME . PROCESS) */
6164
d047d5a48e0e (chan_process, Vprocess_alist): No longer static.
Richard M. Stallman <rms@gnu.org>
parents: 6158
diff changeset
367 Lisp_Object Vprocess_alist;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
368
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
369 /* Buffered-ahead input char from process, indexed by channel.
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
370 -1 means empty (no char is buffered).
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
371 Used on sys V where the only way to tell if there is any
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
372 output from the process is to read at least one char.
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
373 Always -1 on systems that support FIONREAD. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
374
9793
28267fcc61be Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents: 9705
diff changeset
375 /* 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
376 int proc_buffered_char[MAXDESC];
4682
c4d471244116 (keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 4639
diff changeset
377
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
378 /* Table of `struct coding-system' for each process. */
17110
3a348cbb354f (Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents: 17041
diff changeset
379 static struct coding_system *proc_decode_coding_system[MAXDESC];
3a348cbb354f (Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents: 17041
diff changeset
380 static struct coding_system *proc_encode_coding_system[MAXDESC];
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
381
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
382 #ifdef DATAGRAM_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
383 /* Table of `partner address' for datagram sockets. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
384 struct sockaddr_and_len {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
385 struct sockaddr *sa;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
386 int len;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
387 } datagram_address[MAXDESC];
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
388 #define DATAGRAM_CHAN_P(chan) (datagram_address[chan].sa != 0)
44314
f76a1425eb34 (DATAGRAM_CONN_P, list_processes_1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 44194
diff changeset
389 #define DATAGRAM_CONN_P(proc) (PROCESSP (proc) && datagram_address[XINT (XPROCESS (proc)->infd)].sa != 0)
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
390 #else
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
391 #define DATAGRAM_CHAN_P(chan) (0)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
392 #define DATAGRAM_CONN_P(proc) (0)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
393 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
394
6158
6b81b2575071 Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents: 5891
diff changeset
395 /* Maximum number of bytes to send to a pty without an eof. */
6b81b2575071 Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents: 5891
diff changeset
396 static int pty_max_bytes;
9030
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
397
72727
5f2a73453aa3 (inhibit_sentinels): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 72277
diff changeset
398 /* Nonzero means don't run process sentinels. This is used
5f2a73453aa3 (inhibit_sentinels): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 72277
diff changeset
399 when exiting. */
5f2a73453aa3 (inhibit_sentinels): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 72277
diff changeset
400 int inhibit_sentinels;
5f2a73453aa3 (inhibit_sentinels): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 72277
diff changeset
401
11609
3b2dacb1bfe9 (create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents: 11514
diff changeset
402 #ifdef HAVE_PTYS
48088
9618c046ce89 Include sys/wait.h.
Dave Love <fx@gnu.org>
parents: 48053
diff changeset
403 #ifdef HAVE_PTY_H
9618c046ce89 Include sys/wait.h.
Dave Love <fx@gnu.org>
parents: 48053
diff changeset
404 #include <pty.h>
9618c046ce89 Include sys/wait.h.
Dave Love <fx@gnu.org>
parents: 48053
diff changeset
405 #endif
11609
3b2dacb1bfe9 (create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents: 11514
diff changeset
406 /* 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
407
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
408 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
409 #endif
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
410
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
411 /* Compute the Lisp form of the process status, p->status, from
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
412 the numeric status that was returned by `wait'. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
413
64977
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
414 static Lisp_Object status_convert ();
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
415
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
416 static void
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
417 update_status (p)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
418 struct Lisp_Process *p;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
419 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
420 union { int i; WAITTYPE wt; } u;
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
421 eassert (p->raw_status_new);
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
422 u.i = p->raw_status;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
423 p->status = status_convert (u.wt);
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
424 p->raw_status_new = 0;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
425 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
426
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
427 /* Convert a process status word in Unix format to
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
428 the list that we use internally. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
429
64977
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
430 static Lisp_Object
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
431 status_convert (w)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
432 WAITTYPE w;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
433 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
434 if (WIFSTOPPED (w))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
435 return Fcons (Qstop, Fcons (make_number (WSTOPSIG (w)), Qnil));
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
436 else if (WIFEXITED (w))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
437 return Fcons (Qexit, Fcons (make_number (WRETCODE (w)),
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
438 WCOREDUMP (w) ? Qt : Qnil));
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
439 else if (WIFSIGNALED (w))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
440 return Fcons (Qsignal, Fcons (make_number (WTERMSIG (w)),
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
441 WCOREDUMP (w) ? Qt : Qnil));
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
442 else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
443 return Qrun;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
444 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
445
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
446 /* Given a status-list, extract the three pieces of information
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
447 and store them individually through the three pointers. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
448
64977
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
449 static void
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
450 decode_status (l, symbol, code, coredump)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
451 Lisp_Object l;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
452 Lisp_Object *symbol;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
453 int *code;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
454 int *coredump;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
455 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
456 Lisp_Object tem;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
457
9115
59bc2d010b5f (decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents: 9034
diff changeset
458 if (SYMBOLP (l))
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
459 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
460 *symbol = l;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
461 *code = 0;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
462 *coredump = 0;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
463 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
464 else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
465 {
25645
a14111a2a100 Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25356
diff changeset
466 *symbol = XCAR (l);
a14111a2a100 Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25356
diff changeset
467 tem = XCDR (l);
a14111a2a100 Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25356
diff changeset
468 *code = XFASTINT (XCAR (tem));
a14111a2a100 Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25356
diff changeset
469 tem = XCDR (tem);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
470 *coredump = !NILP (tem);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
471 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
472 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
473
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
474 /* Return a string describing a process status list. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
475
55962
8979bc3ade70 (Fdelete_process): Undo 2004-05-28 change.
Kim F. Storm <storm@cua.dk>
parents: 55810
diff changeset
476 static Lisp_Object
8979bc3ade70 (Fdelete_process): Undo 2004-05-28 change.
Kim F. Storm <storm@cua.dk>
parents: 55810
diff changeset
477 status_message (p)
8979bc3ade70 (Fdelete_process): Undo 2004-05-28 change.
Kim F. Storm <storm@cua.dk>
parents: 55810
diff changeset
478 struct Lisp_Process *p;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
479 {
55962
8979bc3ade70 (Fdelete_process): Undo 2004-05-28 change.
Kim F. Storm <storm@cua.dk>
parents: 55810
diff changeset
480 Lisp_Object status = p->status;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
481 Lisp_Object symbol;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
482 int code, coredump;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
483 Lisp_Object string, string2;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
484
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
485 decode_status (status, &symbol, &code, &coredump);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
486
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
487 if (EQ (symbol, Qsignal) || EQ (symbol, Qstop))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
488 {
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
489 char *signame;
26526
b7438760079b * callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents: 26313
diff changeset
490 synchronize_system_messages_locale ();
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
491 signame = strsignal (code);
5579
466bc8ef8e21 (sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents: 5561
diff changeset
492 if (signame == 0)
466bc8ef8e21 (sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents: 5561
diff changeset
493 signame = "unknown";
466bc8ef8e21 (sigchld_handler, status_message): Handle a NULL in sys_siglist.
Richard M. Stallman <rms@gnu.org>
parents: 5561
diff changeset
494 string = build_string (signame);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
495 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
46431
db28853d1e82 * process.c (status_message): Use SSET.
Ken Raeburn <raeburn@raeburn.org>
parents: 46411
diff changeset
496 SSET (string, 0, DOWNCASE (SREF (string, 0)));
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
497 return concat2 (string, string2);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
498 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
499 else if (EQ (symbol, Qexit))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
500 {
55962
8979bc3ade70 (Fdelete_process): Undo 2004-05-28 change.
Kim F. Storm <storm@cua.dk>
parents: 55810
diff changeset
501 if (NETCONN1_P (p))
8979bc3ade70 (Fdelete_process): Undo 2004-05-28 change.
Kim F. Storm <storm@cua.dk>
parents: 55810
diff changeset
502 return build_string (code == 0 ? "deleted\n" : "connection broken by remote peer\n");
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
503 if (code == 0)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
504 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
505 string = Fnumber_to_string (make_number (code));
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
506 string2 = build_string (coredump ? " (core dumped)\n" : "\n");
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
507 return concat3 (build_string ("exited abnormally with code "),
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
508 string, string2);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
509 }
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
510 else if (EQ (symbol, Qfailed))
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
511 {
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
512 string = Fnumber_to_string (make_number (code));
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
513 string2 = build_string ("\n");
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
514 return concat3 (build_string ("failed with code "),
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
515 string, string2);
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
516 }
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
517 else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
518 return Fcopy_sequence (Fsymbol_name (symbol));
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
519 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
520
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
521 #ifdef HAVE_PTYS
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
522
11609
3b2dacb1bfe9 (create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents: 11514
diff changeset
523 /* 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
524 Return -1 on failure.
3b2dacb1bfe9 (create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents: 11514
diff changeset
525 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
526 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
527
64977
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
528 static int
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
529 allocate_pty ()
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
530 {
21514
fa9ff387d260 Fix -Wimplicit warnings.
Andreas Schwab <schwab@suse.de>
parents: 21414
diff changeset
531 register int c, i;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
532 int fd;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
533
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
534 #ifdef PTY_ITERATION
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
535 PTY_ITERATION
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
536 #else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
537 for (c = FIRST_PTY_LETTER; c <= 'z'; c++)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
538 for (i = 0; i < 16; i++)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
539 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
540 {
51473
58061223557c (allocate_pty): Revert part of the previous patch.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51233
diff changeset
541 struct stat stb; /* Used in some PTY_OPEN. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
542 #ifdef PTY_NAME_SPRINTF
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
543 PTY_NAME_SPRINTF
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
544 #else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
545 sprintf (pty_name, "/dev/pty%c%x", c, i);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
546 #endif /* no PTY_NAME_SPRINTF */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
547
822
c6e94e13926c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 808
diff changeset
548 #ifdef PTY_OPEN
c6e94e13926c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 808
diff changeset
549 PTY_OPEN;
c6e94e13926c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 808
diff changeset
550 #else /* no PTY_OPEN */
51233
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
551 {
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
552 # ifdef IRIS
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
553 /* Unusual IRIS code */
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
554 *ptyv = emacs_open ("/dev/ptc", O_RDWR | O_NDELAY, 0);
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
555 if (fd < 0)
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
556 return -1;
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
557 if (fstat (fd, &stb) < 0)
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
558 return -1;
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
559 # else /* not IRIS */
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
560 { /* Some systems name their pseudoterminals so that there are gaps in
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
561 the usual sequence - for example, on HP9000/S700 systems, there
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
562 are no pseudoterminals with names ending in 'f'. So we wait for
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
563 three failures in a row before deciding that we've reached the
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
564 end of the ptys. */
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
565 int failed_count = 0;
55444
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
566
51233
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
567 if (stat (pty_name, &stb) < 0)
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
568 {
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
569 failed_count++;
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
570 if (failed_count >= 3)
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
571 return -1;
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
572 }
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
573 else
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
574 failed_count = 0;
624
2bb7f23b7ea5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 621
diff changeset
575 }
51233
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
576 # ifdef O_NONBLOCK
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
577 fd = emacs_open (pty_name, O_RDWR | O_NONBLOCK, 0);
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
578 # else
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
579 fd = emacs_open (pty_name, O_RDWR | O_NDELAY, 0);
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
580 # endif
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
581 # endif /* not IRIS */
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
582 }
822
c6e94e13926c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 808
diff changeset
583 #endif /* no PTY_OPEN */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
584
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
585 if (fd >= 0)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
586 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
587 /* check to make certain that both sides are available
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
588 this avoids a nasty yet stupid bug in rlogins */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
589 #ifdef PTY_TTY_NAME_SPRINTF
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
590 PTY_TTY_NAME_SPRINTF
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
591 #else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
592 sprintf (pty_name, "/dev/tty%c%x", c, i);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
593 #endif /* no PTY_TTY_NAME_SPRINTF */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
594 #ifndef UNIPLUS
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
595 if (access (pty_name, 6) != 0)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
596 {
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
597 emacs_close (fd);
51233
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
598 # if !defined(IRIS) && !defined(__sgi)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
599 continue;
51233
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
600 # else
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
601 return -1;
51233
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
602 # endif /* IRIS */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
603 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
604 #endif /* not UNIPLUS */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
605 setup_pty (fd);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
606 return fd;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
607 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
608 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
609 return -1;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
610 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
611 #endif /* HAVE_PTYS */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
612
64977
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
613 static Lisp_Object
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
614 make_process (name)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
615 Lisp_Object name;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
616 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
617 register Lisp_Object val, tem, name1;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
618 register struct Lisp_Process *p;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
619 char suffix[10];
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
620 register int i;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
621
36434
40cfe4976f04 (make_process): Use allocate_process.
Gerd Moellmann <gerd@gnu.org>
parents: 35336
diff changeset
622 p = allocate_process ();
9969
007d93b04e1f (make_process): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents: 9952
diff changeset
623
9277
21f6120be5ba (make_process, create_process, Fopen_network_stream, deactivate_process,
Karl Heuer <kwzh@gnu.org>
parents: 9115
diff changeset
624 XSETINT (p->infd, -1);
21f6120be5ba (make_process, create_process, Fopen_network_stream, deactivate_process,
Karl Heuer <kwzh@gnu.org>
parents: 9115
diff changeset
625 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
626 XSETFASTINT (p->tick, 0);
a14cc1712337 (make_process, list_processes_1, create_process, Faccept_process_output,
Karl Heuer <kwzh@gnu.org>
parents: 9277
diff changeset
627 XSETFASTINT (p->update_tick, 0);
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
628 p->pid = 0;
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
629 p->raw_status_new = 0;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
630 p->status = Qrun;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
631 p->mark = Fmake_marker ();
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
632
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
633 #ifdef ADAPTIVE_READ_BUFFERING
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
634 p->adaptive_read_buffering = Qnil;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
635 XSETFASTINT (p->read_output_delay, 0);
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
636 p->read_output_skip = Qnil;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
637 #endif
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
638
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
639 /* If name is already in use, modify it until it is unused. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
640
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
641 name1 = name;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
642 for (i = 1; ; i++)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
643 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
644 tem = Fget_process (name1);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
645 if (NILP (tem)) break;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
646 sprintf (suffix, "<%d>", i);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
647 name1 = concat2 (name, build_string (suffix));
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
648 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
649 name = name1;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
650 p->name = name;
9969
007d93b04e1f (make_process): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents: 9952
diff changeset
651 XSETPROCESS (val, p);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
652 Vprocess_alist = Fcons (Fcons (name, val), Vprocess_alist);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
653 return val;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
654 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
655
64977
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
656 static void
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
657 remove_process (proc)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
658 register Lisp_Object proc;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
659 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
660 register Lisp_Object pair;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
661
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
662 pair = Frassq (proc, Vprocess_alist);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
663 Vprocess_alist = Fdelq (pair, Vprocess_alist);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
664
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
665 deactivate_process (proc);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
666 }
49667
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
667
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
668 /* Setup coding systems of PROCESS. */
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
669
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
670 void
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
671 setup_process_coding_systems (process)
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
672 Lisp_Object process;
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
673 {
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
674 struct Lisp_Process *p = XPROCESS (process);
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
675 int inch = XINT (p->infd);
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
676 int outch = XINT (p->outfd);
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
677
49872
012ced9cf144 (setup_process_coding_systems): If the process's
Kenichi Handa <handa@m17n.org>
parents: 49680
diff changeset
678 if (inch < 0 || outch < 0)
012ced9cf144 (setup_process_coding_systems): If the process's
Kenichi Handa <handa@m17n.org>
parents: 49680
diff changeset
679 return;
012ced9cf144 (setup_process_coding_systems): If the process's
Kenichi Handa <handa@m17n.org>
parents: 49680
diff changeset
680
49667
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
681 if (!proc_decode_coding_system[inch])
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
682 proc_decode_coding_system[inch]
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
683 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
684 setup_coding_system (p->decode_coding_system,
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
685 proc_decode_coding_system[inch]);
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
686 if (! NILP (p->filter))
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
687 {
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
688 if (NILP (p->filter_multibyte))
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
689 setup_raw_text_coding_system (proc_decode_coding_system[inch]);
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
690 }
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
691 else if (BUFFERP (p->buffer))
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
692 {
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
693 if (NILP (XBUFFER (p->buffer)->enable_multibyte_characters))
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
694 setup_raw_text_coding_system (proc_decode_coding_system[inch]);
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
695 }
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
696
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
697 if (!proc_encode_coding_system[outch])
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
698 proc_encode_coding_system[outch]
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
699 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
700 setup_coding_system (p->encode_coding_system,
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
701 proc_encode_coding_system[outch]);
70517
7ebead4f6646 (setup_process_coding_systems): Use system_eol_type
Kenichi Handa <handa@m17n.org>
parents: 69981
diff changeset
702 if (proc_encode_coding_system[outch]->eol_type == CODING_EOL_UNDECIDED)
7ebead4f6646 (setup_process_coding_systems): Use system_eol_type
Kenichi Handa <handa@m17n.org>
parents: 69981
diff changeset
703 proc_encode_coding_system[outch]->eol_type = system_eol_type;
49667
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
704 }
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
705
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
706 DEFUN ("processp", Fprocessp, Sprocessp, 1, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
707 doc: /* Return t if OBJECT is a process. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
708 (object)
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
709 Lisp_Object object;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
710 {
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
711 return PROCESSP (object) ? Qt : Qnil;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
712 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
713
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
714 DEFUN ("get-process", Fget_process, Sget_process, 1, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
715 doc: /* Return the process named NAME, or nil if there is none. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
716 (name)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
717 register Lisp_Object name;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
718 {
9115
59bc2d010b5f (decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents: 9034
diff changeset
719 if (PROCESSP (name))
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
720 return name;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
721 CHECK_STRING (name);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
722 return Fcdr (Fassoc (name, Vprocess_alist));
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
723 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
724
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
725 DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
726 doc: /* Return the (or a) process associated with BUFFER.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
727 BUFFER may be a buffer or the name of one. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
728 (buffer)
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
729 register Lisp_Object buffer;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
730 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
731 register Lisp_Object buf, tail, proc;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
732
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
733 if (NILP (buffer)) return Qnil;
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
734 buf = Fget_buffer (buffer);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
735 if (NILP (buf)) return Qnil;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
736
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
737 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
738 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
739 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
740 if (PROCESSP (proc) && EQ (XPROCESS (proc)->buffer, buf))
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
741 return proc;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
742 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
743 return Qnil;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
744 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
745
808
707866b2a190 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 765
diff changeset
746 /* This is how commands for the user decode process arguments. It
707866b2a190 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 765
diff changeset
747 accepts a process, a process name, a buffer, a buffer name, or nil.
707866b2a190 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 765
diff changeset
748 Buffers denote the first process in the buffer, and nil denotes the
707866b2a190 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 765
diff changeset
749 current buffer. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
750
4994
4146a65b9f02 (get_process): Add `static' to definition.
Richard M. Stallman <rms@gnu.org>
parents: 4914
diff changeset
751 static Lisp_Object
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
752 get_process (name)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
753 register Lisp_Object name;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
754 {
6313
9a6531e6de5d (get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents: 6253
diff changeset
755 register Lisp_Object proc, obj;
9a6531e6de5d (get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents: 6253
diff changeset
756 if (STRINGP (name))
9a6531e6de5d (get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents: 6253
diff changeset
757 {
9a6531e6de5d (get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents: 6253
diff changeset
758 obj = Fget_process (name);
9a6531e6de5d (get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents: 6253
diff changeset
759 if (NILP (obj))
9a6531e6de5d (get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents: 6253
diff changeset
760 obj = Fget_buffer (name);
9a6531e6de5d (get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents: 6253
diff changeset
761 if (NILP (obj))
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
762 error ("Process %s does not exist", SDATA (name));
6313
9a6531e6de5d (get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents: 6253
diff changeset
763 }
9a6531e6de5d (get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents: 6253
diff changeset
764 else if (NILP (name))
9a6531e6de5d (get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents: 6253
diff changeset
765 obj = Fcurrent_buffer ();
9a6531e6de5d (get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents: 6253
diff changeset
766 else
9a6531e6de5d (get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents: 6253
diff changeset
767 obj = name;
9a6531e6de5d (get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents: 6253
diff changeset
768
9a6531e6de5d (get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents: 6253
diff changeset
769 /* 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
770 */
9a6531e6de5d (get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents: 6253
diff changeset
771 if (BUFFERP (obj))
9a6531e6de5d (get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents: 6253
diff changeset
772 {
9a6531e6de5d (get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents: 6253
diff changeset
773 proc = Fget_buffer_process (obj);
9a6531e6de5d (get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents: 6253
diff changeset
774 if (NILP (proc))
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
775 error ("Buffer %s has no process", SDATA (XBUFFER (obj)->name));
6313
9a6531e6de5d (get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents: 6253
diff changeset
776 }
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
777 else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
778 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
779 CHECK_PROCESS (obj);
6313
9a6531e6de5d (get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents: 6253
diff changeset
780 proc = obj;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
781 }
6313
9a6531e6de5d (get_process): Allow arg to be a buffer object.
Karl Heuer <kwzh@gnu.org>
parents: 6253
diff changeset
782 return proc;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
783 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
784
71140
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
785
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
786 #ifdef SIGCHLD
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
787 /* Fdelete_process promises to immediately forget about the process, but in
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
788 reality, Emacs needs to remember those processes until they have been
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
789 treated by sigchld_handler; otherwise this handler would consider the
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
790 process as being synchronous and say that the synchronous process is
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
791 dead. */
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
792 static Lisp_Object deleted_pid_list;
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
793 #endif
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
794
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
795 DEFUN ("delete-process", Fdelete_process, Sdelete_process, 1, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
796 doc: /* Delete PROCESS: kill it and forget about it immediately.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
797 PROCESS may be a process, a buffer, the name of a process or buffer, or
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
798 nil, indicating the current buffer's process. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
799 (process)
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
800 register Lisp_Object process;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
801 {
64977
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
802 register struct Lisp_Process *p;
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
803
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
804 process = get_process (process);
64977
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
805 p = XPROCESS (process);
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
806
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
807 p->raw_status_new = 0;
64977
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
808 if (NETCONN1_P (p))
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
809 {
64977
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
810 p->status = Fcons (Qexit, Fcons (make_number (0), Qnil));
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
811 XSETINT (p->tick, ++process_tick);
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
812 status_notify (p);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
813 }
64977
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
814 else if (XINT (p->infd) >= 0)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
815 {
71140
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
816 #ifdef SIGCHLD
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
817 Lisp_Object symbol;
75220
1b003fe28dfe (Fdelete_process, Fprocess_id, sigchld_handler): Copy PID into EMACS_INT
Eli Zaretskii <eliz@gnu.org>
parents: 74946
diff changeset
818 /* Assignment to EMACS_INT stops GCC whining about limited range
1b003fe28dfe (Fdelete_process, Fprocess_id, sigchld_handler): Copy PID into EMACS_INT
Eli Zaretskii <eliz@gnu.org>
parents: 74946
diff changeset
819 of data type. */
76494
f0a25b5d3ba0 (Fdelete_process): Properly handle deletion of first element of
Chong Yidong <cyd@stupidchicken.com>
parents: 76493
diff changeset
820 EMACS_INT pid = p->pid;
71140
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
821
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
822 /* No problem storing the pid here, as it is still in Vprocess_alist. */
75220
1b003fe28dfe (Fdelete_process, Fprocess_id, sigchld_handler): Copy PID into EMACS_INT
Eli Zaretskii <eliz@gnu.org>
parents: 74946
diff changeset
823 deleted_pid_list = Fcons (make_fixnum_or_float (pid),
71140
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
824 /* GC treated elements set to nil. */
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
825 Fdelq (Qnil, deleted_pid_list));
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
826 /* If the process has already signaled, remove it from the list. */
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
827 if (p->raw_status_new)
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
828 update_status (p);
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
829 symbol = p->status;
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
830 if (CONSP (p->status))
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
831 symbol = XCAR (p->status);
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
832 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit))
76494
f0a25b5d3ba0 (Fdelete_process): Properly handle deletion of first element of
Chong Yidong <cyd@stupidchicken.com>
parents: 76493
diff changeset
833 deleted_pid_list
f0a25b5d3ba0 (Fdelete_process): Properly handle deletion of first element of
Chong Yidong <cyd@stupidchicken.com>
parents: 76493
diff changeset
834 = Fdelete (make_fixnum_or_float (pid), deleted_pid_list);
71140
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
835 else
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
836 #endif
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
837 {
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
838 Fkill_process (process, Qnil);
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
839 /* Do this now, since remove_process will make sigchld_handler do nothing. */
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
840 p->status
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
841 = Fcons (Qsignal, Fcons (make_number (SIGKILL), Qnil));
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
842 XSETINT (p->tick, ++process_tick);
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
843 status_notify (p);
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
844 }
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
845 }
55962
8979bc3ade70 (Fdelete_process): Undo 2004-05-28 change.
Kim F. Storm <storm@cua.dk>
parents: 55810
diff changeset
846 remove_process (process);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
847 return Qnil;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
848 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
849
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
850 DEFUN ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
851 doc: /* Return the status of PROCESS.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
852 The returned value is one of the following symbols:
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
853 run -- for a process that is running.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
854 stop -- for a process stopped but continuable.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
855 exit -- for a process that has exited.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
856 signal -- for a process that has got a fatal signal.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
857 open -- for a network stream connection that is open.
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
858 listen -- for a network stream server that is listening.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
859 closed -- for a network stream connection that is closed.
43600
f21620032428 (Fprocess_status): Document connect and failed return values.
Kim F. Storm <storm@cua.dk>
parents: 43598
diff changeset
860 connect -- when waiting for a non-blocking connection to complete.
f21620032428 (Fprocess_status): Document connect and failed return values.
Kim F. Storm <storm@cua.dk>
parents: 43598
diff changeset
861 failed -- when a non-blocking connection has failed.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
862 nil -- if arg is a process name and no such process exists.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
863 PROCESS may be a process, a buffer, the name of a process, or
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
864 nil, indicating the current buffer's process. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
865 (process)
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
866 register Lisp_Object process;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
867 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
868 register struct Lisp_Process *p;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
869 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
870
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
871 if (STRINGP (process))
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
872 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
873 else
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
874 process = get_process (process);
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
875
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
876 if (NILP (process))
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
877 return process;
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
878
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
879 p = XPROCESS (process);
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
880 if (p->raw_status_new)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
881 update_status (p);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
882 status = p->status;
9115
59bc2d010b5f (decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents: 9034
diff changeset
883 if (CONSP (status))
25645
a14111a2a100 Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25356
diff changeset
884 status = XCAR (status);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
885 if (NETCONN1_P (p))
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
886 {
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
887 if (EQ (status, Qexit))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
888 status = Qclosed;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
889 else if (EQ (p->command, Qt))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
890 status = Qstop;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
891 else if (EQ (status, Qrun))
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
892 status = Qopen;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
893 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
894 return status;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
895 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
896
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
897 DEFUN ("process-exit-status", Fprocess_exit_status, Sprocess_exit_status,
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
898 1, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
899 doc: /* Return the exit status of PROCESS or the signal number that killed it.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
900 If PROCESS has not yet exited or died, return 0. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
901 (process)
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
902 register Lisp_Object process;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
903 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
904 CHECK_PROCESS (process);
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
905 if (XPROCESS (process)->raw_status_new)
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
906 update_status (XPROCESS (process));
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
907 if (CONSP (XPROCESS (process)->status))
25645
a14111a2a100 Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25356
diff changeset
908 return XCAR (XCDR (XPROCESS (process)->status));
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
909 return make_number (0);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
910 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
911
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
912 DEFUN ("process-id", Fprocess_id, Sprocess_id, 1, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
913 doc: /* Return the process id of PROCESS.
55444
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
914 This is the pid of the external process which PROCESS uses or talks to.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
915 For a network connection, this value is nil. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
916 (process)
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
917 register Lisp_Object process;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
918 {
75220
1b003fe28dfe (Fdelete_process, Fprocess_id, sigchld_handler): Copy PID into EMACS_INT
Eli Zaretskii <eliz@gnu.org>
parents: 74946
diff changeset
919 /* Assignment to EMACS_INT stops GCC whining about limited range of
1b003fe28dfe (Fdelete_process, Fprocess_id, sigchld_handler): Copy PID into EMACS_INT
Eli Zaretskii <eliz@gnu.org>
parents: 74946
diff changeset
920 data type. */
1b003fe28dfe (Fdelete_process, Fprocess_id, sigchld_handler): Copy PID into EMACS_INT
Eli Zaretskii <eliz@gnu.org>
parents: 74946
diff changeset
921 EMACS_INT pid;
1b003fe28dfe (Fdelete_process, Fprocess_id, sigchld_handler): Copy PID into EMACS_INT
Eli Zaretskii <eliz@gnu.org>
parents: 74946
diff changeset
922
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
923 CHECK_PROCESS (process);
75220
1b003fe28dfe (Fdelete_process, Fprocess_id, sigchld_handler): Copy PID into EMACS_INT
Eli Zaretskii <eliz@gnu.org>
parents: 74946
diff changeset
924 pid = XPROCESS (process)->pid;
1b003fe28dfe (Fdelete_process, Fprocess_id, sigchld_handler): Copy PID into EMACS_INT
Eli Zaretskii <eliz@gnu.org>
parents: 74946
diff changeset
925 return (pid ? make_fixnum_or_float (pid) : Qnil);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
926 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
927
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
928 DEFUN ("process-name", Fprocess_name, Sprocess_name, 1, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
929 doc: /* Return the name of PROCESS, as a string.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
930 This is the name of the program invoked in PROCESS,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
931 possibly modified to make it unique among process names. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
932 (process)
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
933 register Lisp_Object process;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
934 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
935 CHECK_PROCESS (process);
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
936 return XPROCESS (process)->name;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
937 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
938
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
939 DEFUN ("process-command", Fprocess_command, Sprocess_command, 1, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
940 doc: /* Return the command that was executed to start PROCESS.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
941 This is a list of strings, the first string being the program executed
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
942 and the rest of the strings being the arguments given to it.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
943 For a non-child channel, this is nil. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
944 (process)
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
945 register Lisp_Object process;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
946 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
947 CHECK_PROCESS (process);
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
948 return XPROCESS (process)->command;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
949 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
950
9030
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
951 DEFUN ("process-tty-name", Fprocess_tty_name, Sprocess_tty_name, 1, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
952 doc: /* Return the name of the terminal PROCESS uses, or nil if none.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
953 This is the terminal that the process itself reads and writes on,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
954 not the name of the pty that Emacs uses to talk with that terminal. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
955 (process)
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
956 register Lisp_Object process;
9030
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
957 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
958 CHECK_PROCESS (process);
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
959 return XPROCESS (process)->tty_name;
9030
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
960 }
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
961
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
962 DEFUN ("set-process-buffer", Fset_process_buffer, Sset_process_buffer,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
963 2, 2, 0,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
964 doc: /* Set buffer associated with PROCESS to BUFFER (a buffer, or nil). */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
965 (process, buffer)
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
966 register Lisp_Object process, buffer;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
967 {
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
968 struct Lisp_Process *p;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
969
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
970 CHECK_PROCESS (process);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
971 if (!NILP (buffer))
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
972 CHECK_BUFFER (buffer);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
973 p = XPROCESS (process);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
974 p->buffer = buffer;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
975 if (NETCONN1_P (p))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
976 p->childp = Fplist_put (p->childp, QCbuffer, buffer);
49667
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
977 setup_process_coding_systems (process);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
978 return buffer;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
979 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
980
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
981 DEFUN ("process-buffer", Fprocess_buffer, Sprocess_buffer,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
982 1, 1, 0,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
983 doc: /* Return the buffer PROCESS is associated with.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
984 Output from PROCESS is inserted in this buffer unless PROCESS has a filter. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
985 (process)
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
986 register Lisp_Object process;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
987 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
988 CHECK_PROCESS (process);
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
989 return XPROCESS (process)->buffer;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
990 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
991
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
992 DEFUN ("process-mark", Fprocess_mark, Sprocess_mark,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
993 1, 1, 0,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
994 doc: /* Return the marker for the end of the last output from PROCESS. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
995 (process)
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
996 register Lisp_Object process;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
997 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
998 CHECK_PROCESS (process);
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
999 return XPROCESS (process)->mark;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1000 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1001
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1002 DEFUN ("set-process-filter", Fset_process_filter, Sset_process_filter,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1003 2, 2, 0,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1004 doc: /* Give PROCESS the filter function FILTER; nil means no filter.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1005 t means stop accepting output from the process.
49281
f9e4999d3025 (set-process-filter): Document unibyte/multibyte-ness of string argument.
Kim F. Storm <storm@cua.dk>
parents: 49229
diff changeset
1006
f9e4999d3025 (set-process-filter): Document unibyte/multibyte-ness of string argument.
Kim F. Storm <storm@cua.dk>
parents: 49229
diff changeset
1007 When a process has a filter, its buffer is not used for output.
f9e4999d3025 (set-process-filter): Document unibyte/multibyte-ness of string argument.
Kim F. Storm <storm@cua.dk>
parents: 49229
diff changeset
1008 Instead, each time it does output, the entire string of output is
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
1009 passed to the filter.
49281
f9e4999d3025 (set-process-filter): Document unibyte/multibyte-ness of string argument.
Kim F. Storm <storm@cua.dk>
parents: 49229
diff changeset
1010
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1011 The filter gets two arguments: the process and the string of output.
49281
f9e4999d3025 (set-process-filter): Document unibyte/multibyte-ness of string argument.
Kim F. Storm <storm@cua.dk>
parents: 49229
diff changeset
1012 The string argument is normally a multibyte string, except:
f9e4999d3025 (set-process-filter): Document unibyte/multibyte-ness of string argument.
Kim F. Storm <storm@cua.dk>
parents: 49229
diff changeset
1013 - if the process' input coding system is no-conversion or raw-text,
f9e4999d3025 (set-process-filter): Document unibyte/multibyte-ness of string argument.
Kim F. Storm <storm@cua.dk>
parents: 49229
diff changeset
1014 it is a unibyte string (the non-converted input), or else
f9e4999d3025 (set-process-filter): Document unibyte/multibyte-ness of string argument.
Kim F. Storm <storm@cua.dk>
parents: 49229
diff changeset
1015 - if `default-enable-multibyte-characters' is nil, it is a unibyte
f9e4999d3025 (set-process-filter): Document unibyte/multibyte-ness of string argument.
Kim F. Storm <storm@cua.dk>
parents: 49229
diff changeset
1016 string (the result of converting the decoded input multibyte
f9e4999d3025 (set-process-filter): Document unibyte/multibyte-ness of string argument.
Kim F. Storm <storm@cua.dk>
parents: 49229
diff changeset
1017 string to unibyte with `string-make-unibyte'). */)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1018 (process, filter)
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
1019 register Lisp_Object process, filter;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1020 {
36623
9fde2182c68a (Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents: 36434
diff changeset
1021 struct Lisp_Process *p;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
1022
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
1023 CHECK_PROCESS (process);
36623
9fde2182c68a (Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents: 36434
diff changeset
1024 p = XPROCESS (process);
9fde2182c68a (Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents: 36434
diff changeset
1025
9fde2182c68a (Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents: 36434
diff changeset
1026 /* Don't signal an error if the process' input file descriptor
9fde2182c68a (Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents: 36434
diff changeset
1027 is closed. This could make debugging Lisp more difficult,
9fde2182c68a (Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents: 36434
diff changeset
1028 for example when doing something like
9fde2182c68a (Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents: 36434
diff changeset
1029
9fde2182c68a (Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents: 36434
diff changeset
1030 (setq process (start-process ...))
9fde2182c68a (Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents: 36434
diff changeset
1031 (debug)
9fde2182c68a (Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents: 36434
diff changeset
1032 (set-process-filter process ...) */
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
1033
36623
9fde2182c68a (Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents: 36434
diff changeset
1034 if (XINT (p->infd) >= 0)
9686
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
1035 {
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1036 if (EQ (filter, Qt) && !EQ (p->status, Qlisten))
36623
9fde2182c68a (Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents: 36434
diff changeset
1037 {
9fde2182c68a (Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents: 36434
diff changeset
1038 FD_CLR (XINT (p->infd), &input_wait_mask);
9fde2182c68a (Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents: 36434
diff changeset
1039 FD_CLR (XINT (p->infd), &non_keyboard_wait_mask);
9fde2182c68a (Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents: 36434
diff changeset
1040 }
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1041 else if (EQ (p->filter, Qt)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1042 && !EQ (p->command, Qt)) /* Network process not stopped. */
36623
9fde2182c68a (Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents: 36434
diff changeset
1043 {
9fde2182c68a (Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents: 36434
diff changeset
1044 FD_SET (XINT (p->infd), &input_wait_mask);
9fde2182c68a (Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents: 36434
diff changeset
1045 FD_SET (XINT (p->infd), &non_keyboard_wait_mask);
9fde2182c68a (Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents: 36434
diff changeset
1046 }
9686
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
1047 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
1048
36623
9fde2182c68a (Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents: 36434
diff changeset
1049 p->filter = filter;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1050 if (NETCONN1_P (p))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1051 p->childp = Fplist_put (p->childp, QCfilter, filter);
49667
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
1052 setup_process_coding_systems (process);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1053 return filter;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1054 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1055
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1056 DEFUN ("process-filter", Fprocess_filter, Sprocess_filter,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1057 1, 1, 0,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1058 doc: /* Returns the filter function of PROCESS; nil if none.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1059 See `set-process-filter' for more info on filter functions. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1060 (process)
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
1061 register Lisp_Object process;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1062 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
1063 CHECK_PROCESS (process);
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
1064 return XPROCESS (process)->filter;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1065 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1066
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1067 DEFUN ("set-process-sentinel", Fset_process_sentinel, Sset_process_sentinel,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1068 2, 2, 0,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1069 doc: /* Give PROCESS the sentinel SENTINEL; nil for none.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1070 The sentinel is called as a function when the process changes state.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1071 It gets two arguments: the process, and a string describing the change. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1072 (process, sentinel)
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
1073 register Lisp_Object process, sentinel;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1074 {
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
1075 struct Lisp_Process *p;
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
1076
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
1077 CHECK_PROCESS (process);
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
1078 p = XPROCESS (process);
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
1079
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
1080 p->sentinel = sentinel;
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
1081 if (NETCONN1_P (p))
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
1082 p->childp = Fplist_put (p->childp, QCsentinel, sentinel);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1083 return sentinel;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1084 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1085
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1086 DEFUN ("process-sentinel", Fprocess_sentinel, Sprocess_sentinel,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1087 1, 1, 0,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1088 doc: /* Return the sentinel of PROCESS; nil if none.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1089 See `set-process-sentinel' for more info on sentinels. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1090 (process)
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
1091 register Lisp_Object process;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1092 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
1093 CHECK_PROCESS (process);
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
1094 return XPROCESS (process)->sentinel;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1095 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1096
6830
bcaddbe53068 (Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents: 6823
diff changeset
1097 DEFUN ("set-process-window-size", Fset_process_window_size,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1098 Sset_process_window_size, 3, 3, 0,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1099 doc: /* Tell PROCESS that it has logical window size HEIGHT and WIDTH. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1100 (process, height, width)
14085
85ce7bab31dc (Fprocessp, Fget_buffer_process, Fdelete_process, Fprocess_status,
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
1101 register Lisp_Object process, height, width;
6830
bcaddbe53068 (Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents: 6823
diff changeset
1102 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
1103 CHECK_PROCESS (process);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
1104 CHECK_NATNUM (height);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
1105 CHECK_NATNUM (width);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
1106
36659
c1c5ad73f700 (Fset_process_window_size): Fix a typo.
Gerd Moellmann <gerd@gnu.org>
parents: 36623
diff changeset
1107 if (XINT (XPROCESS (process)->infd) < 0
36623
9fde2182c68a (Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents: 36434
diff changeset
1108 || set_window_size (XINT (XPROCESS (process)->infd),
9fde2182c68a (Fset_process_filter): Don't crash if the input
Gerd Moellmann <gerd@gnu.org>
parents: 36434
diff changeset
1109 XINT (height), XINT (width)) <= 0)
6830
bcaddbe53068 (Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents: 6823
diff changeset
1110 return Qnil;
bcaddbe53068 (Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents: 6823
diff changeset
1111 else
bcaddbe53068 (Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents: 6823
diff changeset
1112 return Qt;
bcaddbe53068 (Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents: 6823
diff changeset
1113 }
bcaddbe53068 (Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents: 6823
diff changeset
1114
21656
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
1115 DEFUN ("set-process-inherit-coding-system-flag",
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1116 Fset_process_inherit_coding_system_flag,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1117 Sset_process_inherit_coding_system_flag, 2, 2, 0,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1118 doc: /* Determine whether buffer of PROCESS will inherit coding-system.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1119 If the second argument FLAG is non-nil, then the variable
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1120 `buffer-file-coding-system' of the buffer associated with PROCESS
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1121 will be bound to the value of the coding system used to decode
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1122 the process output.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1123
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1124 This is useful when the coding system specified for the process buffer
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1125 leaves either the character code conversion or the end-of-line conversion
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1126 unspecified, or if the coding system used to decode the process output
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1127 is more appropriate for saving the process buffer.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1128
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1129 Binding the variable `inherit-process-coding-system' to non-nil before
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1130 starting the process is an alternative way of setting the inherit flag
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1131 for the process which will run. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1132 (process, flag)
21656
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
1133 register Lisp_Object process, flag;
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
1134 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
1135 CHECK_PROCESS (process);
21848
050ea21cec87 (Fset_process_inherit_coding_system_flag, Fstart_process):
Richard M. Stallman <rms@gnu.org>
parents: 21798
diff changeset
1136 XPROCESS (process)->inherit_coding_system_flag = flag;
21656
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
1137 return flag;
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
1138 }
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
1139
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
1140 DEFUN ("process-inherit-coding-system-flag",
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1141 Fprocess_inherit_coding_system_flag, Sprocess_inherit_coding_system_flag,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1142 1, 1, 0,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1143 doc: /* Return the value of inherit-coding-system flag for PROCESS.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1144 If this flag is t, `buffer-file-coding-system' of the buffer
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1145 associated with PROCESS will inherit the coding system used to decode
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1146 the process output. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1147 (process)
21656
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
1148 register Lisp_Object process;
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
1149 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
1150 CHECK_PROCESS (process);
21848
050ea21cec87 (Fset_process_inherit_coding_system_flag, Fstart_process):
Richard M. Stallman <rms@gnu.org>
parents: 21798
diff changeset
1151 return XPROCESS (process)->inherit_coding_system_flag;
21656
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
1152 }
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
1153
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1154 DEFUN ("set-process-query-on-exit-flag",
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1155 Fset_process_query_on_exit_flag, Sset_process_query_on_exit_flag,
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1156 2, 2, 0,
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1157 doc: /* Specify if query is needed for PROCESS when Emacs is exited.
55444
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
1158 If the second argument FLAG is non-nil, Emacs will query the user before
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1159 exiting if PROCESS is running. */)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1160 (process, flag)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1161 register Lisp_Object process, flag;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1162 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
1163 CHECK_PROCESS (process);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1164 XPROCESS (process)->kill_without_query = Fnull (flag);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1165 return flag;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1166 }
4231
91a883c56382 (Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents: 4057
diff changeset
1167
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1168 DEFUN ("process-query-on-exit-flag",
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1169 Fprocess_query_on_exit_flag, Sprocess_query_on_exit_flag,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1170 1, 1, 0,
55444
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
1171 doc: /* Return the current value of query-on-exit flag for PROCESS. */)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1172 (process)
16058
924aeb9ed7c3 (Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents: 16053
diff changeset
1173 register Lisp_Object process;
924aeb9ed7c3 (Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents: 16053
diff changeset
1174 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
1175 CHECK_PROCESS (process);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1176 return Fnull (XPROCESS (process)->kill_without_query);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1177 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1178
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1179 #ifdef DATAGRAM_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1180 Lisp_Object Fprocess_datagram_address ();
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1181 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1182
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1183 DEFUN ("process-contact", Fprocess_contact, Sprocess_contact,
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1184 1, 2, 0,
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1185 doc: /* Return the contact info of PROCESS; t for a real child.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1186 For a net connection, the value depends on the optional KEY arg.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1187 If KEY is nil, value is a cons cell of the form (HOST SERVICE),
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1188 if KEY is t, the complete contact information for the connection is
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1189 returned, else the specific value for the keyword KEY is returned.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1190 See `make-network-process' for a list of keywords. */)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1191 (process, key)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1192 register Lisp_Object process, key;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1193 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1194 Lisp_Object contact;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1195
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1196 CHECK_PROCESS (process);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1197 contact = XPROCESS (process)->childp;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1198
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1199 #ifdef DATAGRAM_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1200 if (DATAGRAM_CONN_P (process)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1201 && (EQ (key, Qt) || EQ (key, QCremote)))
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
1202 contact = Fplist_put (contact, QCremote,
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1203 Fprocess_datagram_address (process));
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1204 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1205
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1206 if (!NETCONN_P (process) || EQ (key, Qt))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1207 return contact;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1208 if (NILP (key))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1209 return Fcons (Fplist_get (contact, QChost),
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1210 Fcons (Fplist_get (contact, QCservice), Qnil));
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1211 return Fplist_get (contact, key);
16058
924aeb9ed7c3 (Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents: 16053
diff changeset
1212 }
924aeb9ed7c3 (Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents: 16053
diff changeset
1213
49223
26622fa0d099 Reworked 2003-01-12 change -- call a plist a plist!
Kim F. Storm <storm@cua.dk>
parents: 49164
diff changeset
1214 DEFUN ("process-plist", Fprocess_plist, Sprocess_plist,
26622fa0d099 Reworked 2003-01-12 change -- call a plist a plist!
Kim F. Storm <storm@cua.dk>
parents: 49164
diff changeset
1215 1, 1, 0,
26622fa0d099 Reworked 2003-01-12 change -- call a plist a plist!
Kim F. Storm <storm@cua.dk>
parents: 49164
diff changeset
1216 doc: /* Return the plist of PROCESS. */)
26622fa0d099 Reworked 2003-01-12 change -- call a plist a plist!
Kim F. Storm <storm@cua.dk>
parents: 49164
diff changeset
1217 (process)
26622fa0d099 Reworked 2003-01-12 change -- call a plist a plist!
Kim F. Storm <storm@cua.dk>
parents: 49164
diff changeset
1218 register Lisp_Object process;
49164
8bee0ccd5fd6 (QCvars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 49142
diff changeset
1219 {
8bee0ccd5fd6 (QCvars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 49142
diff changeset
1220 CHECK_PROCESS (process);
49223
26622fa0d099 Reworked 2003-01-12 change -- call a plist a plist!
Kim F. Storm <storm@cua.dk>
parents: 49164
diff changeset
1221 return XPROCESS (process)->plist;
49164
8bee0ccd5fd6 (QCvars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 49142
diff changeset
1222 }
8bee0ccd5fd6 (QCvars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 49142
diff changeset
1223
49223
26622fa0d099 Reworked 2003-01-12 change -- call a plist a plist!
Kim F. Storm <storm@cua.dk>
parents: 49164
diff changeset
1224 DEFUN ("set-process-plist", Fset_process_plist, Sset_process_plist,
26622fa0d099 Reworked 2003-01-12 change -- call a plist a plist!
Kim F. Storm <storm@cua.dk>
parents: 49164
diff changeset
1225 2, 2, 0,
49229
a3af03912e6f (Fset_process_plist): Fixed return value.
Kim F. Storm <storm@cua.dk>
parents: 49223
diff changeset
1226 doc: /* Replace the plist of PROCESS with PLIST. Returns PLIST. */)
49223
26622fa0d099 Reworked 2003-01-12 change -- call a plist a plist!
Kim F. Storm <storm@cua.dk>
parents: 49164
diff changeset
1227 (process, plist)
26622fa0d099 Reworked 2003-01-12 change -- call a plist a plist!
Kim F. Storm <storm@cua.dk>
parents: 49164
diff changeset
1228 register Lisp_Object process, plist;
49142
8dca38bc0261 (Fset_process_contact): New function.
Kim F. Storm <storm@cua.dk>
parents: 49119
diff changeset
1229 {
8dca38bc0261 (Fset_process_contact): New function.
Kim F. Storm <storm@cua.dk>
parents: 49119
diff changeset
1230 CHECK_PROCESS (process);
49223
26622fa0d099 Reworked 2003-01-12 change -- call a plist a plist!
Kim F. Storm <storm@cua.dk>
parents: 49164
diff changeset
1231 CHECK_LIST (plist);
26622fa0d099 Reworked 2003-01-12 change -- call a plist a plist!
Kim F. Storm <storm@cua.dk>
parents: 49164
diff changeset
1232
26622fa0d099 Reworked 2003-01-12 change -- call a plist a plist!
Kim F. Storm <storm@cua.dk>
parents: 49164
diff changeset
1233 XPROCESS (process)->plist = plist;
49229
a3af03912e6f (Fset_process_plist): Fixed return value.
Kim F. Storm <storm@cua.dk>
parents: 49223
diff changeset
1234 return plist;
49142
8dca38bc0261 (Fset_process_contact): New function.
Kim F. Storm <storm@cua.dk>
parents: 49119
diff changeset
1235 }
8dca38bc0261 (Fset_process_contact): New function.
Kim F. Storm <storm@cua.dk>
parents: 49119
diff changeset
1236
4231
91a883c56382 (Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents: 4057
diff changeset
1237 #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
1238 in the process. Perhaps add it. */
91a883c56382 (Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents: 4057
diff changeset
1239 DEFUN ("process-connection", Fprocess_connection, Sprocess_connection, 1, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1240 doc: /* Return the connection type of PROCESS.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1241 The value is nil for a pipe, t or `pty' for a pty, or `stream' for
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1242 a socket connection. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1243 (process)
4231
91a883c56382 (Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents: 4057
diff changeset
1244 Lisp_Object process;
91a883c56382 (Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents: 4057
diff changeset
1245 {
91a883c56382 (Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents: 4057
diff changeset
1246 return XPROCESS (process)->type;
91a883c56382 (Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents: 4057
diff changeset
1247 }
91a883c56382 (Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents: 4057
diff changeset
1248 #endif
47987
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1249
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1250 #ifdef HAVE_SOCKETS
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1251 DEFUN ("format-network-address", Fformat_network_address, Sformat_network_address,
49114
c87af62cc6b4 (format-network-address): Added optional OMIT-PORT arg. Callers changed.
Kim F. Storm <storm@cua.dk>
parents: 49111
diff changeset
1252 1, 2, 0,
47987
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1253 doc: /* Convert network ADDRESS from internal format to a string.
68008
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
1254 A 4 or 5 element vector represents an IPv4 address (with port number).
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
1255 An 8 or 9 element vector represents an IPv6 address (with port number).
49114
c87af62cc6b4 (format-network-address): Added optional OMIT-PORT arg. Callers changed.
Kim F. Storm <storm@cua.dk>
parents: 49111
diff changeset
1256 If optional second argument OMIT-PORT is non-nil, don't include a port
68008
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
1257 number in the string, even when present in ADDRESS.
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
1258 Returns nil if format of ADDRESS is invalid. */)
49114
c87af62cc6b4 (format-network-address): Added optional OMIT-PORT arg. Callers changed.
Kim F. Storm <storm@cua.dk>
parents: 49111
diff changeset
1259 (address, omit_port)
c87af62cc6b4 (format-network-address): Added optional OMIT-PORT arg. Callers changed.
Kim F. Storm <storm@cua.dk>
parents: 49111
diff changeset
1260 Lisp_Object address, omit_port;
47987
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1261 {
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1262 if (NILP (address))
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1263 return Qnil;
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1264
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1265 if (STRINGP (address)) /* AF_LOCAL */
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1266 return address;
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1267
68008
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
1268 if (VECTORP (address)) /* AF_INET or AF_INET6 */
47987
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1269 {
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1270 register struct Lisp_Vector *p = XVECTOR (address);
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1271 Lisp_Object args[6];
49114
c87af62cc6b4 (format-network-address): Added optional OMIT-PORT arg. Callers changed.
Kim F. Storm <storm@cua.dk>
parents: 49111
diff changeset
1272 int nargs, i;
c87af62cc6b4 (format-network-address): Added optional OMIT-PORT arg. Callers changed.
Kim F. Storm <storm@cua.dk>
parents: 49111
diff changeset
1273
68008
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
1274 if (p->size == 4 || (p->size == 5 && !NILP (omit_port)))
49114
c87af62cc6b4 (format-network-address): Added optional OMIT-PORT arg. Callers changed.
Kim F. Storm <storm@cua.dk>
parents: 49111
diff changeset
1275 {
c87af62cc6b4 (format-network-address): Added optional OMIT-PORT arg. Callers changed.
Kim F. Storm <storm@cua.dk>
parents: 49111
diff changeset
1276 args[0] = build_string ("%d.%d.%d.%d");
c87af62cc6b4 (format-network-address): Added optional OMIT-PORT arg. Callers changed.
Kim F. Storm <storm@cua.dk>
parents: 49111
diff changeset
1277 nargs = 4;
c87af62cc6b4 (format-network-address): Added optional OMIT-PORT arg. Callers changed.
Kim F. Storm <storm@cua.dk>
parents: 49111
diff changeset
1278 }
c87af62cc6b4 (format-network-address): Added optional OMIT-PORT arg. Callers changed.
Kim F. Storm <storm@cua.dk>
parents: 49111
diff changeset
1279 else if (p->size == 5)
c87af62cc6b4 (format-network-address): Added optional OMIT-PORT arg. Callers changed.
Kim F. Storm <storm@cua.dk>
parents: 49111
diff changeset
1280 {
c87af62cc6b4 (format-network-address): Added optional OMIT-PORT arg. Callers changed.
Kim F. Storm <storm@cua.dk>
parents: 49111
diff changeset
1281 args[0] = build_string ("%d.%d.%d.%d:%d");
c87af62cc6b4 (format-network-address): Added optional OMIT-PORT arg. Callers changed.
Kim F. Storm <storm@cua.dk>
parents: 49111
diff changeset
1282 nargs = 5;
c87af62cc6b4 (format-network-address): Added optional OMIT-PORT arg. Callers changed.
Kim F. Storm <storm@cua.dk>
parents: 49111
diff changeset
1283 }
68008
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
1284 else if (p->size == 8 || (p->size == 9 && !NILP (omit_port)))
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
1285 {
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
1286 args[0] = build_string ("%x:%x:%x:%x:%x:%x:%x:%x");
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
1287 nargs = 8;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
1288 }
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
1289 else if (p->size == 9)
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
1290 {
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
1291 args[0] = build_string ("[%x:%x:%x:%x:%x:%x:%x:%x]:%d");
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
1292 nargs = 9;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
1293 }
49114
c87af62cc6b4 (format-network-address): Added optional OMIT-PORT arg. Callers changed.
Kim F. Storm <storm@cua.dk>
parents: 49111
diff changeset
1294 else
47987
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1295 return Qnil;
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1296
49114
c87af62cc6b4 (format-network-address): Added optional OMIT-PORT arg. Callers changed.
Kim F. Storm <storm@cua.dk>
parents: 49111
diff changeset
1297 for (i = 0; i < nargs; i++)
c87af62cc6b4 (format-network-address): Added optional OMIT-PORT arg. Callers changed.
Kim F. Storm <storm@cua.dk>
parents: 49111
diff changeset
1298 args[i+1] = p->contents[i];
c87af62cc6b4 (format-network-address): Added optional OMIT-PORT arg. Callers changed.
Kim F. Storm <storm@cua.dk>
parents: 49111
diff changeset
1299 return Fformat (nargs+1, args);
47987
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1300 }
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1301
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1302 if (CONSP (address))
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1303 {
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1304 Lisp_Object args[2];
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1305 args[0] = build_string ("<Family %d>");
48097
21d7f2c18976 (Fformat_network_address): Fix int/Lisp_Object mixup.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 48088
diff changeset
1306 args[1] = Fcar (address);
47987
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1307 return Fformat (2, args);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
1308
47987
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1309 }
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1310
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1311 return Qnil;
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1312 }
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1313 #endif
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1314
64977
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
1315 static Lisp_Object
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1316 list_processes_1 (query_only)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1317 Lisp_Object query_only;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1318 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1319 register Lisp_Object tail, tem;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1320 Lisp_Object proc, minspace, tem1;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1321 register struct Lisp_Process *p;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1322 char tembuf[300];
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1323 int w_proc, w_buffer, w_tty;
73225
ff880e40efba (list_processes_1): Run sentinels before removing dead
Kim F. Storm <storm@cua.dk>
parents: 72727
diff changeset
1324 int exited = 0;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1325 Lisp_Object i_status, i_buffer, i_tty, i_command;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1326
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1327 w_proc = 4; /* Proc */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1328 w_buffer = 6; /* Buffer */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1329 w_tty = 0; /* Omit if no ttys */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1330
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1331 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1332 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1333 int i;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1334
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1335 proc = Fcdr (Fcar (tail));
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1336 p = XPROCESS (proc);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1337 if (NILP (p->childp))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1338 continue;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1339 if (!NILP (query_only) && !NILP (p->kill_without_query))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1340 continue;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1341 if (STRINGP (p->name)
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
1342 && ( i = SCHARS (p->name), (i > w_proc)))
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1343 w_proc = i;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1344 if (!NILP (p->buffer))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1345 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1346 if (NILP (XBUFFER (p->buffer)->name) && w_buffer < 8)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1347 w_buffer = 8; /* (Killed) */
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
1348 else if ((i = SCHARS (XBUFFER (p->buffer)->name), (i > w_buffer)))
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1349 w_buffer = i;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1350 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1351 if (STRINGP (p->tty_name)
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
1352 && (i = SCHARS (p->tty_name), (i > w_tty)))
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1353 w_tty = i;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1354 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1355
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1356 XSETFASTINT (i_status, w_proc + 1);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1357 XSETFASTINT (i_buffer, XFASTINT (i_status) + 9);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1358 if (w_tty)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1359 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1360 XSETFASTINT (i_tty, XFASTINT (i_buffer) + w_buffer + 1);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1361 XSETFASTINT (i_command, XFASTINT (i_buffer) + w_tty + 1);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1362 } else {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1363 i_tty = Qnil;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1364 XSETFASTINT (i_command, XFASTINT (i_buffer) + w_buffer + 1);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1365 }
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1366
9318
a14cc1712337 (make_process, list_processes_1, create_process, Faccept_process_output,
Karl Heuer <kwzh@gnu.org>
parents: 9277
diff changeset
1367 XSETFASTINT (minspace, 1);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1368
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1369 set_buffer_internal (XBUFFER (Vstandard_output));
59113
8cf8b4fa2543 (list_processes_1): Set undo_list instead of calling Fbuffer_undo_list.
Richard M. Stallman <rms@gnu.org>
parents: 58986
diff changeset
1370 current_buffer->undo_list = Qt;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1371
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1372 current_buffer->truncate_lines = Qt;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1373
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1374 write_string ("Proc", -1);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1375 Findent_to (i_status, minspace); write_string ("Status", -1);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1376 Findent_to (i_buffer, minspace); write_string ("Buffer", -1);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1377 if (!NILP (i_tty))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1378 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1379 Findent_to (i_tty, minspace); write_string ("Tty", -1);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1380 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1381 Findent_to (i_command, minspace); write_string ("Command", -1);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1382 write_string ("\n", -1);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1383
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1384 write_string ("----", -1);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1385 Findent_to (i_status, minspace); write_string ("------", -1);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1386 Findent_to (i_buffer, minspace); write_string ("------", -1);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1387 if (!NILP (i_tty))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1388 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1389 Findent_to (i_tty, minspace); write_string ("---", -1);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1390 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1391 Findent_to (i_command, minspace); write_string ("-------", -1);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1392 write_string ("\n", -1);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1393
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1394 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1395 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1396 Lisp_Object symbol;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1397
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1398 proc = Fcdr (Fcar (tail));
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1399 p = XPROCESS (proc);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1400 if (NILP (p->childp))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1401 continue;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1402 if (!NILP (query_only) && !NILP (p->kill_without_query))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1403 continue;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1404
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1405 Finsert (1, &p->name);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1406 Findent_to (i_status, minspace);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1407
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
1408 if (p->raw_status_new)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1409 update_status (p);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1410 symbol = p->status;
9115
59bc2d010b5f (decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents: 9034
diff changeset
1411 if (CONSP (p->status))
25645
a14111a2a100 Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25356
diff changeset
1412 symbol = XCAR (p->status);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1413
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
1414
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1415 if (EQ (symbol, Qsignal))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1416 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1417 Lisp_Object tem;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1418 tem = Fcar (Fcdr (p->status));
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1419 #ifdef VMS
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1420 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
1421 write_string (sys_errlist [XINT (tem)], -1);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1422 else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1423 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1424 Fprinc (symbol, Qnil);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1425 }
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1426 else if (NETCONN1_P (p))
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1427 {
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1428 if (EQ (symbol, Qexit))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1429 write_string ("closed", -1);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1430 else if (EQ (p->command, Qt))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1431 write_string ("stopped", -1);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1432 else if (EQ (symbol, Qrun))
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1433 write_string ("open", -1);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1434 else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1435 Fprinc (symbol, Qnil);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1436 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1437 else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1438 Fprinc (symbol, Qnil);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1439
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1440 if (EQ (symbol, Qexit))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1441 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1442 Lisp_Object tem;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1443 tem = Fcar (Fcdr (p->status));
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1444 if (XFASTINT (tem))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1445 {
11695
0f9b9c375416 (list_processes_1): Cast XFASTINT for passing to sprintf.
Richard M. Stallman <rms@gnu.org>
parents: 11609
diff changeset
1446 sprintf (tembuf, " %d", (int) XFASTINT (tem));
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1447 write_string (tembuf, -1);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1448 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1449 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1450
73225
ff880e40efba (list_processes_1): Run sentinels before removing dead
Kim F. Storm <storm@cua.dk>
parents: 72727
diff changeset
1451 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit) || EQ (symbol, Qclosed))
ff880e40efba (list_processes_1): Run sentinels before removing dead
Kim F. Storm <storm@cua.dk>
parents: 72727
diff changeset
1452 exited++;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1453
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1454 Findent_to (i_buffer, minspace);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1455 if (NILP (p->buffer))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1456 insert_string ("(none)");
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1457 else if (NILP (XBUFFER (p->buffer)->name))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1458 insert_string ("(Killed)");
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1459 else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1460 Finsert (1, &XBUFFER (p->buffer)->name);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1461
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1462 if (!NILP (i_tty))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1463 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1464 Findent_to (i_tty, minspace);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1465 if (STRINGP (p->tty_name))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1466 Finsert (1, &p->tty_name);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1467 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1468
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1469 Findent_to (i_command, minspace);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1470
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1471 if (EQ (p->status, Qlisten))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1472 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1473 Lisp_Object port = Fplist_get (p->childp, QCservice);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1474 if (INTEGERP (port))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1475 port = Fnumber_to_string (port);
47987
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1476 if (NILP (port))
49114
c87af62cc6b4 (format-network-address): Added optional OMIT-PORT arg. Callers changed.
Kim F. Storm <storm@cua.dk>
parents: 49111
diff changeset
1477 port = Fformat_network_address (Fplist_get (p->childp, QClocal), Qnil);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1478 sprintf (tembuf, "(network %s server on %s)\n",
44314
f76a1425eb34 (DATAGRAM_CONN_P, list_processes_1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 44194
diff changeset
1479 (DATAGRAM_CHAN_P (XINT (p->infd)) ? "datagram" : "stream"),
47987
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1480 (STRINGP (port) ? (char *)SDATA (port) : "?"));
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1481 insert_string (tembuf);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1482 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1483 else if (NETCONN1_P (p))
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1484 {
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1485 /* For a local socket, there is no host name,
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1486 so display service instead. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1487 Lisp_Object host = Fplist_get (p->childp, QChost);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1488 if (!STRINGP (host))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1489 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1490 host = Fplist_get (p->childp, QCservice);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1491 if (INTEGERP (host))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1492 host = Fnumber_to_string (host);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1493 }
47987
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1494 if (NILP (host))
49114
c87af62cc6b4 (format-network-address): Added optional OMIT-PORT arg. Callers changed.
Kim F. Storm <storm@cua.dk>
parents: 49111
diff changeset
1495 host = Fformat_network_address (Fplist_get (p->childp, QCremote), Qnil);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1496 sprintf (tembuf, "(network %s connection to %s)\n",
44314
f76a1425eb34 (DATAGRAM_CONN_P, list_processes_1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 44194
diff changeset
1497 (DATAGRAM_CHAN_P (XINT (p->infd)) ? "datagram" : "stream"),
47987
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
1498 (STRINGP (host) ? (char *)SDATA (host) : "?"));
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1499 insert_string (tembuf);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1500 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
1501 else
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1502 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1503 tem = p->command;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1504 while (1)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1505 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1506 tem1 = Fcar (tem);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1507 Finsert (1, &tem1);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1508 tem = Fcdr (tem);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1509 if (NILP (tem))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1510 break;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1511 insert_string (" ");
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1512 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1513 insert_string ("\n");
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1514 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1515 }
73225
ff880e40efba (list_processes_1): Run sentinels before removing dead
Kim F. Storm <storm@cua.dk>
parents: 72727
diff changeset
1516 if (exited)
ff880e40efba (list_processes_1): Run sentinels before removing dead
Kim F. Storm <storm@cua.dk>
parents: 72727
diff changeset
1517 status_notify (NULL);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1518 return Qnil;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1519 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1520
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1521 DEFUN ("list-processes", Flist_processes, Slist_processes, 0, 1, "P",
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1522 doc: /* Display a list of all processes.
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1523 If optional argument QUERY-ONLY is non-nil, only processes with
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1524 the query-on-exit flag set will be listed.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1525 Any process listed as exited or signaled is actually eliminated
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1526 after the listing is made. */)
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1527 (query_only)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1528 Lisp_Object query_only;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1529 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1530 internal_with_output_to_temp_buffer ("*Process List*",
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
1531 list_processes_1, query_only);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1532 return Qnil;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1533 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1534
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1535 DEFUN ("process-list", Fprocess_list, Sprocess_list, 0, 0, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1536 doc: /* Return a list of all processes. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1537 ()
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1538 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1539 return Fmapcar (Qcdr, Vprocess_alist);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1540 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1541
1594
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
1542 /* 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
1543
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
1544 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
1545
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1546 DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1547 doc: /* Start a program in a subprocess. Return the process object for it.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1548 NAME is name for process. It is modified if necessary to make it unique.
55504
05e8ea84c376 (Fstart_process): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 55444
diff changeset
1549 BUFFER is the buffer (or buffer name) to associate with the process.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1550 Process output goes at end of that buffer, unless you specify
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1551 an output stream or filter function to handle the output.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1552 BUFFER may be also nil, meaning that this process is not associated
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1553 with any buffer.
55504
05e8ea84c376 (Fstart_process): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 55444
diff changeset
1554 PROGRAM is the program file name. It is searched for in PATH.
40641
d94fc1022312 (Fstart_process): Add usage to doc-string.
Pavel Janík <Pavel@Janik.cz>
parents: 40231
diff changeset
1555 Remaining arguments are strings to give program as arguments.
44170
888d736c0e91 (set-network-process-options): Add usage.
Pavel Janík <Pavel@Janik.cz>
parents: 44073
diff changeset
1556
40641
d94fc1022312 (Fstart_process): Add usage to doc-string.
Pavel Janík <Pavel@Janik.cz>
parents: 40231
diff changeset
1557 usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1558 (nargs, args)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1559 int nargs;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1560 register Lisp_Object *args;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1561 {
1683
a0a41de51400 Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents: 1655
diff changeset
1562 Lisp_Object buffer, name, program, proc, current_dir, tem;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1563 #ifdef VMS
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1564 register unsigned char *new_argv;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1565 int len;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1566 #else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1567 register unsigned char **new_argv;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1568 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1569 register int i;
46293
1fb8f75062c6 Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents: 45410
diff changeset
1570 int count = SPECPDL_INDEX ();
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1571
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1572 buffer = args[1];
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1573 if (!NILP (buffer))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1574 buffer = Fget_buffer_create (buffer);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1575
1683
a0a41de51400 Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents: 1655
diff changeset
1576 /* 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
1577 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
1578 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
1579 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
1580
a0a41de51400 Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents: 1655
diff changeset
1581 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
1582 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
1583 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
1584 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
1585 {
a0a41de51400 Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents: 1655
diff changeset
1586 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
1587
a0a41de51400 Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents: 1655
diff changeset
1588 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
1589
a0a41de51400 Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents: 1655
diff changeset
1590 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
1591
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
1592 current_dir
10744
54a76e0b97ec (Fstart_process): Make process marker point into proc buf.
Richard M. Stallman <rms@gnu.org>
parents: 10548
diff changeset
1593 = 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
1594 Qnil);
1683
a0a41de51400 Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents: 1655
diff changeset
1595 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
1596 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
1597 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
1598
a0a41de51400 Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents: 1655
diff changeset
1599 UNGCPRO;
a0a41de51400 Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents: 1655
diff changeset
1600 }
a0a41de51400 Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents: 1655
diff changeset
1601
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1602 name = args[0];
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
1603 CHECK_STRING (name);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1604
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1605 program = args[2];
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1606
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
1607 CHECK_STRING (program);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1608
29017
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1609 proc = make_process (name);
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1610 /* If an error occurs and we can't start the process, we want to
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1611 remove it from the process list. This means that each error
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1612 check in create_process doesn't need to call remove_process
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1613 itself; it's all taken care of here. */
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1614 record_unwind_protect (start_process_unwind, proc);
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1615
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1616 XPROCESS (proc)->childp = Qt;
49223
26622fa0d099 Reworked 2003-01-12 change -- call a plist a plist!
Kim F. Storm <storm@cua.dk>
parents: 49164
diff changeset
1617 XPROCESS (proc)->plist = Qnil;
29017
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1618 XPROCESS (proc)->buffer = buffer;
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1619 XPROCESS (proc)->sentinel = Qnil;
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1620 XPROCESS (proc)->filter = Qnil;
49667
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
1621 XPROCESS (proc)->filter_multibyte
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
1622 = buffer_defaults.enable_multibyte_characters;
29017
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1623 XPROCESS (proc)->command = Flist (nargs - 2, args + 2);
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1624
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
1625 #ifdef ADAPTIVE_READ_BUFFERING
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
1626 XPROCESS (proc)->adaptive_read_buffering = Vprocess_adaptive_read_buffering;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
1627 #endif
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
1628
29017
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1629 /* Make the process marker point into the process buffer (if any). */
69151
08c9c1760e1c (Fmake_network_process): Init the process's mark.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 68651
diff changeset
1630 if (BUFFERP (buffer))
29017
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1631 set_marker_both (XPROCESS (proc)->mark, buffer,
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1632 BUF_ZV (XBUFFER (buffer)),
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1633 BUF_ZV_BYTE (XBUFFER (buffer)));
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1634
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1635 {
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1636 /* Decide coding systems for communicating with the process. Here
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1637 we don't setup the structure coding_system nor pay attention to
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1638 unibyte mode. They are done in create_process. */
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1639
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1640 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1641 Lisp_Object coding_systems = Qt;
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1642 Lisp_Object val, *args2;
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1643 struct gcpro gcpro1, gcpro2;
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1644
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1645 val = Vcoding_system_for_read;
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1646 if (NILP (val))
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1647 {
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1648 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1649 args2[0] = Qstart_process;
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1650 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1651 GCPRO2 (proc, current_dir);
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1652 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1653 UNGCPRO;
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1654 if (CONSP (coding_systems))
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1655 val = XCAR (coding_systems);
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1656 else if (CONSP (Vdefault_process_coding_system))
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1657 val = XCAR (Vdefault_process_coding_system);
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1658 }
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1659 XPROCESS (proc)->decode_coding_system = val;
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1660
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1661 val = Vcoding_system_for_write;
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1662 if (NILP (val))
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1663 {
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1664 if (EQ (coding_systems, Qt))
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1665 {
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1666 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof args2);
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1667 args2[0] = Qstart_process;
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1668 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1669 GCPRO2 (proc, current_dir);
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1670 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1671 UNGCPRO;
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1672 }
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1673 if (CONSP (coding_systems))
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1674 val = XCDR (coding_systems);
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1675 else if (CONSP (Vdefault_process_coding_system))
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1676 val = XCDR (Vdefault_process_coding_system);
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1677 }
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1678 XPROCESS (proc)->encode_coding_system = val;
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1679 }
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1680
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1681 #ifdef VMS
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1682 /* Make a one member argv with all args concatenated
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1683 together separated by a blank. */
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
1684 len = SBYTES (program) + 2;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1685 for (i = 3; i < nargs; i++)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1686 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1687 tem = args[i];
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
1688 CHECK_STRING (tem);
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
1689 len += SBYTES (tem) + 1; /* count the blank */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1690 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1691 new_argv = (unsigned char *) alloca (len);
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
1692 strcpy (new_argv, SDATA (program));
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1693 for (i = 3; i < nargs; i++)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1694 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1695 tem = args[i];
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
1696 CHECK_STRING (tem);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1697 strcat (new_argv, " ");
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
1698 strcat (new_argv, SDATA (tem));
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1699 }
1594
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
1700 /* Need to add code here to check for program existence on VMS */
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
1701
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1702 #else /* not VMS */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1703 new_argv = (unsigned char **) alloca ((nargs - 1) * sizeof (char *));
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1704
47020
de9a20871faa (Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents: 46431
diff changeset
1705 /* If program file name is not absolute, search our path for it.
de9a20871faa (Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents: 46431
diff changeset
1706 Put the name we will really use in TEM. */
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
1707 if (!IS_DIRECTORY_SEP (SREF (program, 0))
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
1708 && !(SCHARS (program) > 1
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
1709 && IS_DEVICE_SEP (SREF (program, 1))))
6390
9f8ce71435de (Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents: 6345
diff changeset
1710 {
9f8ce71435de (Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents: 6345
diff changeset
1711 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
9f8ce71435de (Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents: 6345
diff changeset
1712
9f8ce71435de (Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents: 6345
diff changeset
1713 tem = Qnil;
9f8ce71435de (Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents: 6345
diff changeset
1714 GCPRO4 (name, program, buffer, current_dir);
45005
084928cfcfcb (Fstart_process): Update call to openp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 44890
diff changeset
1715 openp (Vexec_path, program, Vexec_suffixes, &tem, make_number (X_OK));
6390
9f8ce71435de (Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents: 6345
diff changeset
1716 UNGCPRO;
9f8ce71435de (Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents: 6345
diff changeset
1717 if (NILP (tem))
9f8ce71435de (Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents: 6345
diff changeset
1718 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
1719 tem = Fexpand_file_name (tem, Qnil);
6390
9f8ce71435de (Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents: 6345
diff changeset
1720 }
9f8ce71435de (Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents: 6345
diff changeset
1721 else
12491
4ad7be34ece1 (Fstart_process): Expand PROGRAM.
Richard M. Stallman <rms@gnu.org>
parents: 12378
diff changeset
1722 {
4ad7be34ece1 (Fstart_process): Expand PROGRAM.
Richard M. Stallman <rms@gnu.org>
parents: 12378
diff changeset
1723 if (!NILP (Ffile_directory_p (program)))
4ad7be34ece1 (Fstart_process): Expand PROGRAM.
Richard M. Stallman <rms@gnu.org>
parents: 12378
diff changeset
1724 error ("Specified program for new process is a directory");
47020
de9a20871faa (Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents: 46431
diff changeset
1725 tem = program;
12491
4ad7be34ece1 (Fstart_process): Expand PROGRAM.
Richard M. Stallman <rms@gnu.org>
parents: 12378
diff changeset
1726 }
6390
9f8ce71435de (Fstart_process): GCPRO some things.
Karl Heuer <kwzh@gnu.org>
parents: 6345
diff changeset
1727
47020
de9a20871faa (Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents: 46431
diff changeset
1728 /* If program file name starts with /: for quoting a magic name,
de9a20871faa (Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents: 46431
diff changeset
1729 discard that. */
de9a20871faa (Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents: 46431
diff changeset
1730 if (SBYTES (tem) > 2 && SREF (tem, 0) == '/'
de9a20871faa (Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents: 46431
diff changeset
1731 && SREF (tem, 1) == ':')
de9a20871faa (Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents: 46431
diff changeset
1732 tem = Fsubstring (tem, make_number (2), Qnil);
de9a20871faa (Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents: 46431
diff changeset
1733
de9a20871faa (Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents: 46431
diff changeset
1734 /* Encode the file name and put it in NEW_ARGV.
de9a20871faa (Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents: 46431
diff changeset
1735 That's where the child will use it to execute the program. */
de9a20871faa (Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents: 46431
diff changeset
1736 tem = ENCODE_FILE (tem);
de9a20871faa (Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents: 46431
diff changeset
1737 new_argv[0] = SDATA (tem);
de9a20871faa (Fstart_process): Remove /: from program name.
Richard M. Stallman <rms@gnu.org>
parents: 46431
diff changeset
1738
29017
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1739 /* Here we encode arguments by the coding system used for sending
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1740 data to the process. We don't support using different coding
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1741 systems for encoding arguments and for encoding data sent to the
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1742 process. */
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1743
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1744 for (i = 3; i < nargs; i++)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1745 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1746 tem = args[i];
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
1747 CHECK_STRING (tem);
29017
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1748 if (STRING_MULTIBYTE (tem))
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1749 tem = (code_convert_string_norecord
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
1750 (tem, XPROCESS (proc)->encode_coding_system, 1));
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
1751 new_argv[i - 2] = SDATA (tem);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1752 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1753 new_argv[i - 2] = 0;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1754 #endif /* not VMS */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1755
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
1756 XPROCESS (proc)->decoding_buf = make_uninit_string (0);
20715
5e983ddb85c9 (Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents: 20708
diff changeset
1757 XPROCESS (proc)->decoding_carryover = make_number (0);
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
1758 XPROCESS (proc)->encoding_buf = make_uninit_string (0);
20715
5e983ddb85c9 (Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents: 20708
diff changeset
1759 XPROCESS (proc)->encoding_carryover = make_number (0);
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
1760
21656
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
1761 XPROCESS (proc)->inherit_coding_system_flag
21848
050ea21cec87 (Fset_process_inherit_coding_system_flag, Fstart_process):
Richard M. Stallman <rms@gnu.org>
parents: 21798
diff changeset
1762 = (NILP (buffer) || !inherit_process_coding_system
050ea21cec87 (Fset_process_inherit_coding_system_flag, Fstart_process):
Richard M. Stallman <rms@gnu.org>
parents: 21798
diff changeset
1763 ? Qnil : Qt);
21656
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
1764
20382
dbad9367d232 (create_process, deactivate_process, close_process_descs):
Andreas Schwab <schwab@suse.de>
parents: 20225
diff changeset
1765 create_process (proc, (char **) new_argv, current_dir);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1766
1594
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
1767 return unbind_to (count, proc);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1768 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1769
1594
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
1770 /* This function is the unwind_protect form for Fstart_process. If
14036
621a575db6f7 Comment fixes.
Karl Heuer <kwzh@gnu.org>
parents: 13777
diff changeset
1771 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
1772 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
1773 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
1774 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
1775 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
1776 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
1777 {
9115
59bc2d010b5f (decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents: 9034
diff changeset
1778 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
1779 abort ();
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
1780
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
1781 /* Was PROC started successfully? */
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
1782 if (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
1783 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
1784
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
1785 return Qnil;
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
1786 }
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
1787
64977
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
1788 static void
27430
1aa71680fe50 (toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents: 27028
diff changeset
1789 create_process_1 (timer)
1aa71680fe50 (toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents: 27028
diff changeset
1790 struct atimer *timer;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1791 {
27430
1aa71680fe50 (toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents: 27028
diff changeset
1792 /* Nothing to do. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1793 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1794
27430
1aa71680fe50 (toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents: 27028
diff changeset
1795
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1796 #if 0 /* This doesn't work; see the note before sigchld_handler. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1797 #ifdef USG
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1798 #ifdef SIGCHLD
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1799 /* Mimic blocking of signals on system V, which doesn't really have it. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1800
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1801 /* Nonzero means we got a SIGCHLD when it was supposed to be blocked. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1802 int sigchld_deferred;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1803
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1804 SIGTYPE
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1805 create_process_sigchld ()
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1806 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1807 signal (SIGCHLD, create_process_sigchld);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1808
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1809 sigchld_deferred = 1;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1810 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1811 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1812 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1813 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1814
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1815 #ifndef VMS /* VMS version of this function is in vmsproc.c. */
20382
dbad9367d232 (create_process, deactivate_process, close_process_descs):
Andreas Schwab <schwab@suse.de>
parents: 20225
diff changeset
1816 void
1683
a0a41de51400 Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents: 1655
diff changeset
1817 create_process (process, new_argv, current_dir)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1818 Lisp_Object process;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1819 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
1820 Lisp_Object current_dir;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1821 {
76494
f0a25b5d3ba0 (Fdelete_process): Properly handle deletion of first element of
Chong Yidong <cyd@stupidchicken.com>
parents: 76493
diff changeset
1822 int inchannel, outchannel;
f0a25b5d3ba0 (Fdelete_process): Properly handle deletion of first element of
Chong Yidong <cyd@stupidchicken.com>
parents: 76493
diff changeset
1823 pid_t pid;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1824 int sv[2];
13709
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
1825 #ifdef POSIX_SIGNALS
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
1826 sigset_t procmask;
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
1827 sigset_t blocked;
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
1828 struct sigaction sigint_action;
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
1829 struct sigaction sigquit_action;
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
1830 #ifdef AIX
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
1831 struct sigaction sighup_action;
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
1832 #endif
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
1833 #else /* !POSIX_SIGNALS */
25770
3a44b5298cd5 (list_processes_1): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents: 25760
diff changeset
1834 #if 0
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1835 #ifdef SIGCHLD
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1836 SIGTYPE (*sigchld)();
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1837 #endif
25770
3a44b5298cd5 (list_processes_1): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents: 25760
diff changeset
1838 #endif /* 0 */
13709
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
1839 #endif /* !POSIX_SIGNALS */
11926
40d7e6f04ebe (create_process, send_process): Add volatile qualifiers.
Karl Heuer <kwzh@gnu.org>
parents: 11845
diff changeset
1840 /* 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
1841 volatile int forkin, forkout;
40d7e6f04ebe (create_process, send_process): Add volatile qualifiers.
Karl Heuer <kwzh@gnu.org>
parents: 11845
diff changeset
1842 volatile int pty_flag = 0;
31099
0fe5afca71e4 Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents: 30582
diff changeset
1843 #ifndef USE_CRT_DLL
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1844 extern char **environ;
31099
0fe5afca71e4 Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents: 30582
diff changeset
1845 #endif
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1846
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1847 inchannel = outchannel = -1;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1848
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1849 #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
1850 if (!NILP (Vprocess_connection_type))
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1851 outchannel = inchannel = allocate_pty ();
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1852
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1853 if (inchannel >= 0)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1854 {
46411
d17e7d2c1766 (create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents: 46370
diff changeset
1855 #if ! defined (USG) || defined (USG_SUBTTY_WORKS)
d17e7d2c1766 (create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents: 46370
diff changeset
1856 /* On most USG systems it does not work to open the pty's tty here,
d17e7d2c1766 (create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents: 46370
diff changeset
1857 then close it and reopen it in the child. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1858 #ifdef O_NOCTTY
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1859 /* Don't let this terminal become our controlling terminal
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1860 (in case we don't have one). */
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
1861 forkout = forkin = emacs_open (pty_name, O_RDWR | O_NOCTTY, 0);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1862 #else
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
1863 forkout = forkin = emacs_open (pty_name, O_RDWR, 0);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1864 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1865 if (forkin < 0)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1866 report_file_error ("Opening pty", Qnil);
65631
92275ace8eb5 (create_process) [RTU || UNIPLUS || DONT_REOPEN_PTY]:
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64977
diff changeset
1867 #if defined (RTU) || defined (UNIPLUS) || defined (DONT_REOPEN_PTY)
92275ace8eb5 (create_process) [RTU || UNIPLUS || DONT_REOPEN_PTY]:
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64977
diff changeset
1868 /* In the case that vfork is defined as fork, the parent process
92275ace8eb5 (create_process) [RTU || UNIPLUS || DONT_REOPEN_PTY]:
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64977
diff changeset
1869 (Emacs) may send some data before the child process completes
92275ace8eb5 (create_process) [RTU || UNIPLUS || DONT_REOPEN_PTY]:
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64977
diff changeset
1870 tty options setup. So we setup tty before forking. */
92275ace8eb5 (create_process) [RTU || UNIPLUS || DONT_REOPEN_PTY]:
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64977
diff changeset
1871 child_setup_tty (forkout);
92275ace8eb5 (create_process) [RTU || UNIPLUS || DONT_REOPEN_PTY]:
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64977
diff changeset
1872 #endif /* RTU or UNIPLUS or DONT_REOPEN_PTY */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1873 #else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1874 forkin = forkout = -1;
46411
d17e7d2c1766 (create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents: 46370
diff changeset
1875 #endif /* not USG, or USG_SUBTTY_WORKS */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1876 pty_flag = 1;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1877 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1878 else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1879 #endif /* HAVE_PTYS */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1880 #ifdef SKTPAIR
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1881 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1882 if (socketpair (AF_UNIX, SOCK_STREAM, 0, sv) < 0)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1883 report_file_error ("Opening socketpair", Qnil);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1884 outchannel = inchannel = sv[0];
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1885 forkout = forkin = sv[1];
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1886 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1887 #else /* not SKTPAIR */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1888 {
25129
4f3c8f1cec96 (create_process): Detect failure of `pipe'.
Karl Heuer <kwzh@gnu.org>
parents: 25009
diff changeset
1889 int tem;
4f3c8f1cec96 (create_process): Detect failure of `pipe'.
Karl Heuer <kwzh@gnu.org>
parents: 25009
diff changeset
1890 tem = pipe (sv);
4f3c8f1cec96 (create_process): Detect failure of `pipe'.
Karl Heuer <kwzh@gnu.org>
parents: 25009
diff changeset
1891 if (tem < 0)
4f3c8f1cec96 (create_process): Detect failure of `pipe'.
Karl Heuer <kwzh@gnu.org>
parents: 25009
diff changeset
1892 report_file_error ("Creating pipe", Qnil);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1893 inchannel = sv[0];
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1894 forkout = sv[1];
25129
4f3c8f1cec96 (create_process): Detect failure of `pipe'.
Karl Heuer <kwzh@gnu.org>
parents: 25009
diff changeset
1895 tem = pipe (sv);
4f3c8f1cec96 (create_process): Detect failure of `pipe'.
Karl Heuer <kwzh@gnu.org>
parents: 25009
diff changeset
1896 if (tem < 0)
4f3c8f1cec96 (create_process): Detect failure of `pipe'.
Karl Heuer <kwzh@gnu.org>
parents: 25009
diff changeset
1897 {
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
1898 emacs_close (inchannel);
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
1899 emacs_close (forkout);
25129
4f3c8f1cec96 (create_process): Detect failure of `pipe'.
Karl Heuer <kwzh@gnu.org>
parents: 25009
diff changeset
1900 report_file_error ("Creating pipe", Qnil);
4f3c8f1cec96 (create_process): Detect failure of `pipe'.
Karl Heuer <kwzh@gnu.org>
parents: 25009
diff changeset
1901 }
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1902 outchannel = sv[1];
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1903 forkin = sv[0];
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1904 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1905 #endif /* not SKTPAIR */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1906
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1907 #if 0
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1908 /* Replaced by close_process_descs */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1909 set_exclusive_use (inchannel);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1910 set_exclusive_use (outchannel);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1911 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1912
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1913 /* Stride people say it's a mystery why this is needed
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1914 as well as the O_NDELAY, but that it fails without this. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1915 #if defined (STRIDE) || (defined (pfa) && defined (HAVE_PTYS))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1916 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1917 int one = 1;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1918 ioctl (inchannel, FIONBIO, &one);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1919 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1920 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1921
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1922 #ifdef O_NONBLOCK
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1923 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
1924 fcntl (outchannel, F_SETFL, O_NONBLOCK);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1925 #else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1926 #ifdef O_NDELAY
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1927 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
1928 fcntl (outchannel, F_SETFL, O_NDELAY);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1929 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1930 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1931
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1932 /* Record this as an active process, with its channels.
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1933 As a result, child_setup will close Emacs's side of the pipes. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1934 chan_process[inchannel] = process;
9277
21f6120be5ba (make_process, create_process, Fopen_network_stream, deactivate_process,
Karl Heuer <kwzh@gnu.org>
parents: 9115
diff changeset
1935 XSETINT (XPROCESS (process)->infd, inchannel);
21f6120be5ba (make_process, create_process, Fopen_network_stream, deactivate_process,
Karl Heuer <kwzh@gnu.org>
parents: 9115
diff changeset
1936 XSETINT (XPROCESS (process)->outfd, outchannel);
49903
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
1937
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
1938 /* Previously we recorded the tty descriptor used in the subprocess.
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
1939 It was only used for getting the foreground tty process, so now
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
1940 we just reopen the device (see emacs_get_tty_pgrp) as this is
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
1941 more portable (see USG_SUBTTY_WORKS above). */
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
1942
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1943 XPROCESS (process)->pty_flag = (pty_flag ? Qt : Qnil);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1944 XPROCESS (process)->status = Qrun;
49667
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
1945 setup_process_coding_systems (process);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1946
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1947 /* Delay interrupts until we have a chance to store
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1948 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
1949 #ifdef POSIX_SIGNALS
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
1950 sigemptyset (&blocked);
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
1951 #ifdef SIGCHLD
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
1952 sigaddset (&blocked, SIGCHLD);
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
1953 #endif
41856
0028402ed7d1 (create_process): Use HAVE_WORKING_VFORK, not HAVE_VFORK.
Paul Eggert <eggert@twinsun.com>
parents: 40656
diff changeset
1954 #ifdef HAVE_WORKING_VFORK
13709
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
1955 /* 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
1956 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
1957 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
1958 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
1959 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
1960 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
1961 #ifdef AIX
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
1962 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
1963 #endif
41856
0028402ed7d1 (create_process): Use HAVE_WORKING_VFORK, not HAVE_VFORK.
Paul Eggert <eggert@twinsun.com>
parents: 40656
diff changeset
1964 #endif /* HAVE_WORKING_VFORK */
13709
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
1965 sigprocmask (SIG_BLOCK, &blocked, &procmask);
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
1966 #else /* !POSIX_SIGNALS */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1967 #ifdef SIGCHLD
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1968 #ifdef BSD4_1
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1969 sighold (SIGCHLD);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1970 #else /* not BSD4_1 */
16220
02044b05d8e0 Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents: 16206
diff changeset
1971 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1972 sigsetmask (sigmask (SIGCHLD));
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1973 #else /* ordinary USG */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1974 #if 0
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1975 sigchld_deferred = 0;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1976 sigchld = signal (SIGCHLD, create_process_sigchld);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1977 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1978 #endif /* ordinary USG */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1979 #endif /* not BSD4_1 */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1980 #endif /* SIGCHLD */
13709
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
1981 #endif /* !POSIX_SIGNALS */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1982
7893
e54617027a47 (create_process): Set input_wait_mask before forking.
Karl Heuer <kwzh@gnu.org>
parents: 7884
diff changeset
1983 FD_SET (inchannel, &input_wait_mask);
9686
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
1984 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
1985 if (inchannel > max_process_desc)
e54617027a47 (create_process): Set input_wait_mask before forking.
Karl Heuer <kwzh@gnu.org>
parents: 7884
diff changeset
1986 max_process_desc = inchannel;
e54617027a47 (create_process): Set input_wait_mask before forking.
Karl Heuer <kwzh@gnu.org>
parents: 7884
diff changeset
1987
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1988 /* Until we store the proper pid, enable sigchld_handler
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1989 to recognize an unknown pid as standing for this process.
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1990 It is very important not to let this `marker' value stay
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1991 in the table after this function has returned; if it does
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1992 it might cause call-process to hang and subsequent asynchronous
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1993 processes to get their return values scrambled. */
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
1994 XPROCESS (process)->pid = -1;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1995
16780
e9dc2569cb12 Include blockinput.h.
Richard M. Stallman <rms@gnu.org>
parents: 16728
diff changeset
1996 BLOCK_INPUT;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
1997
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1998 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1999 /* child_setup must clobber environ on systems with true vfork.
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2000 Protect it from permanent change. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2001 char **save_environ = environ;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2002
21049
01e626b0a624 (Vdefault_file_name_coding_system): Extern it.
Kenichi Handa <handa@m17n.org>
parents: 20715
diff changeset
2003 current_dir = ENCODE_FILE (current_dir);
19837
3bee81323f73 (create_process): Encode the new current dir.
Richard M. Stallman <rms@gnu.org>
parents: 19642
diff changeset
2004
9793
28267fcc61be Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents: 9705
diff changeset
2005 #ifndef WINDOWSNT
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2006 pid = vfork ();
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2007 if (pid == 0)
9793
28267fcc61be Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents: 9705
diff changeset
2008 #endif /* not WINDOWSNT */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2009 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2010 int xforkin = forkin;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2011 int xforkout = forkout;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2012
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2013 #if 0 /* This was probably a mistake--it duplicates code later on,
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2014 but fails to handle all the cases. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2015 /* Make sure SIGCHLD is not blocked in the child. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2016 sigsetmask (SIGEMPTYMASK);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2017 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2018
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2019 /* Make the pty be the controlling terminal of the process. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2020 #ifdef HAVE_PTYS
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2021 /* First, disconnect its current controlling terminal. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2022 #ifdef HAVE_SETSID
7266
f87808bd90e9 (create_process): Undo April 19 setsid change.
Richard M. Stallman <rms@gnu.org>
parents: 7238
diff changeset
2023 /* 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
2024 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
2025 setsid ();
1030
9934251d8219 (WCOREDUMP): Define only if not defined.
Richard M. Stallman <rms@gnu.org>
parents: 1012
diff changeset
2026 /* 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
2027 if (pty_flag)
6975
b7411e378b65 (create_process): Call setsid only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents: 6947
diff changeset
2028 {
b7411e378b65 (create_process): Call setsid only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents: 6947
diff changeset
2029 #ifdef TIOCSCTTY
b7411e378b65 (create_process): Call setsid only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents: 6947
diff changeset
2030 /* We ignore the return value
b7411e378b65 (create_process): Call setsid only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents: 6947
diff changeset
2031 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
2032 ioctl (xforkin, TIOCSCTTY, 0);
1030
9934251d8219 (WCOREDUMP): Define only if not defined.
Richard M. Stallman <rms@gnu.org>
parents: 1012
diff changeset
2033 #endif
6975
b7411e378b65 (create_process): Call setsid only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents: 6947
diff changeset
2034 }
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2035 #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
2036 #ifdef USG
5347
21bffe027a7d (create_process) [NTTYDISC]: Set the tty line discipline.
Richard M. Stallman <rms@gnu.org>
parents: 5332
diff changeset
2037 /* It's very important to call setpgrp here and no time
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2038 afterwards. Otherwise, we lose our controlling tty which
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2039 is set when we open the pty. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2040 setpgrp ();
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2041 #endif /* USG */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2042 #endif /* not HAVE_SETSID */
7116
d35b11eed89f (create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents: 7059
diff changeset
2043 #if defined (HAVE_TERMIOS) && defined (LDISC1)
d35b11eed89f (create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents: 7059
diff changeset
2044 if (pty_flag && xforkin >= 0)
d35b11eed89f (create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents: 7059
diff changeset
2045 {
d35b11eed89f (create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents: 7059
diff changeset
2046 struct termios t;
d35b11eed89f (create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents: 7059
diff changeset
2047 tcgetattr (xforkin, &t);
d35b11eed89f (create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents: 7059
diff changeset
2048 t.c_lflag = LDISC1;
d35b11eed89f (create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents: 7059
diff changeset
2049 if (tcsetattr (xforkin, TCSANOW, &t) < 0)
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
2050 emacs_write (1, "create_process/tcsetattr LDISC1 failed\n", 39);
7116
d35b11eed89f (create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents: 7059
diff changeset
2051 }
d35b11eed89f (create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents: 7059
diff changeset
2052 #else
6947
c5f990fad6bb (create_process): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 6928
diff changeset
2053 #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
2054 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
2055 {
36d2fd17f833 (create_process): Set line discipline only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents: 5543
diff changeset
2056 /* Use new line discipline. */
36d2fd17f833 (create_process): Set line discipline only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents: 5543
diff changeset
2057 int ldisc = NTTYDISC;
7605
53186c2698e5 (create_process): Don't complain about error from TIOCSETD.
Richard M. Stallman <rms@gnu.org>
parents: 7486
diff changeset
2058 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
2059 }
5347
21bffe027a7d (create_process) [NTTYDISC]: Set the tty line discipline.
Richard M. Stallman <rms@gnu.org>
parents: 5332
diff changeset
2060 #endif
7116
d35b11eed89f (create_process) [HAVE_TERMIOS && LDISC1]: Use tcsetattr.
Karl Heuer <kwzh@gnu.org>
parents: 7059
diff changeset
2061 #endif
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
2062 #ifdef TIOCNOTTY
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2063 /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2064 can do TIOCSPGRP only to the process's controlling tty. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2065 if (pty_flag)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2066 {
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
2067 /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2068 I can't test it since I don't have 4.3. */
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
2069 int j = emacs_open ("/dev/tty", O_RDWR, 0);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2070 ioctl (j, TIOCNOTTY, 0);
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
2071 emacs_close (j);
3826
647bef18618f Changes for Irix 4.0, tested this time:
Jim Blandy <jimb@redhat.com>
parents: 3810
diff changeset
2072 #ifndef USG
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2073 /* In order to get a controlling terminal on some versions
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2074 of BSD, it is necessary to put the process in pgrp 0
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2075 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
2076 #ifdef HAVE_SETPGID
9882
ccc5562a7194 (create_process) [OSF1]: Use setpgid, not setpgrp.
Richard M. Stallman <rms@gnu.org>
parents: 9793
diff changeset
2077 setpgid (0, 0);
ccc5562a7194 (create_process) [OSF1]: Use setpgid, not setpgrp.
Richard M. Stallman <rms@gnu.org>
parents: 9793
diff changeset
2078 #else
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2079 setpgrp (0, 0);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2080 #endif
9882
ccc5562a7194 (create_process) [OSF1]: Use setpgid, not setpgrp.
Richard M. Stallman <rms@gnu.org>
parents: 9793
diff changeset
2081 #endif
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2082 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2083 #endif /* TIOCNOTTY */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2084
16076
5d1e0290bbd0 (create_process): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 16058
diff changeset
2085 #if !defined (RTU) && !defined (UNIPLUS) && !defined (DONT_REOPEN_PTY)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2086 /*** 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
2087 conditional on TIOCSPGRP,
5d1e0290bbd0 (create_process): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 16058
diff changeset
2088 or !(defined (HAVE_SETSID) && defined (TIOCSCTTY)).
5d1e0290bbd0 (create_process): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 16058
diff changeset
2089 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
2090 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
2091 both HAVE_SETSID and TIOCSCTTY are defined. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2092 /* Now close the pty (if we had it open) and reopen it.
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2093 This makes the pty the controlling terminal of the subprocess. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2094 if (pty_flag)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2095 {
5240
eed870591987 (Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents: 5239
diff changeset
2096 #ifdef SET_CHILD_PTY_PGRP
eed870591987 (Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents: 5239
diff changeset
2097 int pgrp = getpid ();
eed870591987 (Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents: 5239
diff changeset
2098 #endif
eed870591987 (Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents: 5239
diff changeset
2099
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
2100 /* I wonder if emacs_close (emacs_open (pty_name, ...))
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
2101 would work? */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2102 if (xforkin >= 0)
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
2103 emacs_close (xforkin);
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
2104 xforkout = xforkin = emacs_open (pty_name, O_RDWR, 0);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2105
11514
321726163a65 (create_process): Don't abort if can't reopen
Richard M. Stallman <rms@gnu.org>
parents: 11376
diff changeset
2106 if (xforkin < 0)
321726163a65 (create_process): Don't abort if can't reopen
Richard M. Stallman <rms@gnu.org>
parents: 11376
diff changeset
2107 {
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
2108 emacs_write (1, "Couldn't open the pty terminal ", 31);
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
2109 emacs_write (1, pty_name, strlen (pty_name));
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
2110 emacs_write (1, "\n", 1);
11514
321726163a65 (create_process): Don't abort if can't reopen
Richard M. Stallman <rms@gnu.org>
parents: 11376
diff changeset
2111 _exit (1);
321726163a65 (create_process): Don't abort if can't reopen
Richard M. Stallman <rms@gnu.org>
parents: 11376
diff changeset
2112 }
321726163a65 (create_process): Don't abort if can't reopen
Richard M. Stallman <rms@gnu.org>
parents: 11376
diff changeset
2113
5240
eed870591987 (Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents: 5239
diff changeset
2114 #ifdef SET_CHILD_PTY_PGRP
eed870591987 (Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents: 5239
diff changeset
2115 ioctl (xforkin, TIOCSPGRP, &pgrp);
eed870591987 (Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents: 5239
diff changeset
2116 ioctl (xforkout, TIOCSPGRP, &pgrp);
eed870591987 (Fprocess_status): Use get_process, not Fget_process.
Richard M. Stallman <rms@gnu.org>
parents: 5239
diff changeset
2117 #endif
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2118 }
16076
5d1e0290bbd0 (create_process): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 16058
diff changeset
2119 #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
2120
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2121 #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
2122 if (pty_flag)
1855e568a9b8 (create_process): Use SETUP_SLAVE_PTY only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents: 7044
diff changeset
2123 {
1855e568a9b8 (create_process): Use SETUP_SLAVE_PTY only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents: 7044
diff changeset
2124 SETUP_SLAVE_PTY;
1855e568a9b8 (create_process): Use SETUP_SLAVE_PTY only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents: 7044
diff changeset
2125 }
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2126 #endif /* SETUP_SLAVE_PTY */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2127 #ifdef AIX
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2128 /* On AIX, we've disabled SIGHUP above once we start a child on a pty.
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2129 Now reenable it in the child, so it will die when we want it to. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2130 if (pty_flag)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2131 signal (SIGHUP, SIG_DFL);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2132 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2133 #endif /* HAVE_PTYS */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2134
13709
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
2135 signal (SIGINT, SIG_DFL);
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
2136 signal (SIGQUIT, SIG_DFL);
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
2137
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
2138 /* Stop blocking signals in the child. */
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
2139 #ifdef POSIX_SIGNALS
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
2140 sigprocmask (SIG_SETMASK, &procmask, 0);
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
2141 #else /* !POSIX_SIGNALS */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2142 #ifdef SIGCHLD
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2143 #ifdef BSD4_1
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2144 sigrelse (SIGCHLD);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2145 #else /* not BSD4_1 */
16220
02044b05d8e0 Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents: 16206
diff changeset
2146 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2147 sigsetmask (SIGEMPTYMASK);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2148 #else /* ordinary USG */
1207
af619d68a576 * process.c [SIGCHLD && !BSD && !UNIPLUS && !HPUX]
Jim Blandy <jimb@redhat.com>
parents: 1180
diff changeset
2149 #if 0
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2150 signal (SIGCHLD, sigchld);
1207
af619d68a576 * process.c [SIGCHLD && !BSD && !UNIPLUS && !HPUX]
Jim Blandy <jimb@redhat.com>
parents: 1180
diff changeset
2151 #endif
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2152 #endif /* ordinary USG */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2153 #endif /* not BSD4_1 */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2154 #endif /* SIGCHLD */
13709
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
2155 #endif /* !POSIX_SIGNALS */
8390
ee13e8728666 (create_process): Set default handling for SIGINT, etc.
Richard M. Stallman <rms@gnu.org>
parents: 8354
diff changeset
2156
65631
92275ace8eb5 (create_process) [RTU || UNIPLUS || DONT_REOPEN_PTY]:
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64977
diff changeset
2157 #if !defined (RTU) && !defined (UNIPLUS) && !defined (DONT_REOPEN_PTY)
7059
6a55de48ade5 (create_process): Use child_setup_tty only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents: 7058
diff changeset
2158 if (pty_flag)
6a55de48ade5 (create_process): Use child_setup_tty only if pty_flag.
Richard M. Stallman <rms@gnu.org>
parents: 7058
diff changeset
2159 child_setup_tty (xforkout);
65631
92275ace8eb5 (create_process) [RTU || UNIPLUS || DONT_REOPEN_PTY]:
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64977
diff changeset
2160 #endif /* not RTU and not UNIPLUS and not DONT_REOPEN_PTY */
9793
28267fcc61be Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents: 9705
diff changeset
2161 #ifdef WINDOWSNT
28267fcc61be Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents: 9705
diff changeset
2162 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
2163 new_argv, 1, current_dir);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
2164 #else /* not WINDOWSNT */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2165 child_setup (xforkin, xforkout, xforkout,
638
40b255f55df3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 624
diff changeset
2166 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
2167 #endif /* not WINDOWSNT */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2168 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2169 environ = save_environ;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2170 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2171
16780
e9dc2569cb12 Include blockinput.h.
Richard M. Stallman <rms@gnu.org>
parents: 16728
diff changeset
2172 UNBLOCK_INPUT;
e9dc2569cb12 Include blockinput.h.
Richard M. Stallman <rms@gnu.org>
parents: 16728
diff changeset
2173
14131
7717b68abd2e (create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents: 14085
diff changeset
2174 /* This runs in the Emacs process. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2175 if (pid < 0)
7157
3f4fc9d682b4 (create_process): If vfork fails, close forkin and forkout.
Richard M. Stallman <rms@gnu.org>
parents: 7116
diff changeset
2176 {
3f4fc9d682b4 (create_process): If vfork fails, close forkin and forkout.
Richard M. Stallman <rms@gnu.org>
parents: 7116
diff changeset
2177 if (forkin >= 0)
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
2178 emacs_close (forkin);
7157
3f4fc9d682b4 (create_process): If vfork fails, close forkin and forkout.
Richard M. Stallman <rms@gnu.org>
parents: 7116
diff changeset
2179 if (forkin != forkout && forkout >= 0)
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
2180 emacs_close (forkout);
7157
3f4fc9d682b4 (create_process): If vfork fails, close forkin and forkout.
Richard M. Stallman <rms@gnu.org>
parents: 7116
diff changeset
2181 }
14131
7717b68abd2e (create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents: 14085
diff changeset
2182 else
7717b68abd2e (create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents: 14085
diff changeset
2183 {
7717b68abd2e (create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents: 14085
diff changeset
2184 /* vfork succeeded. */
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
2185 XPROCESS (process)->pid = pid;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2186
9793
28267fcc61be Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents: 9705
diff changeset
2187 #ifdef WINDOWSNT
14131
7717b68abd2e (create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents: 14085
diff changeset
2188 register_child (pid, inchannel);
9793
28267fcc61be Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents: 9705
diff changeset
2189 #endif /* WINDOWSNT */
28267fcc61be Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents: 9705
diff changeset
2190
14131
7717b68abd2e (create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents: 14085
diff changeset
2191 /* If the subfork execv fails, and it exits,
7717b68abd2e (create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents: 14085
diff changeset
2192 this close hangs. I don't know why.
7717b68abd2e (create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents: 14085
diff changeset
2193 So have an interrupt jar it loose. */
27430
1aa71680fe50 (toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents: 27028
diff changeset
2194 {
1aa71680fe50 (toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents: 27028
diff changeset
2195 struct atimer *timer;
1aa71680fe50 (toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents: 27028
diff changeset
2196 EMACS_TIME offset;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
2197
27430
1aa71680fe50 (toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents: 27028
diff changeset
2198 stop_polling ();
1aa71680fe50 (toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents: 27028
diff changeset
2199 EMACS_SET_SECS_USECS (offset, 1, 0);
1aa71680fe50 (toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents: 27028
diff changeset
2200 timer = start_atimer (ATIMER_RELATIVE, offset, create_process_1, 0);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
2201
27430
1aa71680fe50 (toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents: 27028
diff changeset
2202 if (forkin >= 0)
1aa71680fe50 (toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents: 27028
diff changeset
2203 emacs_close (forkin);
1aa71680fe50 (toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents: 27028
diff changeset
2204
1aa71680fe50 (toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents: 27028
diff changeset
2205 cancel_atimer (timer);
1aa71680fe50 (toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents: 27028
diff changeset
2206 start_polling ();
1aa71680fe50 (toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents: 27028
diff changeset
2207 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
2208
14131
7717b68abd2e (create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents: 14085
diff changeset
2209 if (forkin != forkout && forkout >= 0)
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
2210 emacs_close (forkout);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2211
11609
3b2dacb1bfe9 (create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents: 11514
diff changeset
2212 #ifdef HAVE_PTYS
14131
7717b68abd2e (create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents: 14085
diff changeset
2213 if (pty_flag)
7717b68abd2e (create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents: 14085
diff changeset
2214 XPROCESS (process)->tty_name = build_string (pty_name);
7717b68abd2e (create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents: 14085
diff changeset
2215 else
11609
3b2dacb1bfe9 (create_process): Don't reference pty_name if !HAVE_PTYS.
Karl Heuer <kwzh@gnu.org>
parents: 11514
diff changeset
2216 #endif
14131
7717b68abd2e (create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents: 14085
diff changeset
2217 XPROCESS (process)->tty_name = Qnil;
7717b68abd2e (create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents: 14085
diff changeset
2218 }
7717b68abd2e (create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents: 14085
diff changeset
2219
7717b68abd2e (create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents: 14085
diff changeset
2220 /* 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
2221 (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
2222 #ifdef POSIX_SIGNALS
41856
0028402ed7d1 (create_process): Use HAVE_WORKING_VFORK, not HAVE_VFORK.
Paul Eggert <eggert@twinsun.com>
parents: 40656
diff changeset
2223 #ifdef HAVE_WORKING_VFORK
13709
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
2224 /* Restore the parent's signal handlers. */
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
2225 sigaction (SIGINT, &sigint_action, 0);
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
2226 sigaction (SIGQUIT, &sigquit_action, 0);
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
2227 #ifdef AIX
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
2228 sigaction (SIGHUP, &sighup_action, 0);
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
2229 #endif
41856
0028402ed7d1 (create_process): Use HAVE_WORKING_VFORK, not HAVE_VFORK.
Paul Eggert <eggert@twinsun.com>
parents: 40656
diff changeset
2230 #endif /* HAVE_WORKING_VFORK */
13709
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
2231 /* Stop blocking signals in the parent. */
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
2232 sigprocmask (SIG_SETMASK, &procmask, 0);
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
2233 #else /* !POSIX_SIGNALS */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2234 #ifdef SIGCHLD
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2235 #ifdef BSD4_1
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2236 sigrelse (SIGCHLD);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2237 #else /* not BSD4_1 */
16220
02044b05d8e0 Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents: 16206
diff changeset
2238 #if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2239 sigsetmask (SIGEMPTYMASK);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2240 #else /* ordinary USG */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2241 #if 0
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2242 signal (SIGCHLD, sigchld);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2243 /* Now really handle any of these signals
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2244 that came in during this function. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2245 if (sigchld_deferred)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2246 kill (getpid (), SIGCHLD);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2247 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2248 #endif /* ordinary USG */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2249 #endif /* not BSD4_1 */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2250 #endif /* SIGCHLD */
13709
d16f31ae8adf (create_process): Use Posix signal handling to
Karl Heuer <kwzh@gnu.org>
parents: 13414
diff changeset
2251 #endif /* !POSIX_SIGNALS */
14131
7717b68abd2e (create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents: 14085
diff changeset
2252
7717b68abd2e (create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents: 14085
diff changeset
2253 /* Now generate the error if vfork failed. */
7717b68abd2e (create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents: 14085
diff changeset
2254 if (pid < 0)
7717b68abd2e (create_process): Restore the signal state
Karl Heuer <kwzh@gnu.org>
parents: 14085
diff changeset
2255 report_file_error ("Doing vfork", Qnil);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2256 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2257 #endif /* not VMS */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2258
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2259
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2260 #ifdef HAVE_SOCKETS
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2261
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2262 /* Convert an internal struct sockaddr to a lisp object (vector or string).
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2263 The address family of sa is not included in the result. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2264
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2265 static Lisp_Object
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2266 conv_sockaddr_to_lisp (sa, len)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2267 struct sockaddr *sa;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2268 int len;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2269 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2270 Lisp_Object address;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2271 int i;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2272 unsigned char *cp;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2273 register struct Lisp_Vector *p;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2274
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2275 switch (sa->sa_family)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2276 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2277 case AF_INET:
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2278 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2279 struct sockaddr_in *sin = (struct sockaddr_in *) sa;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2280 len = sizeof (sin->sin_addr) + 1;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2281 address = Fmake_vector (make_number (len), Qnil);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2282 p = XVECTOR (address);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2283 p->contents[--len] = make_number (ntohs (sin->sin_port));
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2284 cp = (unsigned char *)&sin->sin_addr;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2285 break;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2286 }
68008
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2287 #ifdef AF_INET6
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2288 case AF_INET6:
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2289 {
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2290 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) sa;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2291 uint16_t *ip6 = (uint16_t *)&sin6->sin6_addr;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2292 len = sizeof (sin6->sin6_addr)/2 + 1;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2293 address = Fmake_vector (make_number (len), Qnil);
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2294 p = XVECTOR (address);
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2295 p->contents[--len] = make_number (ntohs (sin6->sin6_port));
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2296 for (i = 0; i < len; i++)
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2297 p->contents[i] = make_number (ntohs (ip6[i]));
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2298 return address;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2299 }
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2300 #endif
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2301 #ifdef HAVE_LOCAL_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2302 case AF_LOCAL:
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2303 {
44038
e2339254ba48 (conv_sockaddr_to_lisp, conv_lisp_to_sockaddr): Don't
Eli Zaretskii <eliz@gnu.org>
parents: 44013
diff changeset
2304 struct sockaddr_un *sockun = (struct sockaddr_un *) sa;
e2339254ba48 (conv_sockaddr_to_lisp, conv_lisp_to_sockaddr): Don't
Eli Zaretskii <eliz@gnu.org>
parents: 44013
diff changeset
2305 for (i = 0; i < sizeof (sockun->sun_path); i++)
e2339254ba48 (conv_sockaddr_to_lisp, conv_lisp_to_sockaddr): Don't
Eli Zaretskii <eliz@gnu.org>
parents: 44013
diff changeset
2306 if (sockun->sun_path[i] == 0)
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2307 break;
44038
e2339254ba48 (conv_sockaddr_to_lisp, conv_lisp_to_sockaddr): Don't
Eli Zaretskii <eliz@gnu.org>
parents: 44013
diff changeset
2308 return make_unibyte_string (sockun->sun_path, i);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2309 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2310 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2311 default:
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2312 len -= sizeof (sa->sa_family);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2313 address = Fcons (make_number (sa->sa_family),
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2314 Fmake_vector (make_number (len), Qnil));
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2315 p = XVECTOR (XCDR (address));
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2316 cp = (unsigned char *) sa + sizeof (sa->sa_family);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2317 break;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2318 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2319
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2320 i = 0;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2321 while (i < len)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2322 p->contents[i++] = make_number (*cp++);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2323
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2324 return address;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2325 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2326
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2327
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2328 /* Get family and required size for sockaddr structure to hold ADDRESS. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2329
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2330 static int
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2331 get_lisp_to_sockaddr_size (address, familyp)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2332 Lisp_Object address;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2333 int *familyp;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2334 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2335 register struct Lisp_Vector *p;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2336
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2337 if (VECTORP (address))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2338 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2339 p = XVECTOR (address);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2340 if (p->size == 5)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2341 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2342 *familyp = AF_INET;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2343 return sizeof (struct sockaddr_in);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2344 }
68008
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2345 #ifdef AF_INET6
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2346 else if (p->size == 9)
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2347 {
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2348 *familyp = AF_INET6;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2349 return sizeof (struct sockaddr_in6);
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2350 }
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2351 #endif
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2352 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2353 #ifdef HAVE_LOCAL_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2354 else if (STRINGP (address))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2355 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2356 *familyp = AF_LOCAL;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2357 return sizeof (struct sockaddr_un);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2358 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2359 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2360 else if (CONSP (address) && INTEGERP (XCAR (address)) && VECTORP (XCDR (address)))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2361 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2362 struct sockaddr *sa;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2363 *familyp = XINT (XCAR (address));
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2364 p = XVECTOR (XCDR (address));
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2365 return p->size + sizeof (sa->sa_family);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2366 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2367 return 0;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2368 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2369
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2370 /* Convert an address object (vector or string) to an internal sockaddr.
69981
9fb9e33ecf2d (conv_lisp_to_sockaddr): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 69974
diff changeset
2371
9fb9e33ecf2d (conv_lisp_to_sockaddr): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 69974
diff changeset
2372 The address format has been basically validated by
9fb9e33ecf2d (conv_lisp_to_sockaddr): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 69974
diff changeset
2373 get_lisp_to_sockaddr_size, but this does not mean FAMILY is valid;
9fb9e33ecf2d (conv_lisp_to_sockaddr): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 69974
diff changeset
2374 it could have come from user data. So if FAMILY is not valid,
9fb9e33ecf2d (conv_lisp_to_sockaddr): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 69974
diff changeset
2375 we return after zeroing *SA. */
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2376
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2377 static void
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2378 conv_lisp_to_sockaddr (family, address, sa, len)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2379 int family;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2380 Lisp_Object address;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2381 struct sockaddr *sa;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2382 int len;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2383 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2384 register struct Lisp_Vector *p;
51233
41ed31a0fd49 (allocate_pty): Remove `unused var stb' and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51046
diff changeset
2385 register unsigned char *cp = NULL;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2386 register int i;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2387
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2388 bzero (sa, len);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2389
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2390 if (VECTORP (address))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2391 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2392 p = XVECTOR (address);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2393 if (family == AF_INET)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2394 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2395 struct sockaddr_in *sin = (struct sockaddr_in *) sa;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2396 len = sizeof (sin->sin_addr) + 1;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2397 i = XINT (p->contents[--len]);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2398 sin->sin_port = htons (i);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2399 cp = (unsigned char *)&sin->sin_addr;
69981
9fb9e33ecf2d (conv_lisp_to_sockaddr): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 69974
diff changeset
2400 sa->sa_family = family;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2401 }
68008
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2402 #ifdef AF_INET6
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2403 else if (family == AF_INET6)
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2404 {
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2405 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) sa;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2406 uint16_t *ip6 = (uint16_t *)&sin6->sin6_addr;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2407 len = sizeof (sin6->sin6_addr) + 1;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2408 i = XINT (p->contents[--len]);
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2409 sin6->sin6_port = htons (i);
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2410 for (i = 0; i < len; i++)
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2411 if (INTEGERP (p->contents[i]))
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2412 {
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2413 int j = XFASTINT (p->contents[i]) & 0xffff;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2414 ip6[i] = ntohs (j);
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2415 }
69981
9fb9e33ecf2d (conv_lisp_to_sockaddr): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 69974
diff changeset
2416 sa->sa_family = family;
68008
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2417 }
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2418 #endif
69973
dc4e5cc51e66 (conv_lisp_to_sockaddr): If FAMILY unknown, just return.
Richard M. Stallman <rms@gnu.org>
parents: 69873
diff changeset
2419 return;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2420 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2421 else if (STRINGP (address))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2422 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2423 #ifdef HAVE_LOCAL_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2424 if (family == AF_LOCAL)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2425 {
44038
e2339254ba48 (conv_sockaddr_to_lisp, conv_lisp_to_sockaddr): Don't
Eli Zaretskii <eliz@gnu.org>
parents: 44013
diff changeset
2426 struct sockaddr_un *sockun = (struct sockaddr_un *) sa;
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
2427 cp = SDATA (address);
44038
e2339254ba48 (conv_sockaddr_to_lisp, conv_lisp_to_sockaddr): Don't
Eli Zaretskii <eliz@gnu.org>
parents: 44013
diff changeset
2428 for (i = 0; i < sizeof (sockun->sun_path) && *cp; i++)
e2339254ba48 (conv_sockaddr_to_lisp, conv_lisp_to_sockaddr): Don't
Eli Zaretskii <eliz@gnu.org>
parents: 44013
diff changeset
2429 sockun->sun_path[i] = *cp++;
69981
9fb9e33ecf2d (conv_lisp_to_sockaddr): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 69974
diff changeset
2430 sa->sa_family = family;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2431 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2432 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2433 return;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2434 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2435 else
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2436 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2437 p = XVECTOR (XCDR (address));
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2438 cp = (unsigned char *)sa + sizeof (sa->sa_family);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2439 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2440
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2441 for (i = 0; i < len; i++)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2442 if (INTEGERP (p->contents[i]))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2443 *cp++ = XFASTINT (p->contents[i]) & 0xff;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2444 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2445
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2446 #ifdef DATAGRAM_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2447 DEFUN ("process-datagram-address", Fprocess_datagram_address, Sprocess_datagram_address,
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2448 1, 1, 0,
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2449 doc: /* Get the current datagram address associated with PROCESS. */)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2450 (process)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2451 Lisp_Object process;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2452 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2453 int channel;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2454
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2455 CHECK_PROCESS (process);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2456
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2457 if (!DATAGRAM_CONN_P (process))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2458 return Qnil;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2459
44314
f76a1425eb34 (DATAGRAM_CONN_P, list_processes_1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 44194
diff changeset
2460 channel = XINT (XPROCESS (process)->infd);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2461 return conv_sockaddr_to_lisp (datagram_address[channel].sa,
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2462 datagram_address[channel].len);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2463 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2464
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2465 DEFUN ("set-process-datagram-address", Fset_process_datagram_address, Sset_process_datagram_address,
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2466 2, 2, 0,
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2467 doc: /* Set the datagram address for PROCESS to ADDRESS.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2468 Returns nil upon error setting address, ADDRESS otherwise. */)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2469 (process, address)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2470 Lisp_Object process, address;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2471 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2472 int channel;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2473 int family, len;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2474
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2475 CHECK_PROCESS (process);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2476
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2477 if (!DATAGRAM_CONN_P (process))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2478 return Qnil;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2479
44314
f76a1425eb34 (DATAGRAM_CONN_P, list_processes_1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 44194
diff changeset
2480 channel = XINT (XPROCESS (process)->infd);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2481
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2482 len = get_lisp_to_sockaddr_size (address, &family);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2483 if (datagram_address[channel].len != len)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2484 return Qnil;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2485 conv_lisp_to_sockaddr (family, address, datagram_address[channel].sa, len);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2486 return address;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2487 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2488 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2489
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2490
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2491 static struct socket_options {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2492 /* The name of this option. Should be lowercase version of option
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
2493 name without SO_ prefix. */
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2494 char *name;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2495 /* Option level SOL_... */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2496 int optlevel;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2497 /* Option number SO_... */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2498 int optnum;
52594
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2499 enum { SOPT_UNKNOWN, SOPT_BOOL, SOPT_INT, SOPT_IFNAME, SOPT_LINGER } opttype;
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2500 enum { OPIX_NONE=0, OPIX_MISC=1, OPIX_REUSEADDR=2 } optbit;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2501 } socket_options[] =
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2502 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2503 #ifdef SO_BINDTODEVICE
52594
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2504 { ":bindtodevice", SOL_SOCKET, SO_BINDTODEVICE, SOPT_IFNAME, OPIX_MISC },
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2505 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2506 #ifdef SO_BROADCAST
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2507 { ":broadcast", SOL_SOCKET, SO_BROADCAST, SOPT_BOOL, OPIX_MISC },
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2508 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2509 #ifdef SO_DONTROUTE
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2510 { ":dontroute", SOL_SOCKET, SO_DONTROUTE, SOPT_BOOL, OPIX_MISC },
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2511 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2512 #ifdef SO_KEEPALIVE
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2513 { ":keepalive", SOL_SOCKET, SO_KEEPALIVE, SOPT_BOOL, OPIX_MISC },
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2514 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2515 #ifdef SO_LINGER
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2516 { ":linger", SOL_SOCKET, SO_LINGER, SOPT_LINGER, OPIX_MISC },
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2517 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2518 #ifdef SO_OOBINLINE
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2519 { ":oobinline", SOL_SOCKET, SO_OOBINLINE, SOPT_BOOL, OPIX_MISC },
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2520 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2521 #ifdef SO_PRIORITY
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2522 { ":priority", SOL_SOCKET, SO_PRIORITY, SOPT_INT, OPIX_MISC },
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2523 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2524 #ifdef SO_REUSEADDR
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2525 { ":reuseaddr", SOL_SOCKET, SO_REUSEADDR, SOPT_BOOL, OPIX_REUSEADDR },
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2526 #endif
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2527 { 0, 0, 0, SOPT_UNKNOWN, OPIX_NONE }
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2528 };
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2529
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2530 /* Set option OPT to value VAL on socket S.
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2531
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2532 Returns (1<<socket_options[OPT].optbit) if option is known, 0 otherwise.
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2533 Signals an error if setting a known option fails.
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2534 */
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2535
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2536 static int
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2537 set_socket_option (s, opt, val)
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2538 int s;
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2539 Lisp_Object opt, val;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2540 {
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2541 char *name;
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2542 struct socket_options *sopt;
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2543 int ret = 0;
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2544
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2545 CHECK_SYMBOL (opt);
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2546
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2547 name = (char *) SDATA (SYMBOL_NAME (opt));
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2548 for (sopt = socket_options; sopt->name; sopt++)
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2549 if (strcmp (name, sopt->name) == 0)
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2550 break;
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2551
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2552 switch (sopt->opttype)
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2553 {
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2554 case SOPT_BOOL:
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2555 {
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2556 int optval;
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2557 optval = NILP (val) ? 0 : 1;
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2558 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2559 &optval, sizeof (optval));
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2560 break;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2561 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2562
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2563 case SOPT_INT:
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2564 {
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2565 int optval;
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2566 if (INTEGERP (val))
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2567 optval = XINT (val);
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2568 else
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2569 error ("Bad option value for %s", name);
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2570 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2571 &optval, sizeof (optval));
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2572 break;
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2573 }
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2574
52594
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2575 #ifdef SO_BINDTODEVICE
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2576 case SOPT_IFNAME:
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2577 {
52594
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2578 char devname[IFNAMSIZ+1];
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2579
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2580 /* This is broken, at least in the Linux 2.4 kernel.
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2581 To unbind, the arg must be a zero integer, not the empty string.
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2582 This should work on all systems. KFS. 2003-09-23. */
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2583 bzero (devname, sizeof devname);
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2584 if (STRINGP (val))
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2585 {
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2586 char *arg = (char *) SDATA (val);
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2587 int len = min (strlen (arg), IFNAMSIZ);
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2588 bcopy (arg, devname, len);
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2589 }
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2590 else if (!NILP (val))
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2591 error ("Bad option value for %s", name);
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2592 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
52594
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2593 devname, IFNAMSIZ);
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2594 break;
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2595 }
52594
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2596 #endif
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2597
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
2598 #ifdef SO_LINGER
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2599 case SOPT_LINGER:
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2600 {
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2601 struct linger linger;
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2602
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2603 linger.l_onoff = 1;
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2604 linger.l_linger = 0;
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2605 if (INTEGERP (val))
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2606 linger.l_linger = XINT (val);
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2607 else
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2608 linger.l_onoff = NILP (val) ? 0 : 1;
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2609 ret = setsockopt (s, sopt->optlevel, sopt->optnum,
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2610 &linger, sizeof (linger));
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2611 break;
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2612 }
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2613 #endif
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2614
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2615 default:
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2616 return 0;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2617 }
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2618
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2619 if (ret < 0)
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2620 report_file_error ("Cannot set network option",
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2621 Fcons (opt, Fcons (val, Qnil)));
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2622 return (1 << sopt->optbit);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2623 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2624
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2625
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2626 DEFUN ("set-network-process-option",
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2627 Fset_network_process_option, Sset_network_process_option,
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2628 3, 4, 0,
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2629 doc: /* For network process PROCESS set option OPTION to value VALUE.
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2630 See `make-network-process' for a list of options and values.
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2631 If optional fourth arg NO-ERROR is non-nil, don't signal an error if
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2632 OPTION is not a supported option, return nil instead; otherwise return t. */)
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2633 (process, option, value, no_error)
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2634 Lisp_Object process, option, value;
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2635 Lisp_Object no_error;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2636 {
52527
3ea59ac8dfa5 (Fnetwork_interface_info): Fix type error.
Dave Love <fx@gnu.org>
parents: 52525
diff changeset
2637 int s;
52594
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2638 struct Lisp_Process *p;
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2639
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2640 CHECK_PROCESS (process);
52594
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2641 p = XPROCESS (process);
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2642 if (!NETCONN1_P (p))
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2643 error ("Process is not a network process");
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2644
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2645 s = XINT (p->infd);
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2646 if (s < 0)
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2647 error ("Process is not running");
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2648
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2649 if (set_socket_option (s, option, value))
52594
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2650 {
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2651 p->childp = Fplist_put (p->childp, option, value);
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2652 return Qt;
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2653 }
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2654
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2655 if (NILP (no_error))
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2656 error ("Unknown or unsupported option");
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2657
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2658 return Qnil;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2659 }
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2660
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2661
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2662 /* A version of request_sigio suitable for a record_unwind_protect. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2663
64977
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
2664 static Lisp_Object
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2665 unwind_request_sigio (dummy)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2666 Lisp_Object dummy;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2667 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2668 if (interrupt_input)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2669 request_sigio ();
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2670 return Qnil;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2671 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2672
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2673 /* Create a network stream/datagram client/server process. Treated
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2674 exactly like a normal process when reading and writing. Primary
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2675 differences are in status display and process deletion. A network
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2676 connection has no PID; you cannot signal it. All you can do is
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2677 stop/continue it and deactivate/close it via delete-process */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2678
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
2679 DEFUN ("make-network-process", Fmake_network_process, Smake_network_process,
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
2680 0, MANY, 0,
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2681 doc: /* Create and return a network server or client process.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2682
43995
110955214222 (Fmake_network_process): Remove unused variable `sa'.
Pavel Janík <Pavel@Janik.cz>
parents: 43968
diff changeset
2683 In Emacs, network connections are represented by process objects, so
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2684 input and output work as for subprocesses and `delete-process' closes
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2685 a network connection. However, a network process has no process id,
63615
be4c8c1258c1 (Fmake_network_process): Fix spellings.
Juanma Barranquero <lekktu@gmail.com>
parents: 63278
diff changeset
2686 it cannot be signaled, and the status codes are different from normal
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2687 processes.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2688
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2689 Arguments are specified as keyword/argument pairs. The following
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2690 arguments are defined:
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2691
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2692 :name NAME -- NAME is name for process. It is modified if necessary
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2693 to make it unique.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2694
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2695 :buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2696 with the process. Process output goes at end of that buffer, unless
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2697 you specify an output stream or filter function to handle the output.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2698 BUFFER may be also nil, meaning that this process is not associated
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2699 with any buffer.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2700
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2701 :host HOST -- HOST is name of the host to connect to, or its IP
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2702 address. The symbol `local' specifies the local host. If specified
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2703 for a server process, it must be a valid name or address for the local
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2704 host, and only clients connecting to that address will be accepted.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2705
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2706 :service SERVICE -- SERVICE is name of the service desired, or an
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2707 integer specifying a port number to connect to. If SERVICE is t,
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2708 a random port number is selected for the server.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2709
44067
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
2710 :type TYPE -- TYPE is the type of connection. The default (nil) is a
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
2711 stream type connection, `datagram' creates a datagram type connection.
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
2712
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2713 :family FAMILY -- FAMILY is the address (and protocol) family for the
68008
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2714 service specified by HOST and SERVICE. The default (nil) is to use
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2715 whatever address family (IPv4 or IPv6) that is defined for the host
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2716 and port number specified by HOST and SERVICE. Other address families
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2717 supported are:
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2718 local -- for a local (i.e. UNIX) address specified by SERVICE.
68008
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2719 ipv4 -- use IPv4 address family only.
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2720 ipv6 -- use IPv6 address family only.
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2721
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2722 :local ADDRESS -- ADDRESS is the local address used for the connection.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2723 This parameter is ignored when opening a client process. When specified
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2724 for a server process, the FAMILY, HOST and SERVICE args are ignored.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2725
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2726 :remote ADDRESS -- ADDRESS is the remote partner's address for the
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2727 connection. This parameter is ignored when opening a stream server
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2728 process. For a datagram server process, it specifies the initial
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2729 setting of the remote datagram address. When specified for a client
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2730 process, the FAMILY, HOST, and SERVICE args are ignored.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2731
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2732 The format of ADDRESS depends on the address family:
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2733 - An IPv4 address is represented as an vector of integers [A B C D P]
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2734 corresponding to numeric IP address A.B.C.D and port number P.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2735 - A local address is represented as a string with the address in the
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2736 local address space.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2737 - An "unsupported family" address is represented by a cons (F . AV)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2738 where F is the family number and AV is a vector containing the socket
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2739 address data with one element per address data byte. Do not rely on
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2740 this format in portable code, as it may depend on implementation
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2741 defined constants, data sizes, and data structure alignment.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2742
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2743 :coding CODING -- If CODING is a symbol, it specifies the coding
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2744 system used for both reading and writing for this process. If CODING
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2745 is a cons (DECODING . ENCODING), DECODING is used for reading, and
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2746 ENCODING is used for writing.
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2747
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2748 :nowait BOOL -- If BOOL is non-nil for a stream type client process,
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2749 return without waiting for the connection to complete; instead, the
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2750 sentinel function will be called with second arg matching "open" (if
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2751 successful) or "failed" when the connect completes. Default is to use
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2752 a blocking connect (i.e. wait) for stream type connections.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2753
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2754 :noquery BOOL -- Query the user unless BOOL is non-nil, and process is
55444
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
2755 running when Emacs is exited.
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2756
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2757 :stop BOOL -- Start process in the `stopped' state if BOOL non-nil.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2758 In the stopped state, a server process does not accept new
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2759 connections, and a client process does not handle incoming traffic.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2760 The stopped state is cleared by `continue-process' and set by
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2761 `stop-process'.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2762
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2763 :filter FILTER -- Install FILTER as the process filter.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2764
49680
7c27c9efd353 Doc fixes.
Kim F. Storm <storm@cua.dk>
parents: 49667
diff changeset
2765 :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the
7c27c9efd353 Doc fixes.
Kim F. Storm <storm@cua.dk>
parents: 49667
diff changeset
2766 process filter are multibyte, otherwise they are unibyte.
7c27c9efd353 Doc fixes.
Kim F. Storm <storm@cua.dk>
parents: 49667
diff changeset
2767 If this keyword is not specified, the strings are multibyte iff
49667
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
2768 `default-enable-multibyte-characters' is non-nil.
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
2769
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2770 :sentinel SENTINEL -- Install SENTINEL as the process sentinel.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2771
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2772 :log LOG -- Install LOG as the server process log function. This
47987
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
2773 function is called when the server accepts a network connection from a
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2774 client. The arguments are SERVER, CLIENT, and MESSAGE, where SERVER
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2775 is the server process, CLIENT is the new process for the connection,
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2776 and MESSAGE is a string.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2777
49223
26622fa0d099 Reworked 2003-01-12 change -- call a plist a plist!
Kim F. Storm <storm@cua.dk>
parents: 49164
diff changeset
2778 :plist PLIST -- Install PLIST as the new process' initial plist.
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
2779
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2780 :server QLEN -- if QLEN is non-nil, create a server process for the
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2781 specified FAMILY, SERVICE, and connection type (stream or datagram).
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2782 If QLEN is an integer, it is used as the max. length of the server's
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2783 pending connection queue (also known as the backlog); the default
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2784 queue length is 5. Default is to create a client process.
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2785
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2786 The following network options can be specified for this connection:
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2787
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2788 :broadcast BOOL -- Allow send and receive of datagram broadcasts.
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2789 :dontroute BOOL -- Only send to directly connected hosts.
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2790 :keepalive BOOL -- Send keep-alive messages on network stream.
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2791 :linger BOOL or TIMEOUT -- Send queued messages before closing.
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2792 :oobinline BOOL -- Place out-of-band data in receive data stream.
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2793 :priority INT -- Set protocol defined priority for sent packets.
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2794 :reuseaddr BOOL -- Allow reusing a recently used local address
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2795 (this is allowed by default for a server process).
52594
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2796 :bindtodevice NAME -- bind to interface NAME. Using this may require
d03629d1d293 (set_socket_option): Fix :bindtodevice option.
Kim F. Storm <storm@cua.dk>
parents: 52591
diff changeset
2797 special privileges on some systems.
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2798
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2799 Consult the relevant system programmer's manual pages for more
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2800 information on using these options.
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2801
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2802
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2803 A server process will listen for and accept connections from clients.
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2804 When a client connection is accepted, a new network process is created
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2805 for the connection with the following parameters:
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2806
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2807 - The client's process name is constructed by concatenating the server
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2808 process' NAME and a client identification string.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2809 - If the FILTER argument is non-nil, the client process will not get a
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2810 separate process buffer; otherwise, the client's process buffer is a newly
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2811 created buffer named after the server process' BUFFER name or process
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
2812 NAME concatenated with the client identification string.
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2813 - The connection type and the process filter and sentinel parameters are
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2814 inherited from the server process' TYPE, FILTER and SENTINEL.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2815 - The client process' contact info is set according to the client's
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2816 addressing information (typically an IP address and a port number).
49223
26622fa0d099 Reworked 2003-01-12 change -- call a plist a plist!
Kim F. Storm <storm@cua.dk>
parents: 49164
diff changeset
2817 - The client process' plist is initialized from the server's plist.
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2818
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2819 Notice that the FILTER and SENTINEL args are never used directly by
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2820 the server process. Also, the BUFFER argument is not used directly by
47542
62a08cd28e83 (make-network-process): Doc fix (there is no network-server-log-function hook).
Kim F. Storm <storm@cua.dk>
parents: 47431
diff changeset
2821 the server process, but via the optional :log function, accepted (and
62a08cd28e83 (make-network-process): Doc fix (there is no network-server-log-function hook).
Kim F. Storm <storm@cua.dk>
parents: 47431
diff changeset
2822 failed) connections may be logged in the server process' buffer.
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2823
49142
8dca38bc0261 (Fset_process_contact): New function.
Kim F. Storm <storm@cua.dk>
parents: 49119
diff changeset
2824 The original argument list, modified with the actual connection
8dca38bc0261 (Fset_process_contact): New function.
Kim F. Storm <storm@cua.dk>
parents: 49119
diff changeset
2825 information, is available via the `process-contact' function.
8dca38bc0261 (Fset_process_contact): New function.
Kim F. Storm <storm@cua.dk>
parents: 49119
diff changeset
2826
43995
110955214222 (Fmake_network_process): Remove unused variable `sa'.
Pavel Janík <Pavel@Janik.cz>
parents: 43968
diff changeset
2827 usage: (make-network-process &rest ARGS) */)
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2828 (nargs, args)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2829 int nargs;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2830 Lisp_Object *args;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2831 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2832 Lisp_Object proc;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2833 Lisp_Object contact;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2834 struct Lisp_Process *p;
32032
633b826a56f3 (Fopen_network_stream) [HAVE_GETADDRINFO]: Use
Gerd Moellmann <gerd@gnu.org>
parents: 31806
diff changeset
2835 #ifdef HAVE_GETADDRINFO
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2836 struct addrinfo ai, *res, *lres;
68008
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2837 struct addrinfo hints;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2838 char *portstring, portbuf[128];
32032
633b826a56f3 (Fopen_network_stream) [HAVE_GETADDRINFO]: Use
Gerd Moellmann <gerd@gnu.org>
parents: 31806
diff changeset
2839 #else /* HAVE_GETADDRINFO */
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
2840 struct _emacs_addrinfo
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
2841 {
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
2842 int ai_family;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
2843 int ai_socktype;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
2844 int ai_protocol;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
2845 int ai_addrlen;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
2846 struct sockaddr *ai_addr;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
2847 struct _emacs_addrinfo *ai_next;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
2848 } ai, *res, *lres;
25262
ccf83ed7326a (Fopen_network_stream): Fix previous change.
Karl Heuer <kwzh@gnu.org>
parents: 25248
diff changeset
2849 #endif /* HAVE_GETADDRINFO */
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2850 struct sockaddr_in address_in;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2851 #ifdef HAVE_LOCAL_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2852 struct sockaddr_un address_un;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2853 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2854 int port;
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
2855 int ret = 0;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
2856 int xerrno = 0;
25262
ccf83ed7326a (Fopen_network_stream): Fix previous change.
Karl Heuer <kwzh@gnu.org>
parents: 25248
diff changeset
2857 int s = -1, outch, inch;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2858 struct gcpro gcpro1;
46293
1fb8f75062c6 Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents: 45410
diff changeset
2859 int count = SPECPDL_INDEX ();
25705
1f109108fa7e (Fopen_network_stream): Avoid socket decriptor leak.
Andreas Schwab <schwab@suse.de>
parents: 25645
diff changeset
2860 int count1;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2861 Lisp_Object QCaddress; /* one of QClocal or QCremote */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2862 Lisp_Object tem;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2863 Lisp_Object name, buffer, host, service, address;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2864 Lisp_Object filter, sentinel;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2865 int is_non_blocking_client = 0;
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2866 int is_server = 0, backlog = 5;
44067
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
2867 int socktype;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2868 int family = -1;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2869
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2870 if (nargs == 0)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2871 return Qnil;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2872
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2873 /* Save arguments for process-contact and clone-process. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2874 contact = Flist (nargs, args);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2875 GCPRO1 (contact);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2876
15355
6bb377ef707f (Fopen_network_stream)[WINDOWSNT]: Ensure Windows
Richard M. Stallman <rms@gnu.org>
parents: 15092
diff changeset
2877 #ifdef WINDOWSNT
6bb377ef707f (Fopen_network_stream)[WINDOWSNT]: Ensure Windows
Richard M. Stallman <rms@gnu.org>
parents: 15092
diff changeset
2878 /* Ensure socket support is loaded if available. */
6bb377ef707f (Fopen_network_stream)[WINDOWSNT]: Ensure Windows
Richard M. Stallman <rms@gnu.org>
parents: 15092
diff changeset
2879 init_winsock (TRUE);
6bb377ef707f (Fopen_network_stream)[WINDOWSNT]: Ensure Windows
Richard M. Stallman <rms@gnu.org>
parents: 15092
diff changeset
2880 #endif
6bb377ef707f (Fopen_network_stream)[WINDOWSNT]: Ensure Windows
Richard M. Stallman <rms@gnu.org>
parents: 15092
diff changeset
2881
44067
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
2882 /* :type TYPE (nil: stream, datagram */
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
2883 tem = Fplist_get (contact, QCtype);
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
2884 if (NILP (tem))
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
2885 socktype = SOCK_STREAM;
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
2886 #ifdef DATAGRAM_SOCKETS
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
2887 else if (EQ (tem, Qdatagram))
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
2888 socktype = SOCK_DGRAM;
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
2889 #endif
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
2890 else
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
2891 error ("Unsupported connection type");
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2892
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2893 /* :server BOOL */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2894 tem = Fplist_get (contact, QCserver);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2895 if (!NILP (tem))
25248
f0fc8443bdbb (Fopen_network_stream): Use getaddrinfo.
Karl Heuer <kwzh@gnu.org>
parents: 25129
diff changeset
2896 {
45099
8a33d836b6fb (Fmake_network_process): Only support server sockets
Jason Rumney <jasonr@gnu.org>
parents: 45005
diff changeset
2897 /* Don't support network sockets when non-blocking mode is
8a33d836b6fb (Fmake_network_process): Only support server sockets
Jason Rumney <jasonr@gnu.org>
parents: 45005
diff changeset
2898 not available, since a blocked Emacs is not useful. */
8a33d836b6fb (Fmake_network_process): Only support server sockets
Jason Rumney <jasonr@gnu.org>
parents: 45005
diff changeset
2899 #if defined(TERM) || (!defined(O_NONBLOCK) && !defined(O_NDELAY))
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2900 error ("Network servers not supported");
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2901 #else
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2902 is_server = 1;
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2903 if (INTEGERP (tem))
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
2904 backlog = XINT (tem);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2905 #endif
25248
f0fc8443bdbb (Fopen_network_stream): Use getaddrinfo.
Karl Heuer <kwzh@gnu.org>
parents: 25129
diff changeset
2906 }
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2907
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2908 /* Make QCaddress an alias for :local (server) or :remote (client). */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2909 QCaddress = is_server ? QClocal : QCremote;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2910
74946
9321ec6bc5db Fix typo in comment.
Kim F. Storm <storm@cua.dk>
parents: 74749
diff changeset
2911 /* :nowait BOOL */
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2912 if (!is_server && socktype == SOCK_STREAM
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2913 && (tem = Fplist_get (contact, QCnowait), !NILP (tem)))
25248
f0fc8443bdbb (Fopen_network_stream): Use getaddrinfo.
Karl Heuer <kwzh@gnu.org>
parents: 25129
diff changeset
2914 {
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2915 #ifndef NON_BLOCKING_CONNECT
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2916 error ("Non-blocking connect not supported");
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2917 #else
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2918 is_non_blocking_client = 1;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2919 #endif
25248
f0fc8443bdbb (Fopen_network_stream): Use getaddrinfo.
Karl Heuer <kwzh@gnu.org>
parents: 25129
diff changeset
2920 }
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2921
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2922 name = Fplist_get (contact, QCname);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2923 buffer = Fplist_get (contact, QCbuffer);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2924 filter = Fplist_get (contact, QCfilter);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2925 sentinel = Fplist_get (contact, QCsentinel);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2926
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2927 CHECK_STRING (name);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2928
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2929 #ifdef TERM
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2930 /* Let's handle TERM before things get complicated ... */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2931 host = Fplist_get (contact, QChost);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2932 CHECK_STRING (host);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
2933
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2934 service = Fplist_get (contact, QCservice);
9115
59bc2d010b5f (decode_status, Fprocessp, Fget_process, Fget_buffer_process, Fprocess_status,
Karl Heuer <kwzh@gnu.org>
parents: 9034
diff changeset
2935 if (INTEGERP (service))
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2936 port = htons ((unsigned short) XINT (service));
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2937 else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2938 {
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2939 struct servent *svc_info;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
2940 CHECK_STRING (service);
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
2941 svc_info = getservbyname (SDATA (service), "tcp");
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2942 if (svc_info == 0)
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
2943 error ("Unknown service: %s", SDATA (service));
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2944 port = svc_info->s_port;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2945 }
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2946
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2947 s = connect_server (0);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2948 if (s < 0)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2949 report_file_error ("error creating socket", Fcons (name, Qnil));
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
2950 send_command (s, C_PORT, 0, "%s:%d", SDATA (host), ntohs (port));
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2951 send_command (s, C_DUMB, 1, 0);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2952
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2953 #else /* not TERM */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2954
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2955 /* Initialize addrinfo structure in case we don't use getaddrinfo. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2956 ai.ai_socktype = socktype;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2957 ai.ai_protocol = 0;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2958 ai.ai_next = NULL;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2959 res = &ai;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2960
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2961 /* :local ADDRESS or :remote ADDRESS */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2962 address = Fplist_get (contact, QCaddress);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2963 if (!NILP (address))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2964 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2965 host = service = Qnil;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2966
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2967 if (!(ai.ai_addrlen = get_lisp_to_sockaddr_size (address, &family)))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2968 error ("Malformed :address");
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2969 ai.ai_family = family;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2970 ai.ai_addr = alloca (ai.ai_addrlen);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2971 conv_lisp_to_sockaddr (family, address, ai.ai_addr, ai.ai_addrlen);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2972 goto open_socket;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2973 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2974
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2975 /* :family FAMILY -- nil (for Inet), local, or integer. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2976 tem = Fplist_get (contact, QCfamily);
68008
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2977 if (NILP (tem))
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2978 {
68041
b7409cbd6d99 (Fmake_network_process): Use AF_INET instead of
Kim F. Storm <storm@cua.dk>
parents: 68022
diff changeset
2979 #if defined(HAVE_GETADDRINFO) && defined(AF_INET6)
68008
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2980 family = AF_UNSPEC;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2981 #else
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2982 family = AF_INET;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2983 #endif
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2984 }
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2985 #ifdef HAVE_LOCAL_SOCKETS
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2986 else if (EQ (tem, Qlocal))
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2987 family = AF_LOCAL;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2988 #endif
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2989 #ifdef AF_INET6
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2990 else if (EQ (tem, Qipv6))
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2991 family = AF_INET6;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2992 #endif
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2993 else if (EQ (tem, Qipv4))
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2994 family = AF_INET;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2995 else if (INTEGERP (tem))
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2996 family = XINT (tem);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2997 else
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
2998 error ("Unknown address family");
68008
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
2999
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3000 ai.ai_family = family;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3001
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3002 /* :service SERVICE -- string, integer (port number), or t (random port). */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3003 service = Fplist_get (contact, QCservice);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3004
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3005 #ifdef HAVE_LOCAL_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3006 if (family == AF_LOCAL)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3007 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3008 /* Host is not used. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3009 host = Qnil;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3010 CHECK_STRING (service);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3011 bzero (&address_un, sizeof address_un);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3012 address_un.sun_family = AF_LOCAL;
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
3013 strncpy (address_un.sun_path, SDATA (service), sizeof address_un.sun_path);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3014 ai.ai_addr = (struct sockaddr *) &address_un;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3015 ai.ai_addrlen = sizeof address_un;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3016 goto open_socket;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3017 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3018 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3019
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3020 /* :host HOST -- hostname, ip address, or 'local for localhost. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3021 host = Fplist_get (contact, QChost);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3022 if (!NILP (host))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3023 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3024 if (EQ (host, Qlocal))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3025 host = build_string ("localhost");
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3026 CHECK_STRING (host);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3027 }
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3028
13777
5e0cbd5fcb46 (Fopen_network_stream): Call bind_polling_period earlier.
Karl Heuer <kwzh@gnu.org>
parents: 13709
diff changeset
3029 /* 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
3030 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
3031 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
3032 #ifdef POLL_FOR_INPUT
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3033 if (socktype == SOCK_STREAM)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3034 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3035 record_unwind_protect (unwind_stop_other_atimers, Qnil);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3036 bind_polling_period (10);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3037 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3038 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3039
25248
f0fc8443bdbb (Fopen_network_stream): Use getaddrinfo.
Karl Heuer <kwzh@gnu.org>
parents: 25129
diff changeset
3040 #ifdef HAVE_GETADDRINFO
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3041 /* If we have a host, use getaddrinfo to resolve both host and service.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3042 Otherwise, use getservbyname to lookup the service. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3043 if (!NILP (host))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3044 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3045
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3046 /* SERVICE can either be a string or int.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3047 Convert to a C string for later use by getaddrinfo. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3048 if (EQ (service, Qt))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3049 portstring = "0";
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3050 else if (INTEGERP (service))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3051 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3052 sprintf (portbuf, "%ld", (long) XINT (service));
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3053 portstring = portbuf;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3054 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3055 else
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3056 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3057 CHECK_STRING (service);
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
3058 portstring = SDATA (service);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3059 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3060
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3061 immediate_quit = 1;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3062 QUIT;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3063 memset (&hints, 0, sizeof (hints));
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3064 hints.ai_flags = 0;
68008
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
3065 hints.ai_family = family;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3066 hints.ai_socktype = socktype;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3067 hints.ai_protocol = 0;
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
3068 ret = getaddrinfo (SDATA (host), portstring, &hints, &res);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3069 if (ret)
32074
a889f9fc59a7 (Fopen_network_stream): Use HAVE_GAI_STRERROR.
Dave Love <fx@gnu.org>
parents: 32032
diff changeset
3070 #ifdef HAVE_GAI_STRERROR
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
3071 error ("%s/%s %s", SDATA (host), portstring, gai_strerror(ret));
32074
a889f9fc59a7 (Fopen_network_stream): Use HAVE_GAI_STRERROR.
Dave Love <fx@gnu.org>
parents: 32032
diff changeset
3072 #else
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
3073 error ("%s/%s getaddrinfo error %d", SDATA (host), portstring, ret);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3074 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3075 immediate_quit = 0;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3076
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3077 goto open_socket;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3078 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3079 #endif /* HAVE_GETADDRINFO */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3080
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3081 /* We end up here if getaddrinfo is not defined, or in case no hostname
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3082 has been specified (e.g. for a local server process). */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3083
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3084 if (EQ (service, Qt))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3085 port = 0;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3086 else if (INTEGERP (service))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3087 port = htons ((unsigned short) XINT (service));
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3088 else
8287
97c2535b7f37 (Fopen_network_stream): Retry gethostbyname after TRY_AGAIN failure.
Richard M. Stallman <rms@gnu.org>
parents: 8231
diff changeset
3089 {
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3090 struct servent *svc_info;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3091 CHECK_STRING (service);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
3092 svc_info = getservbyname (SDATA (service),
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3093 (socktype == SOCK_DGRAM ? "udp" : "tcp"));
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3094 if (svc_info == 0)
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
3095 error ("Unknown service: %s", SDATA (service));
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3096 port = svc_info->s_port;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3097 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3098
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3099 bzero (&address_in, sizeof address_in);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3100 address_in.sin_family = family;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3101 address_in.sin_addr.s_addr = INADDR_ANY;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3102 address_in.sin_port = port;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3103
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3104 #ifndef HAVE_GETADDRINFO
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3105 if (!NILP (host))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3106 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3107 struct hostent *host_info_ptr;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3108
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3109 /* gethostbyname may fail with TRY_AGAIN, but we don't honour that,
55444
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
3110 as it may `hang' Emacs for a very long time. */
14758
849458c13c0c (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 14736
diff changeset
3111 immediate_quit = 1;
849458c13c0c (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 14736
diff changeset
3112 QUIT;
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
3113 host_info_ptr = gethostbyname (SDATA (host));
14758
849458c13c0c (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 14736
diff changeset
3114 immediate_quit = 0;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
3115
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3116 if (host_info_ptr)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3117 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3118 bcopy (host_info_ptr->h_addr, (char *) &address_in.sin_addr,
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3119 host_info_ptr->h_length);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3120 family = host_info_ptr->h_addrtype;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3121 address_in.sin_family = family;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3122 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3123 else
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3124 /* Attempt to interpret host as numeric inet address */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3125 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3126 IN_ADDR numeric_addr;
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
3127 numeric_addr = inet_addr ((char *) SDATA (host));
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3128 if (NUMERIC_ADDR_ERROR)
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
3129 error ("Unknown host \"%s\"", SDATA (host));
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3130
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3131 bcopy ((char *)&numeric_addr, (char *) &address_in.sin_addr,
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3132 sizeof (address_in.sin_addr));
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3133 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3134
8287
97c2535b7f37 (Fopen_network_stream): Retry gethostbyname after TRY_AGAIN failure.
Richard M. Stallman <rms@gnu.org>
parents: 8231
diff changeset
3135 }
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3136 #endif /* not HAVE_GETADDRINFO */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3137
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3138 ai.ai_family = family;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3139 ai.ai_addr = (struct sockaddr *) &address_in;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3140 ai.ai_addrlen = sizeof address_in;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3141
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3142 open_socket:
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3143
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3144 /* Kernel bugs (on Ultrix at least) cause lossage (not just EINTR)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3145 when connect is interrupted. So let's not let it get interrupted.
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3146 Note we do not turn off polling, because polling is only used
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3147 when not interrupt_input, and thus not normally used on the systems
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3148 which have this bug. On systems which use polling, there's no way
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3149 to quit if polling is turned off. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3150 if (interrupt_input
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3151 && !is_server && socktype == SOCK_STREAM)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3152 {
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3153 /* Comment from KFS: The original open-network-stream code
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3154 didn't unwind protect this, but it seems like the proper
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3155 thing to do. In any case, I don't see how it could harm to
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3156 do this -- and it makes cleanup (using unbind_to) easier. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3157 record_unwind_protect (unwind_request_sigio, Qnil);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3158 unrequest_sigio ();
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3159 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3160
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3161 /* Do this in case we never enter the for-loop below. */
46293
1fb8f75062c6 Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents: 45410
diff changeset
3162 count1 = SPECPDL_INDEX ();
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3163 s = -1;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3164
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3165 for (lres = res; lres; lres = lres->ai_next)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3166 {
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3167 int optn, optbits;
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3168
58072
4ebc52bf6429 (Fmake_network_process): Remove kludge for interrupted
Kim F. Storm <storm@cua.dk>
parents: 57840
diff changeset
3169 retry_connect:
4ebc52bf6429 (Fmake_network_process): Remove kludge for interrupted
Kim F. Storm <storm@cua.dk>
parents: 57840
diff changeset
3170
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3171 s = socket (lres->ai_family, lres->ai_socktype, lres->ai_protocol);
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3172 if (s < 0)
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3173 {
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3174 xerrno = errno;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3175 continue;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3176 }
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3177
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3178 #ifdef DATAGRAM_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3179 if (!is_server && socktype == SOCK_DGRAM)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3180 break;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3181 #endif /* DATAGRAM_SOCKETS */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3182
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3183 #ifdef NON_BLOCKING_CONNECT
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3184 if (is_non_blocking_client)
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3185 {
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3186 #ifdef O_NONBLOCK
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3187 ret = fcntl (s, F_SETFL, O_NONBLOCK);
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3188 #else
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3189 ret = fcntl (s, F_SETFL, O_NDELAY);
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3190 #endif
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3191 if (ret < 0)
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3192 {
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3193 xerrno = errno;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3194 emacs_close (s);
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3195 s = -1;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3196 continue;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3197 }
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3198 }
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3199 #endif
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
3200
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3201 /* Make us close S if quit. */
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3202 record_unwind_protect (close_file_unwind, make_number (s));
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3203
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3204 /* Parse network options in the arg list.
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3205 We simply ignore anything which isn't a known option (including other keywords).
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3206 An error is signalled if setting a known option fails. */
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3207 for (optn = optbits = 0; optn < nargs-1; optn += 2)
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3208 optbits |= set_socket_option (s, args[optn], args[optn+1]);
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3209
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3210 if (is_server)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3211 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3212 /* Configure as a server socket. */
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3213
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3214 /* SO_REUSEADDR = 1 is default for server sockets; must specify
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3215 explicit :reuseaddr key to override this. */
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3216 #ifdef HAVE_LOCAL_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3217 if (family != AF_LOCAL)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3218 #endif
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3219 if (!(optbits & (1 << OPIX_REUSEADDR)))
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3220 {
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3221 int optval = 1;
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3222 if (setsockopt (s, SOL_SOCKET, SO_REUSEADDR, &optval, sizeof optval))
53072
8787289602d1 Remove period at end of error message.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52633
diff changeset
3223 report_file_error ("Cannot set reuse option on server socket", Qnil);
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3224 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
3225
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3226 if (bind (s, lres->ai_addr, lres->ai_addrlen))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3227 report_file_error ("Cannot bind server socket", Qnil);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3228
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3229 #ifdef HAVE_GETSOCKNAME
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3230 if (EQ (service, Qt))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3231 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3232 struct sockaddr_in sa1;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3233 int len1 = sizeof (sa1);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3234 if (getsockname (s, (struct sockaddr *)&sa1, &len1) == 0)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3235 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3236 ((struct sockaddr_in *)(lres->ai_addr))->sin_port = sa1.sin_port;
49119
938f153410ae (Fmake_network_process): Convert new port number
Kim F. Storm <storm@cua.dk>
parents: 49114
diff changeset
3237 service = make_number (ntohs (sa1.sin_port));
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3238 contact = Fplist_put (contact, QCservice, service);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3239 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3240 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3241 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3242
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3243 if (socktype == SOCK_STREAM && listen (s, backlog))
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3244 report_file_error ("Cannot listen on server socket", Qnil);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3245
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3246 break;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3247 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3248
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3249 immediate_quit = 1;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3250 QUIT;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3251
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3252 /* This turns off all alarm-based interrupts; the
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3253 bind_polling_period call above doesn't always turn all the
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3254 short-interval ones off, especially if interrupt_input is
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3255 set.
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3256
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3257 It'd be nice to be able to control the connect timeout
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
3258 though. Would non-blocking connect calls be portable?
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3259
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3260 This used to be conditioned by HAVE_GETADDRINFO. Why? */
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3261
43642
bfd9fa0143d9 (Fopen_network_stream): Always call turn_on_atimers around connect.
Kim F. Storm <storm@cua.dk>
parents: 43617
diff changeset
3262 turn_on_atimers (0);
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3263
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3264 ret = connect (s, lres->ai_addr, lres->ai_addrlen);
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3265 xerrno = errno;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3266
43642
bfd9fa0143d9 (Fopen_network_stream): Always call turn_on_atimers around connect.
Kim F. Storm <storm@cua.dk>
parents: 43617
diff changeset
3267 turn_on_atimers (1);
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3268
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3269 if (ret == 0 || xerrno == EISCONN)
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3270 {
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3271 /* The unwind-protect will be discarded afterwards.
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3272 Likewise for immediate_quit. */
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3273 break;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3274 }
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3275
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3276 #ifdef NON_BLOCKING_CONNECT
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3277 #ifdef EINPROGRESS
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3278 if (is_non_blocking_client && xerrno == EINPROGRESS)
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3279 break;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3280 #else
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3281 #ifdef EWOULDBLOCK
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3282 if (is_non_blocking_client && xerrno == EWOULDBLOCK)
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3283 break;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3284 #endif
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3285 #endif
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3286 #endif
7220
a33eb16cab9d (Fopen_network_stream): Retry the connect if EADDRINUSE. Ignore EISCONN.
Richard M. Stallman <rms@gnu.org>
parents: 7157
diff changeset
3287
14671
0493e857a13b (Fopen_network_stream): Set immediate_quit for the connect.
Richard M. Stallman <rms@gnu.org>
parents: 14613
diff changeset
3288 immediate_quit = 0;
0493e857a13b (Fopen_network_stream): Set immediate_quit for the connect.
Richard M. Stallman <rms@gnu.org>
parents: 14613
diff changeset
3289
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3290 /* Discard the unwind protect closing S. */
25705
1f109108fa7e (Fopen_network_stream): Avoid socket decriptor leak.
Andreas Schwab <schwab@suse.de>
parents: 25645
diff changeset
3291 specpdl_ptr = specpdl + count1;
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
3292 emacs_close (s);
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3293 s = -1;
58072
4ebc52bf6429 (Fmake_network_process): Remove kludge for interrupted
Kim F. Storm <storm@cua.dk>
parents: 57840
diff changeset
3294
4ebc52bf6429 (Fmake_network_process): Remove kludge for interrupted
Kim F. Storm <storm@cua.dk>
parents: 57840
diff changeset
3295 if (xerrno == EINTR)
4ebc52bf6429 (Fmake_network_process): Remove kludge for interrupted
Kim F. Storm <storm@cua.dk>
parents: 57840
diff changeset
3296 goto retry_connect;
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3297 }
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3298
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3299 if (s >= 0)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3300 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3301 #ifdef DATAGRAM_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3302 if (socktype == SOCK_DGRAM)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3303 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3304 if (datagram_address[s].sa)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3305 abort ();
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3306 datagram_address[s].sa = (struct sockaddr *) xmalloc (lres->ai_addrlen);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3307 datagram_address[s].len = lres->ai_addrlen;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3308 if (is_server)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3309 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3310 Lisp_Object remote;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3311 bzero (datagram_address[s].sa, lres->ai_addrlen);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3312 if (remote = Fplist_get (contact, QCremote), !NILP (remote))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3313 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3314 int rfamily, rlen;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3315 rlen = get_lisp_to_sockaddr_size (remote, &rfamily);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3316 if (rfamily == lres->ai_family && rlen == lres->ai_addrlen)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3317 conv_lisp_to_sockaddr (rfamily, remote,
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3318 datagram_address[s].sa, rlen);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3319 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3320 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3321 else
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3322 bcopy (lres->ai_addr, datagram_address[s].sa, lres->ai_addrlen);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3323 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3324 #endif
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
3325 contact = Fplist_put (contact, QCaddress,
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3326 conv_sockaddr_to_lisp (lres->ai_addr, lres->ai_addrlen));
49111
32c767302a23 (server_accept_connection): Fixed recording of new
Kim F. Storm <storm@cua.dk>
parents: 48424
diff changeset
3327 #ifdef HAVE_GETSOCKNAME
32c767302a23 (server_accept_connection): Fixed recording of new
Kim F. Storm <storm@cua.dk>
parents: 48424
diff changeset
3328 if (!is_server)
32c767302a23 (server_accept_connection): Fixed recording of new
Kim F. Storm <storm@cua.dk>
parents: 48424
diff changeset
3329 {
32c767302a23 (server_accept_connection): Fixed recording of new
Kim F. Storm <storm@cua.dk>
parents: 48424
diff changeset
3330 struct sockaddr_in sa1;
32c767302a23 (server_accept_connection): Fixed recording of new
Kim F. Storm <storm@cua.dk>
parents: 48424
diff changeset
3331 int len1 = sizeof (sa1);
32c767302a23 (server_accept_connection): Fixed recording of new
Kim F. Storm <storm@cua.dk>
parents: 48424
diff changeset
3332 if (getsockname (s, (struct sockaddr *)&sa1, &len1) == 0)
32c767302a23 (server_accept_connection): Fixed recording of new
Kim F. Storm <storm@cua.dk>
parents: 48424
diff changeset
3333 contact = Fplist_put (contact, QClocal,
32c767302a23 (server_accept_connection): Fixed recording of new
Kim F. Storm <storm@cua.dk>
parents: 48424
diff changeset
3334 conv_sockaddr_to_lisp (&sa1, len1));
32c767302a23 (server_accept_connection): Fixed recording of new
Kim F. Storm <storm@cua.dk>
parents: 48424
diff changeset
3335 }
32c767302a23 (server_accept_connection): Fixed recording of new
Kim F. Storm <storm@cua.dk>
parents: 48424
diff changeset
3336 #endif
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3337 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3338
76626
2fb8fb4a9bab (Fmake_network_process) [HAVE_GETADDRINFO]: Clear
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 76494
diff changeset
3339 immediate_quit = 0;
2fb8fb4a9bab (Fmake_network_process) [HAVE_GETADDRINFO]: Clear
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 76494
diff changeset
3340
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3341 #ifdef HAVE_GETADDRINFO
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3342 if (res != &ai)
76626
2fb8fb4a9bab (Fmake_network_process) [HAVE_GETADDRINFO]: Clear
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 76494
diff changeset
3343 {
2fb8fb4a9bab (Fmake_network_process) [HAVE_GETADDRINFO]: Clear
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 76494
diff changeset
3344 BLOCK_INPUT;
2fb8fb4a9bab (Fmake_network_process) [HAVE_GETADDRINFO]: Clear
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 76494
diff changeset
3345 freeaddrinfo (res);
2fb8fb4a9bab (Fmake_network_process) [HAVE_GETADDRINFO]: Clear
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 76494
diff changeset
3346 UNBLOCK_INPUT;
2fb8fb4a9bab (Fmake_network_process) [HAVE_GETADDRINFO]: Clear
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 76494
diff changeset
3347 }
2fb8fb4a9bab (Fmake_network_process) [HAVE_GETADDRINFO]: Clear
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 76494
diff changeset
3348 #endif
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3349
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3350 /* Discard the unwind protect for closing S, if any. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3351 specpdl_ptr = specpdl + count1;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3352
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3353 /* Unwind bind_polling_period and request_sigio. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3354 unbind_to (count, Qnil);
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3355
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3356 if (s < 0)
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3357 {
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3358 /* If non-blocking got this far - and failed - assume non-blocking is
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3359 not supported after all. This is probably a wrong assumption, but
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3360 the normal blocking calls to open-network-stream handles this error
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3361 better. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3362 if (is_non_blocking_client)
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3363 return Qnil;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3364
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3365 errno = xerrno;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3366 if (is_server)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3367 report_file_error ("make server process failed", contact);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3368 else
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3369 report_file_error ("make client process failed", contact);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3370 }
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3371
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3372 #endif /* not TERM */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3373
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3374 inch = s;
17247
351006378b51 (Fopen_network_stream): Use same socket for in and out.
Richard M. Stallman <rms@gnu.org>
parents: 17224
diff changeset
3375 outch = s;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3376
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3377 if (!NILP (buffer))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3378 buffer = Fget_buffer_create (buffer);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3379 proc = make_process (name);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3380
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3381 chan_process[inch] = proc;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3382
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3383 #ifdef O_NONBLOCK
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3384 fcntl (inch, F_SETFL, O_NONBLOCK);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3385 #else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3386 #ifdef O_NDELAY
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3387 fcntl (inch, F_SETFL, O_NDELAY);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3388 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3389 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3390
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3391 p = XPROCESS (proc);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3392
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3393 p->childp = contact;
49223
26622fa0d099 Reworked 2003-01-12 change -- call a plist a plist!
Kim F. Storm <storm@cua.dk>
parents: 49164
diff changeset
3394 p->plist = Fcopy_sequence (Fplist_get (contact, QCplist));
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
3395
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3396 p->buffer = buffer;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3397 p->sentinel = sentinel;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3398 p->filter = filter;
49667
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
3399 p->filter_multibyte = buffer_defaults.enable_multibyte_characters;
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
3400 /* Override the above only if :filter-multibyte is specified. */
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
3401 if (! NILP (Fplist_member (contact, QCfilter_multibyte)))
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
3402 p->filter_multibyte = Fplist_get (contact, QCfilter_multibyte);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3403 p->log = Fplist_get (contact, QClog);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3404 if (tem = Fplist_get (contact, QCnoquery), !NILP (tem))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3405 p->kill_without_query = Qt;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3406 if ((tem = Fplist_get (contact, QCstop), !NILP (tem)))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3407 p->command = Qt;
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
3408 p->pid = 0;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3409 XSETINT (p->infd, inch);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3410 XSETINT (p->outfd, outch);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3411 if (is_server && socktype == SOCK_STREAM)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3412 p->status = Qlisten;
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3413
69151
08c9c1760e1c (Fmake_network_process): Init the process's mark.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 68651
diff changeset
3414 /* Make the process marker point into the process buffer (if any). */
08c9c1760e1c (Fmake_network_process): Init the process's mark.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 68651
diff changeset
3415 if (BUFFERP (buffer))
08c9c1760e1c (Fmake_network_process): Init the process's mark.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 68651
diff changeset
3416 set_marker_both (p->mark, buffer,
08c9c1760e1c (Fmake_network_process): Init the process's mark.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 68651
diff changeset
3417 BUF_ZV (XBUFFER (buffer)),
08c9c1760e1c (Fmake_network_process): Init the process's mark.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 68651
diff changeset
3418 BUF_ZV_BYTE (XBUFFER (buffer)));
08c9c1760e1c (Fmake_network_process): Init the process's mark.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 68651
diff changeset
3419
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3420 #ifdef NON_BLOCKING_CONNECT
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3421 if (is_non_blocking_client)
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3422 {
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3423 /* We may get here if connect did succeed immediately. However,
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3424 in that case, we still need to signal this like a non-blocking
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3425 connection. */
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3426 p->status = Qconnect;
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3427 if (!FD_ISSET (inch, &connect_wait_mask))
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3428 {
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3429 FD_SET (inch, &connect_wait_mask);
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3430 num_pending_connects++;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3431 }
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3432 }
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3433 else
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3434 #endif
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3435 /* A server may have a client filter setting of Qt, but it must
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3436 still listen for incoming connects unless it is stopped. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3437 if ((!EQ (p->filter, Qt) && !EQ (p->command, Qt))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3438 || (EQ (p->status, Qlisten) && NILP (p->command)))
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3439 {
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3440 FD_SET (inch, &input_wait_mask);
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3441 FD_SET (inch, &non_keyboard_wait_mask);
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3442 }
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3443
7044
7032d07f5ad9 (max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7013
diff changeset
3444 if (inch > max_process_desc)
7032d07f5ad9 (max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7013
diff changeset
3445 max_process_desc = inch;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3446
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3447 tem = Fplist_member (contact, QCcoding);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3448 if (!NILP (tem) && (!CONSP (tem) || !CONSP (XCDR (tem))))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3449 tem = Qnil; /* No error message (too late!). */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3450
22019
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3451 {
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3452 /* Setup coding systems for communicating with the network stream. */
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3453 struct gcpro gcpro1;
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3454 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3455 Lisp_Object coding_systems = Qt;
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3456 Lisp_Object args[5], val;
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3457
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3458 if (!NILP (tem))
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3459 {
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3460 val = XCAR (XCDR (tem));
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3461 if (CONSP (val))
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3462 val = XCAR (val);
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3463 }
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3464 else if (!NILP (Vcoding_system_for_read))
22019
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3465 val = Vcoding_system_for_read;
25770
3a44b5298cd5 (list_processes_1): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents: 25760
diff changeset
3466 else if ((!NILP (buffer) && NILP (XBUFFER (buffer)->enable_multibyte_characters))
3a44b5298cd5 (list_processes_1): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents: 25760
diff changeset
3467 || (NILP (buffer) && NILP (buffer_defaults.enable_multibyte_characters)))
22019
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3468 /* We dare not decode end-of-line format by setting VAL to
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3469 Qraw_text, because the existing Emacs Lisp libraries
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3470 assume that they receive bare code including a sequene of
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3471 CR LF. */
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3472 val = Qnil;
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3473 else
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3474 {
47987
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
3475 if (NILP (host) || NILP (service))
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
3476 coding_systems = Qnil;
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
3477 else
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
3478 {
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
3479 args[0] = Qopen_network_stream, args[1] = name,
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
3480 args[2] = buffer, args[3] = host, args[4] = service;
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
3481 GCPRO1 (proc);
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
3482 coding_systems = Ffind_operation_coding_system (5, args);
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
3483 UNGCPRO;
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
3484 }
22019
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3485 if (CONSP (coding_systems))
25645
a14111a2a100 Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25356
diff changeset
3486 val = XCAR (coding_systems);
22019
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3487 else if (CONSP (Vdefault_process_coding_system))
25645
a14111a2a100 Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25356
diff changeset
3488 val = XCAR (Vdefault_process_coding_system);
22019
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3489 else
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3490 val = Qnil;
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3491 }
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3492 p->decode_coding_system = val;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3493
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3494 if (!NILP (tem))
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3495 {
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3496 val = XCAR (XCDR (tem));
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3497 if (CONSP (val))
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3498 val = XCDR (val);
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3499 }
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3500 else if (!NILP (Vcoding_system_for_write))
22019
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3501 val = Vcoding_system_for_write;
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3502 else if (NILP (current_buffer->enable_multibyte_characters))
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3503 val = Qnil;
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3504 else
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3505 {
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3506 if (EQ (coding_systems, Qt))
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3507 {
47987
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
3508 if (NILP (host) || NILP (service))
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
3509 coding_systems = Qnil;
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
3510 else
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
3511 {
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
3512 args[0] = Qopen_network_stream, args[1] = name,
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
3513 args[2] = buffer, args[3] = host, args[4] = service;
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
3514 GCPRO1 (proc);
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
3515 coding_systems = Ffind_operation_coding_system (5, args);
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
3516 UNGCPRO;
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
3517 }
22019
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3518 }
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3519 if (CONSP (coding_systems))
25645
a14111a2a100 Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25356
diff changeset
3520 val = XCDR (coding_systems);
22019
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3521 else if (CONSP (Vdefault_process_coding_system))
25645
a14111a2a100 Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25356
diff changeset
3522 val = XCDR (Vdefault_process_coding_system);
22019
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3523 else
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3524 val = Qnil;
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3525 }
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3526 p->encode_coding_system = val;
22019
bb9dd4758e7e (Fstart_process): Remove the special case for
Richard M. Stallman <rms@gnu.org>
parents: 21978
diff changeset
3527 }
49667
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
3528 setup_process_coding_systems (proc);
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
3529
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3530 p->decoding_buf = make_uninit_string (0);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3531 p->decoding_carryover = make_number (0);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3532 p->encoding_buf = make_uninit_string (0);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3533 p->encoding_carryover = make_number (0);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3534
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3535 p->inherit_coding_system_flag
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3536 = (!NILP (tem) || NILP (buffer) || !inherit_process_coding_system
21848
050ea21cec87 (Fset_process_inherit_coding_system_flag, Fstart_process):
Richard M. Stallman <rms@gnu.org>
parents: 21798
diff changeset
3537 ? Qnil : Qt);
21656
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
3538
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3539 UNGCPRO;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3540 return proc;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3541 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3542 #endif /* HAVE_SOCKETS */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3543
52503
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3544
52525
fd2be6cea0e7 (Fnetwork_interface_list, Fnetwork_interface_info):
Kim F. Storm <storm@cua.dk>
parents: 52516
diff changeset
3545 #if defined(HAVE_SOCKETS) && defined(HAVE_NET_IF_H) && defined(HAVE_SYS_IOCTL_H)
52503
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3546
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3547 #ifdef SIOCGIFCONF
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3548 DEFUN ("network-interface-list", Fnetwork_interface_list, Snetwork_interface_list, 0, 0, 0,
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3549 doc: /* Return an alist of all network interfaces and their network address.
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3550 Each element is a cons, the car of which is a string containing the
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3551 interface name, and the cdr is the network address in internal
52527
3ea59ac8dfa5 (Fnetwork_interface_info): Fix type error.
Dave Love <fx@gnu.org>
parents: 52525
diff changeset
3552 format; see the description of ADDRESS in `make-network-process'. */)
52503
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3553 ()
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3554 {
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3555 struct ifconf ifconf;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3556 struct ifreq *ifreqs = NULL;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3557 int ifaces = 0;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3558 int buf_size, s;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3559 Lisp_Object res;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3560
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3561 s = socket (AF_INET, SOCK_STREAM, 0);
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3562 if (s < 0)
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3563 return Qnil;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3564
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3565 again:
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3566 ifaces += 25;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3567 buf_size = ifaces * sizeof(ifreqs[0]);
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3568 ifreqs = (struct ifreq *)xrealloc(ifreqs, buf_size);
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3569 if (!ifreqs)
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3570 {
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3571 close (s);
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3572 return Qnil;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3573 }
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3574
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3575 ifconf.ifc_len = buf_size;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3576 ifconf.ifc_req = ifreqs;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3577 if (ioctl (s, SIOCGIFCONF, &ifconf))
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3578 {
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3579 close (s);
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3580 return Qnil;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3581 }
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3582
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3583 if (ifconf.ifc_len == buf_size)
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3584 goto again;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3585
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3586 close (s);
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3587 ifaces = ifconf.ifc_len / sizeof (ifreqs[0]);
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3588
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3589 res = Qnil;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3590 while (--ifaces >= 0)
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3591 {
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3592 struct ifreq *ifq = &ifreqs[ifaces];
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3593 char namebuf[sizeof (ifq->ifr_name) + 1];
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3594 if (ifq->ifr_addr.sa_family != AF_INET)
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3595 continue;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3596 bcopy (ifq->ifr_name, namebuf, sizeof (ifq->ifr_name));
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3597 namebuf[sizeof (ifq->ifr_name)] = 0;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3598 res = Fcons (Fcons (build_string (namebuf),
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3599 conv_sockaddr_to_lisp (&ifq->ifr_addr,
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3600 sizeof (struct sockaddr))),
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3601 res);
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3602 }
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3603
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3604 return res;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3605 }
52525
fd2be6cea0e7 (Fnetwork_interface_list, Fnetwork_interface_info):
Kim F. Storm <storm@cua.dk>
parents: 52516
diff changeset
3606 #endif /* SIOCGIFCONF */
52503
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3607
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3608 #if defined(SIOCGIFADDR) || defined(SIOCGIFHWADDR) || defined(SIOCGIFFLAGS)
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3609
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3610 struct ifflag_def {
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3611 int flag_bit;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3612 char *flag_sym;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3613 };
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3614
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3615 static struct ifflag_def ifflag_table[] = {
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3616 #ifdef IFF_UP
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3617 { IFF_UP, "up" },
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3618 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3619 #ifdef IFF_BROADCAST
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3620 { IFF_BROADCAST, "broadcast" },
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3621 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3622 #ifdef IFF_DEBUG
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3623 { IFF_DEBUG, "debug" },
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3624 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3625 #ifdef IFF_LOOPBACK
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3626 { IFF_LOOPBACK, "loopback" },
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3627 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3628 #ifdef IFF_POINTOPOINT
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3629 { IFF_POINTOPOINT, "pointopoint" },
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3630 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3631 #ifdef IFF_RUNNING
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3632 { IFF_RUNNING, "running" },
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3633 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3634 #ifdef IFF_NOARP
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3635 { IFF_NOARP, "noarp" },
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3636 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3637 #ifdef IFF_PROMISC
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3638 { IFF_PROMISC, "promisc" },
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3639 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3640 #ifdef IFF_NOTRAILERS
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3641 { IFF_NOTRAILERS, "notrailers" },
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3642 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3643 #ifdef IFF_ALLMULTI
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3644 { IFF_ALLMULTI, "allmulti" },
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3645 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3646 #ifdef IFF_MASTER
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3647 { IFF_MASTER, "master" },
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3648 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3649 #ifdef IFF_SLAVE
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3650 { IFF_SLAVE, "slave" },
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3651 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3652 #ifdef IFF_MULTICAST
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3653 { IFF_MULTICAST, "multicast" },
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3654 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3655 #ifdef IFF_PORTSEL
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3656 { IFF_PORTSEL, "portsel" },
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3657 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3658 #ifdef IFF_AUTOMEDIA
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3659 { IFF_AUTOMEDIA, "automedia" },
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3660 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3661 #ifdef IFF_DYNAMIC
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3662 { IFF_DYNAMIC, "dynamic" },
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3663 #endif
68146
e5c85a134e67 [HAVE_INTTYPES_H]: Include inttypes.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 68041
diff changeset
3664 #ifdef IFF_OACTIVE
e5c85a134e67 [HAVE_INTTYPES_H]: Include inttypes.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 68041
diff changeset
3665 { IFF_OACTIVE, "oactive" }, /* OpenBSD: transmission in progress */
68008
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
3666 #endif
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
3667 #ifdef IFF_SIMPLEX
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
3668 { IFF_SIMPLEX, "simplex" }, /* OpenBSD: can't hear own transmissions */
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
3669 #endif
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
3670 #ifdef IFF_LINK0
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
3671 { IFF_LINK0, "link0" }, /* OpenBSD: per link layer defined bit */
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
3672 #endif
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
3673 #ifdef IFF_LINK1
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
3674 { IFF_LINK1, "link1" }, /* OpenBSD: per link layer defined bit */
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
3675 #endif
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
3676 #ifdef IFF_LINK2
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
3677 { IFF_LINK2, "link2" }, /* OpenBSD: per link layer defined bit */
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
3678 #endif
52503
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3679 { 0, 0 }
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3680 };
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3681
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
3682 DEFUN ("network-interface-info", Fnetwork_interface_info, Snetwork_interface_info, 1, 1, 0,
52503
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3683 doc: /* Return information about network interface named IFNAME.
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3684 The return value is a list (ADDR BCAST NETMASK HWADDR FLAGS),
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3685 where ADDR is the layer 3 address, BCAST is the layer 3 broadcast address,
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3686 NETMASK is the layer 3 network mask, HWADDR is the layer 2 addres, and
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3687 FLAGS is the current flags of the interface. */)
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3688 (ifname)
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3689 Lisp_Object ifname;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3690 {
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3691 struct ifreq rq;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3692 Lisp_Object res = Qnil;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3693 Lisp_Object elt;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3694 int s;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3695 int any = 0;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3696
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3697 CHECK_STRING (ifname);
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3698
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3699 bzero (rq.ifr_name, sizeof rq.ifr_name);
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3700 strncpy (rq.ifr_name, SDATA (ifname), sizeof (rq.ifr_name));
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3701
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3702 s = socket (AF_INET, SOCK_STREAM, 0);
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3703 if (s < 0)
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3704 return Qnil;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3705
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3706 elt = Qnil;
52591
03137a8dc8cb (Fnetwork_interface_info): Use
Dave Love <fx@gnu.org>
parents: 52527
diff changeset
3707 #if defined(SIOCGIFFLAGS) && defined(HAVE_STRUCT_IFREQ_IFR_FLAGS)
52503
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3708 if (ioctl (s, SIOCGIFFLAGS, &rq) == 0)
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3709 {
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3710 int flags = rq.ifr_flags;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3711 struct ifflag_def *fp;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3712 int fnum;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3713
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3714 any++;
67920
8f3c10fea90b (Fnetwork_interface_info): Correctly terminate the
Andreas Schwab <schwab@suse.de>
parents: 66752
diff changeset
3715 for (fp = ifflag_table; flags != 0 && fp->flag_sym; fp++)
52503
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3716 {
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3717 if (flags & fp->flag_bit)
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3718 {
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3719 elt = Fcons (intern (fp->flag_sym), elt);
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3720 flags -= fp->flag_bit;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3721 }
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3722 }
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3723 for (fnum = 0; flags && fnum < 32; fnum++)
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3724 {
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3725 if (flags & (1 << fnum))
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3726 {
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3727 elt = Fcons (make_number (fnum), elt);
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3728 }
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3729 }
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3730 }
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3731 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3732 res = Fcons (elt, res);
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3733
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3734 elt = Qnil;
52591
03137a8dc8cb (Fnetwork_interface_info): Use
Dave Love <fx@gnu.org>
parents: 52527
diff changeset
3735 #if defined(SIOCGIFHWADDR) && defined(HAVE_STRUCT_IFREQ_IFR_HWADDR)
52503
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3736 if (ioctl (s, SIOCGIFHWADDR, &rq) == 0)
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3737 {
52525
fd2be6cea0e7 (Fnetwork_interface_list, Fnetwork_interface_info):
Kim F. Storm <storm@cua.dk>
parents: 52516
diff changeset
3738 Lisp_Object hwaddr = Fmake_vector (make_number (6), Qnil);
52503
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3739 register struct Lisp_Vector *p = XVECTOR (hwaddr);
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3740 int n;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3741
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3742 any++;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3743 for (n = 0; n < 6; n++)
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3744 p->contents[n] = make_number (((unsigned char *)&rq.ifr_hwaddr.sa_data[0])[n]);
52527
3ea59ac8dfa5 (Fnetwork_interface_info): Fix type error.
Dave Love <fx@gnu.org>
parents: 52525
diff changeset
3745 elt = Fcons (make_number (rq.ifr_hwaddr.sa_family), hwaddr);
52503
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3746 }
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3747 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3748 res = Fcons (elt, res);
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3749
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3750 elt = Qnil;
68146
e5c85a134e67 [HAVE_INTTYPES_H]: Include inttypes.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 68041
diff changeset
3751 #if defined(SIOCGIFNETMASK) && (defined(HAVE_STRUCT_IFREQ_IFR_NETMASK) || defined(HAVE_STRUCT_IFREQ_IFR_ADDR))
52503
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3752 if (ioctl (s, SIOCGIFNETMASK, &rq) == 0)
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3753 {
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3754 any++;
68146
e5c85a134e67 [HAVE_INTTYPES_H]: Include inttypes.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 68041
diff changeset
3755 #ifdef HAVE_STRUCT_IFREQ_IFR_NETMASK
52503
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3756 elt = conv_sockaddr_to_lisp (&rq.ifr_netmask, sizeof (rq.ifr_netmask));
68146
e5c85a134e67 [HAVE_INTTYPES_H]: Include inttypes.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 68041
diff changeset
3757 #else
e5c85a134e67 [HAVE_INTTYPES_H]: Include inttypes.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 68041
diff changeset
3758 elt = conv_sockaddr_to_lisp (&rq.ifr_addr, sizeof (rq.ifr_addr));
e5c85a134e67 [HAVE_INTTYPES_H]: Include inttypes.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 68041
diff changeset
3759 #endif
52503
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3760 }
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3761 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3762 res = Fcons (elt, res);
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3763
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3764 elt = Qnil;
52591
03137a8dc8cb (Fnetwork_interface_info): Use
Dave Love <fx@gnu.org>
parents: 52527
diff changeset
3765 #if defined(SIOCGIFBRDADDR) && defined(HAVE_STRUCT_IFREQ_IFR_BROADADDR)
52503
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3766 if (ioctl (s, SIOCGIFBRDADDR, &rq) == 0)
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3767 {
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3768 any++;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3769 elt = conv_sockaddr_to_lisp (&rq.ifr_broadaddr, sizeof (rq.ifr_broadaddr));
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3770 }
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3771 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3772 res = Fcons (elt, res);
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3773
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3774 elt = Qnil;
52591
03137a8dc8cb (Fnetwork_interface_info): Use
Dave Love <fx@gnu.org>
parents: 52527
diff changeset
3775 #if defined(SIOCGIFADDR) && defined(HAVE_STRUCT_IFREQ_IFR_ADDR)
52503
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3776 if (ioctl (s, SIOCGIFADDR, &rq) == 0)
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3777 {
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3778 any++;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3779 elt = conv_sockaddr_to_lisp (&rq.ifr_addr, sizeof (rq.ifr_addr));
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3780 }
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3781 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3782 res = Fcons (elt, res);
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3783
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3784 close (s);
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3785
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3786 return any ? res : Qnil;
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3787 }
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3788 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3789 #endif /* HAVE_SOCKETS */
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3790
56092
5839db7619ca Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 55962
diff changeset
3791 /* Turn off input and output for process PROC. */
5839db7619ca Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 55962
diff changeset
3792
20382
dbad9367d232 (create_process, deactivate_process, close_process_descs):
Andreas Schwab <schwab@suse.de>
parents: 20225
diff changeset
3793 void
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3794 deactivate_process (proc)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3795 Lisp_Object proc;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3796 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3797 register int inchannel, outchannel;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3798 register struct Lisp_Process *p = XPROCESS (proc);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3799
5134
0a4e46e15304 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 4998
diff changeset
3800 inchannel = XINT (p->infd);
0a4e46e15304 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 4998
diff changeset
3801 outchannel = XINT (p->outfd);
0a4e46e15304 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 4998
diff changeset
3802
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
3803 #ifdef ADAPTIVE_READ_BUFFERING
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
3804 if (XINT (p->read_output_delay) > 0)
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
3805 {
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
3806 if (--process_output_delay_count < 0)
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
3807 process_output_delay_count = 0;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
3808 XSETINT (p->read_output_delay, 0);
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
3809 p->read_output_skip = Qnil;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
3810 }
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
3811 #endif
55444
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
3812
5134
0a4e46e15304 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 4998
diff changeset
3813 if (inchannel >= 0)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3814 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3815 /* Beware SIGCHLD hereabouts. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3816 flush_pending_output (inchannel);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3817 #ifdef VMS
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3818 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3819 VMS_PROC_STUFF *get_vms_process_pointer (), *vs;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3820 sys$dassgn (outchannel);
2357
9faa3a02ea97 * process.c [VMS] (DCL_PROMPT): Remove hack.
Jim Blandy <jimb@redhat.com>
parents: 2290
diff changeset
3821 vs = get_vms_process_pointer (p->pid);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3822 if (vs)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3823 give_back_vms_process_stuff (vs);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3824 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3825 #else
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
3826 emacs_close (inchannel);
5134
0a4e46e15304 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 4998
diff changeset
3827 if (outchannel >= 0 && outchannel != inchannel)
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
3828 emacs_close (outchannel);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3829 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3830
9277
21f6120be5ba (make_process, create_process, Fopen_network_stream, deactivate_process,
Karl Heuer <kwzh@gnu.org>
parents: 9115
diff changeset
3831 XSETINT (p->infd, -1);
21f6120be5ba (make_process, create_process, Fopen_network_stream, deactivate_process,
Karl Heuer <kwzh@gnu.org>
parents: 9115
diff changeset
3832 XSETINT (p->outfd, -1);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3833 #ifdef DATAGRAM_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3834 if (DATAGRAM_CHAN_P (inchannel))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3835 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3836 xfree (datagram_address[inchannel].sa);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3837 datagram_address[inchannel].sa = 0;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3838 datagram_address[inchannel].len = 0;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3839 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3840 #endif
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3841 chan_process[inchannel] = Qnil;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3842 FD_CLR (inchannel, &input_wait_mask);
9686
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
3843 FD_CLR (inchannel, &non_keyboard_wait_mask);
57840
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
3844 #ifdef NON_BLOCKING_CONNECT
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3845 if (FD_ISSET (inchannel, &connect_wait_mask))
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3846 {
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3847 FD_CLR (inchannel, &connect_wait_mask);
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3848 if (--num_pending_connects < 0)
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3849 abort ();
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
3850 }
57840
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
3851 #endif
7044
7032d07f5ad9 (max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7013
diff changeset
3852 if (inchannel == max_process_desc)
7032d07f5ad9 (max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7013
diff changeset
3853 {
7032d07f5ad9 (max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7013
diff changeset
3854 int i;
7032d07f5ad9 (max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7013
diff changeset
3855 /* 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
3856 so recompute the highest-numbered one now. */
7032d07f5ad9 (max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7013
diff changeset
3857 max_process_desc = 0;
7032d07f5ad9 (max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7013
diff changeset
3858 for (i = 0; i < MAXDESC; i++)
7032d07f5ad9 (max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7013
diff changeset
3859 if (!NILP (chan_process[i]))
7032d07f5ad9 (max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7013
diff changeset
3860 max_process_desc = i;
7032d07f5ad9 (max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7013
diff changeset
3861 }
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3862 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3863 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3864
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3865 /* Close all descriptors currently in use for communication
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3866 with subprocess. This is used in a newly-forked subprocess
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3867 to get rid of irrelevant descriptors. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3868
20382
dbad9367d232 (create_process, deactivate_process, close_process_descs):
Andreas Schwab <schwab@suse.de>
parents: 20225
diff changeset
3869 void
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3870 close_process_descs ()
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3871 {
9793
28267fcc61be Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents: 9705
diff changeset
3872 #ifndef WINDOWSNT
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3873 int i;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3874 for (i = 0; i < MAXDESC; i++)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3875 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3876 Lisp_Object process;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3877 process = chan_process[i];
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3878 if (!NILP (process))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3879 {
5134
0a4e46e15304 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 4998
diff changeset
3880 int in = XINT (XPROCESS (process)->infd);
0a4e46e15304 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 4998
diff changeset
3881 int out = XINT (XPROCESS (process)->outfd);
0a4e46e15304 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 4998
diff changeset
3882 if (in >= 0)
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
3883 emacs_close (in);
5134
0a4e46e15304 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 4998
diff changeset
3884 if (out >= 0 && in != out)
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
3885 emacs_close (out);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3886 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3887 }
9793
28267fcc61be Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents: 9705
diff changeset
3888 #endif
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3889 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3890
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3891 DEFUN ("accept-process-output", Faccept_process_output, Saccept_process_output,
56701
e327231e4361 (Faccept_process_output): Add arg JUST-THIS-ONE;
Kim F. Storm <storm@cua.dk>
parents: 56700
diff changeset
3892 0, 4, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
3893 doc: /* Allow any pending output from subprocesses to be read by Emacs.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
3894 It is read into the process' buffers or given to their filter functions.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
3895 Non-nil arg PROCESS means do not return until some output has been received
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
3896 from PROCESS.
69634
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3897
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3898 Non-nil second arg SECONDS and third arg MILLISEC are number of
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3899 seconds and milliseconds to wait; return after that much time whether
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3900 or not there is input. If SECONDS is a floating point number,
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3901 it specifies a fractional number of seconds to wait.
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3902
56701
e327231e4361 (Faccept_process_output): Add arg JUST-THIS-ONE;
Kim F. Storm <storm@cua.dk>
parents: 56700
diff changeset
3903 If optional fourth arg JUST-THIS-ONE is non-nil, only accept output
e327231e4361 (Faccept_process_output): Add arg JUST-THIS-ONE;
Kim F. Storm <storm@cua.dk>
parents: 56700
diff changeset
3904 from PROCESS, suspending reading output from other processes.
e327231e4361 (Faccept_process_output): Add arg JUST-THIS-ONE;
Kim F. Storm <storm@cua.dk>
parents: 56700
diff changeset
3905 If JUST-THIS-ONE is an integer, don't run any timers either.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
3906 Return non-nil iff we received any output before the timeout expired. */)
69634
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3907 (process, seconds, millisec, just_this_one)
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3908 register Lisp_Object process, seconds, millisec, just_this_one;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3909 {
69634
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3910 int secs, usecs = 0;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3911
24598
078d53377010 (Faccept_process_output): Check validity of PROCESS.
Richard M. Stallman <rms@gnu.org>
parents: 24352
diff changeset
3912 if (! NILP (process))
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
3913 CHECK_PROCESS (process);
56701
e327231e4361 (Faccept_process_output): Add arg JUST-THIS-ONE;
Kim F. Storm <storm@cua.dk>
parents: 56700
diff changeset
3914 else
e327231e4361 (Faccept_process_output): Add arg JUST-THIS-ONE;
Kim F. Storm <storm@cua.dk>
parents: 56700
diff changeset
3915 just_this_one = Qnil;
24598
078d53377010 (Faccept_process_output): Check validity of PROCESS.
Richard M. Stallman <rms@gnu.org>
parents: 24352
diff changeset
3916
69634
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3917 if (!NILP (seconds))
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3918 {
69634
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3919 if (INTEGERP (seconds))
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3920 secs = XINT (seconds);
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3921 else if (FLOATP (seconds))
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3922 {
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3923 double timeout = XFLOAT_DATA (seconds);
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3924 secs = (int) timeout;
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3925 usecs = (int) ((timeout - (double) secs) * 1000000);
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3926 }
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3927 else
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3928 wrong_type_argument (Qnumberp, seconds);
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3929
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3930 if (INTEGERP (millisec))
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3931 {
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3932 int carry;
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3933 usecs += XINT (millisec) * 1000;
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3934 carry = usecs / 1000000;
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3935 secs += carry;
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3936 if ((usecs -= carry * 1000000) < 0)
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3937 {
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3938 secs--;
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3939 usecs += 1000000;
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3940 }
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3941 }
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3942
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3943 if (secs < 0 || (secs == 0 && usecs == 0))
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3944 secs = -1, usecs = 0;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3945 }
1180
9bf82484415d (Faccept_process_output): Initialize useconds.
Richard M. Stallman <rms@gnu.org>
parents: 1047
diff changeset
3946 else
69634
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3947 secs = NILP (process) ? -1 : 0;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3948
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3949 return
69634
5633a1931272 (Faccept_process_output): Fix to comply with lisp reference.
Kim F. Storm <storm@cua.dk>
parents: 69376
diff changeset
3950 (wait_reading_process_output (secs, usecs, 0, 0,
56728
1686b397ef16 (wait_reading_process_output): Rename from
Kim F. Storm <storm@cua.dk>
parents: 56716
diff changeset
3951 Qnil,
1686b397ef16 (wait_reading_process_output): Rename from
Kim F. Storm <storm@cua.dk>
parents: 56716
diff changeset
3952 !NILP (process) ? XPROCESS (process) : NULL,
1686b397ef16 (wait_reading_process_output): Rename from
Kim F. Storm <storm@cua.dk>
parents: 56716
diff changeset
3953 NILP (just_this_one) ? 0 :
1686b397ef16 (wait_reading_process_output): Rename from
Kim F. Storm <storm@cua.dk>
parents: 56716
diff changeset
3954 !INTEGERP (just_this_one) ? 1 : -1)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3955 ? Qt : Qnil);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3956 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3957
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3958 /* Accept a connection for server process SERVER on CHANNEL. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3959
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3960 static int connect_counter = 0;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3961
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3962 static void
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3963 server_accept_connection (server, channel)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3964 Lisp_Object server;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3965 int channel;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3966 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3967 Lisp_Object proc, caller, name, buffer;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3968 Lisp_Object contact, host, service;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3969 struct Lisp_Process *ps= XPROCESS (server);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3970 struct Lisp_Process *p;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3971 int s;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3972 union u_sockaddr {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3973 struct sockaddr sa;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3974 struct sockaddr_in in;
68008
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
3975 #ifdef AF_INET6
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
3976 struct sockaddr_in6 in6;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
3977 #endif
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3978 #ifdef HAVE_LOCAL_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3979 struct sockaddr_un un;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3980 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3981 } saddr;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3982 int len = sizeof saddr;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3983
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3984 s = accept (channel, &saddr.sa, &len);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3985
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3986 if (s < 0)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3987 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3988 int code = errno;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3989
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3990 if (code == EAGAIN)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3991 return;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3992 #ifdef EWOULDBLOCK
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3993 if (code == EWOULDBLOCK)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3994 return;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3995 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3996
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3997 if (!NILP (ps->log))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3998 call3 (ps->log, server, Qnil,
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
3999 concat3 (build_string ("accept failed with code"),
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4000 Fnumber_to_string (make_number (code)),
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4001 build_string ("\n")));
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4002 return;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4003 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4004
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4005 connect_counter++;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4006
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4007 /* Setup a new process to handle the connection. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4008
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4009 /* Generate a unique identification of the caller, and build contact
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4010 information for this process. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4011 host = Qt;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4012 service = Qnil;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4013 switch (saddr.sa.sa_family)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4014 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4015 case AF_INET:
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4016 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4017 Lisp_Object args[5];
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4018 unsigned char *ip = (unsigned char *)&saddr.in.sin_addr.s_addr;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4019 args[0] = build_string ("%d.%d.%d.%d");
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4020 args[1] = make_number (*ip++);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4021 args[2] = make_number (*ip++);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4022 args[3] = make_number (*ip++);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4023 args[4] = make_number (*ip++);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4024 host = Fformat (5, args);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4025 service = make_number (ntohs (saddr.in.sin_port));
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4026
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4027 args[0] = build_string (" <%s:%d>");
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4028 args[1] = host;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4029 args[2] = service;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4030 caller = Fformat (3, args);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4031 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4032 break;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4033
68008
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
4034 #ifdef AF_INET6
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
4035 case AF_INET6:
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
4036 {
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
4037 Lisp_Object args[9];
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
4038 uint16_t *ip6 = (uint16_t *)&saddr.in6.sin6_addr;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
4039 int i;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
4040 args[0] = build_string ("%x:%x:%x:%x:%x:%x:%x:%x");
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
4041 for (i = 0; i < 8; i++)
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
4042 args[i+1] = make_number (ntohs(ip6[i]));
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
4043 host = Fformat (9, args);
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
4044 service = make_number (ntohs (saddr.in.sin_port));
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
4045
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
4046 args[0] = build_string (" <[%s]:%d>");
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
4047 args[1] = host;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
4048 args[2] = service;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
4049 caller = Fformat (3, args);
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
4050 }
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
4051 break;
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
4052 #endif
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
4053
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4054 #ifdef HAVE_LOCAL_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4055 case AF_LOCAL:
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4056 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4057 default:
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4058 caller = Fnumber_to_string (make_number (connect_counter));
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4059 caller = concat3 (build_string (" <*"), caller, build_string ("*>"));
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4060 break;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4061 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4062
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4063 /* Create a new buffer name for this process if it doesn't have a
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4064 filter. The new buffer name is based on the buffer name or
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4065 process name of the server process concatenated with the caller
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4066 identification. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4067
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4068 if (!NILP (ps->filter) && !EQ (ps->filter, Qt))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4069 buffer = Qnil;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4070 else
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4071 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4072 buffer = ps->buffer;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4073 if (!NILP (buffer))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4074 buffer = Fbuffer_name (buffer);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4075 else
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4076 buffer = ps->name;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4077 if (!NILP (buffer))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4078 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4079 buffer = concat2 (buffer, caller);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4080 buffer = Fget_buffer_create (buffer);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4081 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4082 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4083
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4084 /* Generate a unique name for the new server process. Combine the
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4085 server process name with the caller identification. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4086
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4087 name = concat2 (ps->name, caller);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4088 proc = make_process (name);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4089
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4090 chan_process[s] = proc;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4091
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4092 #ifdef O_NONBLOCK
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4093 fcntl (s, F_SETFL, O_NONBLOCK);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4094 #else
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4095 #ifdef O_NDELAY
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4096 fcntl (s, F_SETFL, O_NDELAY);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4097 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4098 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4099
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4100 p = XPROCESS (proc);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4101
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4102 /* Build new contact information for this setup. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4103 contact = Fcopy_sequence (ps->childp);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4104 contact = Fplist_put (contact, QCserver, Qnil);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4105 contact = Fplist_put (contact, QChost, host);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4106 if (!NILP (service))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4107 contact = Fplist_put (contact, QCservice, service);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
4108 contact = Fplist_put (contact, QCremote,
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4109 conv_sockaddr_to_lisp (&saddr.sa, len));
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4110 #ifdef HAVE_GETSOCKNAME
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4111 len = sizeof saddr;
49111
32c767302a23 (server_accept_connection): Fixed recording of new
Kim F. Storm <storm@cua.dk>
parents: 48424
diff changeset
4112 if (getsockname (s, &saddr.sa, &len) == 0)
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
4113 contact = Fplist_put (contact, QClocal,
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4114 conv_sockaddr_to_lisp (&saddr.sa, len));
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4115 #endif
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4116
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4117 p->childp = contact;
49223
26622fa0d099 Reworked 2003-01-12 change -- call a plist a plist!
Kim F. Storm <storm@cua.dk>
parents: 49164
diff changeset
4118 p->plist = Fcopy_sequence (ps->plist);
49164
8bee0ccd5fd6 (QCvars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 49142
diff changeset
4119
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4120 p->buffer = buffer;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4121 p->sentinel = ps->sentinel;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4122 p->filter = ps->filter;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4123 p->command = Qnil;
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
4124 p->pid = 0;
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4125 XSETINT (p->infd, s);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4126 XSETINT (p->outfd, s);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4127 p->status = Qrun;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4128
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4129 /* Client processes for accepted connections are not stopped initially. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4130 if (!EQ (p->filter, Qt))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4131 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4132 FD_SET (s, &input_wait_mask);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4133 FD_SET (s, &non_keyboard_wait_mask);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4134 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4135
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4136 if (s > max_process_desc)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4137 max_process_desc = s;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4138
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
4139 /* Setup coding system for new process based on server process.
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4140 This seems to be the proper thing to do, as the coding system
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4141 of the new process should reflect the settings at the time the
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4142 server socket was opened; not the current settings. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4143
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4144 p->decode_coding_system = ps->decode_coding_system;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4145 p->encode_coding_system = ps->encode_coding_system;
49667
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
4146 setup_process_coding_systems (proc);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4147
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4148 p->decoding_buf = make_uninit_string (0);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4149 p->decoding_carryover = make_number (0);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4150 p->encoding_buf = make_uninit_string (0);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4151 p->encoding_carryover = make_number (0);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4152
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4153 p->inherit_coding_system_flag
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4154 = (NILP (buffer) ? Qnil : ps->inherit_coding_system_flag);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4155
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4156 if (!NILP (ps->log))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4157 call3 (ps->log, server, proc,
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4158 concat3 (build_string ("accept from "),
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4159 (STRINGP (host) ? host : build_string ("-")),
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4160 build_string ("\n")));
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4161
44314
f76a1425eb34 (DATAGRAM_CONN_P, list_processes_1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 44194
diff changeset
4162 if (!NILP (p->sentinel))
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
4163 exec_sentinel (proc,
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4164 concat3 (build_string ("open from "),
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4165 (STRINGP (host) ? host : build_string ("-")),
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4166 build_string ("\n")));
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4167 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4168
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4169 /* This variable is different from waiting_for_input in keyboard.c.
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4170 It is used to communicate to a lisp process-filter/sentinel (via the
55444
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
4171 function Fwaiting_for_user_input_p below) whether Emacs was waiting
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4172 for user-input when that process-filter was called.
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4173 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
4174 lisp code is being evalled.
dd3dfde8f973 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 8390
diff changeset
4175 This is also used in record_asynch_buffer_change.
dd3dfde8f973 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 8390
diff changeset
4176 For that purpose, this must be 0
56728
1686b397ef16 (wait_reading_process_output): Rename from
Kim F. Storm <storm@cua.dk>
parents: 56716
diff changeset
4177 when not inside wait_reading_process_output. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4178 static int waiting_for_user_input_p;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4179
72277
a6b9ee835f88 * process.c: Reapply 2006-08-01 change.
Chong Yidong <cyd@stupidchicken.com>
parents: 72255
diff changeset
4180 static Lisp_Object
a6b9ee835f88 * process.c: Reapply 2006-08-01 change.
Chong Yidong <cyd@stupidchicken.com>
parents: 72255
diff changeset
4181 wait_reading_process_output_unwind (data)
a6b9ee835f88 * process.c: Reapply 2006-08-01 change.
Chong Yidong <cyd@stupidchicken.com>
parents: 72255
diff changeset
4182 Lisp_Object data;
a6b9ee835f88 * process.c: Reapply 2006-08-01 change.
Chong Yidong <cyd@stupidchicken.com>
parents: 72255
diff changeset
4183 {
a6b9ee835f88 * process.c: Reapply 2006-08-01 change.
Chong Yidong <cyd@stupidchicken.com>
parents: 72255
diff changeset
4184 waiting_for_user_input_p = XINT (data);
a6b9ee835f88 * process.c: Reapply 2006-08-01 change.
Chong Yidong <cyd@stupidchicken.com>
parents: 72255
diff changeset
4185 return Qnil;
a6b9ee835f88 * process.c: Reapply 2006-08-01 change.
Chong Yidong <cyd@stupidchicken.com>
parents: 72255
diff changeset
4186 }
a6b9ee835f88 * process.c: Reapply 2006-08-01 change.
Chong Yidong <cyd@stupidchicken.com>
parents: 72255
diff changeset
4187
14890
71c2cf461805 (wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents: 14863
diff changeset
4188 /* This is here so breakpoints can be put on it. */
21514
fa9ff387d260 Fix -Wimplicit warnings.
Andreas Schwab <schwab@suse.de>
parents: 21414
diff changeset
4189 static void
56728
1686b397ef16 (wait_reading_process_output): Rename from
Kim F. Storm <storm@cua.dk>
parents: 56716
diff changeset
4190 wait_reading_process_output_1 ()
14890
71c2cf461805 (wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents: 14863
diff changeset
4191 {
71c2cf461805 (wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents: 14863
diff changeset
4192 }
71c2cf461805 (wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents: 14863
diff changeset
4193
71109
8e0e27268c74 (select_wrapper): Add wrapper around select to work around
Kim F. Storm <storm@cua.dk>
parents: 70517
diff changeset
4194 /* Use a wrapper around select to work around a bug in gdb 5.3.
8e0e27268c74 (select_wrapper): Add wrapper around select to work around
Kim F. Storm <storm@cua.dk>
parents: 70517
diff changeset
4195 Normally, the wrapper is optimzed away by inlining.
8e0e27268c74 (select_wrapper): Add wrapper around select to work around
Kim F. Storm <storm@cua.dk>
parents: 70517
diff changeset
4196
8e0e27268c74 (select_wrapper): Add wrapper around select to work around
Kim F. Storm <storm@cua.dk>
parents: 70517
diff changeset
4197 If emacs is stopped inside select, the gdb backtrace doesn't
8e0e27268c74 (select_wrapper): Add wrapper around select to work around
Kim F. Storm <storm@cua.dk>
parents: 70517
diff changeset
4198 show the function which called select, so it is practically
8e0e27268c74 (select_wrapper): Add wrapper around select to work around
Kim F. Storm <storm@cua.dk>
parents: 70517
diff changeset
4199 impossible to step through wait_reading_process_output. */
8e0e27268c74 (select_wrapper): Add wrapper around select to work around
Kim F. Storm <storm@cua.dk>
parents: 70517
diff changeset
4200
8e0e27268c74 (select_wrapper): Add wrapper around select to work around
Kim F. Storm <storm@cua.dk>
parents: 70517
diff changeset
4201 #ifndef select
8e0e27268c74 (select_wrapper): Add wrapper around select to work around
Kim F. Storm <storm@cua.dk>
parents: 70517
diff changeset
4202 static INLINE int
8e0e27268c74 (select_wrapper): Add wrapper around select to work around
Kim F. Storm <storm@cua.dk>
parents: 70517
diff changeset
4203 select_wrapper (n, rfd, wfd, xfd, tmo)
8e0e27268c74 (select_wrapper): Add wrapper around select to work around
Kim F. Storm <storm@cua.dk>
parents: 70517
diff changeset
4204 int n;
8e0e27268c74 (select_wrapper): Add wrapper around select to work around
Kim F. Storm <storm@cua.dk>
parents: 70517
diff changeset
4205 SELECT_TYPE *rfd, *wfd, *xfd;
8e0e27268c74 (select_wrapper): Add wrapper around select to work around
Kim F. Storm <storm@cua.dk>
parents: 70517
diff changeset
4206 EMACS_TIME *tmo;
8e0e27268c74 (select_wrapper): Add wrapper around select to work around
Kim F. Storm <storm@cua.dk>
parents: 70517
diff changeset
4207 {
8e0e27268c74 (select_wrapper): Add wrapper around select to work around
Kim F. Storm <storm@cua.dk>
parents: 70517
diff changeset
4208 return select (n, rfd, wfd, xfd, tmo);
8e0e27268c74 (select_wrapper): Add wrapper around select to work around
Kim F. Storm <storm@cua.dk>
parents: 70517
diff changeset
4209 }
8e0e27268c74 (select_wrapper): Add wrapper around select to work around
Kim F. Storm <storm@cua.dk>
parents: 70517
diff changeset
4210 #define select select_wrapper
8e0e27268c74 (select_wrapper): Add wrapper around select to work around
Kim F. Storm <storm@cua.dk>
parents: 70517
diff changeset
4211 #endif
8e0e27268c74 (select_wrapper): Add wrapper around select to work around
Kim F. Storm <storm@cua.dk>
parents: 70517
diff changeset
4212
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4213 /* Read and dispose of subprocess output while waiting for timeout to
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4214 elapse and/or keyboard input to be available.
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4215
3953
d0c23febc08c (wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents: 3915
diff changeset
4216 TIME_LIMIT is:
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4217 timeout in seconds, or
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4218 zero for no limit, or
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4219 -1 means gobble data immediately available but don't wait for any.
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4220
3953
d0c23febc08c (wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents: 3915
diff changeset
4221 MICROSECS is:
d0c23febc08c (wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents: 3915
diff changeset
4222 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
4223 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
4224 consists of MICROSECS only.
d0c23febc08c (wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents: 3915
diff changeset
4225
d0c23febc08c (wait_reading_process_input): Do include the keyboard
Richard M. Stallman <rms@gnu.org>
parents: 3915
diff changeset
4226 READ_KBD is a lisp value:
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4227 0 to ignore keyboard input, or
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4228 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
4229 -1 meaning caller will actually read the input, so don't throw to
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4230 the quit handler, or
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4231
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4232 DO_DISPLAY != 0 means redisplay should be done to show subprocess
56701
e327231e4361 (Faccept_process_output): Add arg JUST-THIS-ONE;
Kim F. Storm <storm@cua.dk>
parents: 56700
diff changeset
4233 output that arrives.
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4234
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4235 If WAIT_FOR_CELL is a cons cell, wait until its car is non-nil
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4236 (and gobble terminal input into the buffer if any arrives).
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4237
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4238 If WAIT_PROC is specified, wait until something arrives from that
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4239 process. The return value is true iff we read some input from
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4240 that process.
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4241
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4242 If JUST_WAIT_PROC is non-nil, handle only output from WAIT_PROC
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4243 (suspending output from other processes). A negative value
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4244 means don't run any timers either.
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4245
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4246 If WAIT_PROC is specified, then the function returns true iff we
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4247 received input from that process before the timeout elapsed.
3591
507f64624555 Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents: 3510
diff changeset
4248 Otherwise, return true iff we received input from any process. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4249
21514
fa9ff387d260 Fix -Wimplicit warnings.
Andreas Schwab <schwab@suse.de>
parents: 21414
diff changeset
4250 int
56728
1686b397ef16 (wait_reading_process_output): Rename from
Kim F. Storm <storm@cua.dk>
parents: 56716
diff changeset
4251 wait_reading_process_output (time_limit, microsecs, read_kbd, do_display,
1686b397ef16 (wait_reading_process_output): Rename from
Kim F. Storm <storm@cua.dk>
parents: 56716
diff changeset
4252 wait_for_cell, wait_proc, just_wait_proc)
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4253 int time_limit, microsecs, read_kbd, do_display;
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4254 Lisp_Object wait_for_cell;
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4255 struct Lisp_Process *wait_proc;
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4256 int just_wait_proc;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4257 {
25770
3a44b5298cd5 (list_processes_1): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents: 25760
diff changeset
4258 register int channel, nfds;
55579
234873044c2a (wait_reading_process_input): Make reentrant.
Kim F. Storm <storm@cua.dk>
parents: 55534
diff changeset
4259 SELECT_TYPE Available;
57840
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4260 #ifdef NON_BLOCKING_CONNECT
55579
234873044c2a (wait_reading_process_input): Make reentrant.
Kim F. Storm <storm@cua.dk>
parents: 55534
diff changeset
4261 SELECT_TYPE Connecting;
57840
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4262 int check_connect;
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4263 #endif
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4264 int check_delay, no_avail;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4265 int xerrno;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4266 Lisp_Object proc;
25770
3a44b5298cd5 (list_processes_1): Remove unused variables.
Gerd Moellmann <gerd@gnu.org>
parents: 25760
diff changeset
4267 EMACS_TIME timeout, end_time;
5134
0a4e46e15304 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 4998
diff changeset
4268 int wait_channel = -1;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4269 int got_some_input = 0;
72277
a6b9ee835f88 * process.c: Reapply 2006-08-01 change.
Chong Yidong <cyd@stupidchicken.com>
parents: 72255
diff changeset
4270 int count = SPECPDL_INDEX ();
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4271
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4272 FD_ZERO (&Available);
57840
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4273 #ifdef NON_BLOCKING_CONNECT
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4274 FD_ZERO (&Connecting);
57840
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4275 #endif
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4276
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4277 /* If wait_proc is a process to watch, set wait_channel accordingly. */
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4278 if (wait_proc != NULL)
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4279 wait_channel = XINT (wait_proc->infd);
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4280
72277
a6b9ee835f88 * process.c: Reapply 2006-08-01 change.
Chong Yidong <cyd@stupidchicken.com>
parents: 72255
diff changeset
4281 record_unwind_protect (wait_reading_process_output_unwind,
a6b9ee835f88 * process.c: Reapply 2006-08-01 change.
Chong Yidong <cyd@stupidchicken.com>
parents: 72255
diff changeset
4282 make_number (waiting_for_user_input_p));
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4283 waiting_for_user_input_p = read_kbd;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4284
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4285 /* Since we may need to wait several times,
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4286 compute the absolute time to return at. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4287 if (time_limit || microsecs)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4288 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4289 EMACS_GET_TIME (end_time);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4290 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4291 EMACS_ADD_TIME (end_time, end_time, timeout);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4292 }
49894
675b86cf29fc (wait_reading_process_input): Use POLL_INTERRUPTED_SYS_CALL, not
Juanma Barranquero <lekktu@gmail.com>
parents: 49872
diff changeset
4293 #ifdef POLL_INTERRUPTED_SYS_CALL
15661
96debed5fb36 (wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents: 15406
diff changeset
4294 /* AlainF 5-Jul-1996
96debed5fb36 (wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents: 15406
diff changeset
4295 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
4296 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
4297 in an X window
47431
8871e67384e4 (wait_reading_process_input, both versions):
Richard M. Stallman <rms@gnu.org>
parents: 47020
diff changeset
4298 Turn off periodic alarms (in case they are in use),
8871e67384e4 (wait_reading_process_input, both versions):
Richard M. Stallman <rms@gnu.org>
parents: 47020
diff changeset
4299 and then turn off any other atimers. */
8871e67384e4 (wait_reading_process_input, both versions):
Richard M. Stallman <rms@gnu.org>
parents: 47020
diff changeset
4300 stop_polling ();
27430
1aa71680fe50 (toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents: 27028
diff changeset
4301 turn_on_atimers (0);
49894
675b86cf29fc (wait_reading_process_input): Use POLL_INTERRUPTED_SYS_CALL, not
Juanma Barranquero <lekktu@gmail.com>
parents: 49872
diff changeset
4302 #endif /* POLL_INTERRUPTED_SYS_CALL */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4303
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4304 while (1)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4305 {
14458
2bb4652305c1 (wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents: 14405
diff changeset
4306 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
4307
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4308 /* If calling from keyboard input, do not quit
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4309 since we want to return C-g as an input character.
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4310 Otherwise, do pending quit if requested. */
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4311 if (read_kbd >= 0)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4312 QUIT;
53659
291acfb4bf40 (wait_reading_process_input) [SYNC_INPUT]: Check interrupt_input_pending.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 53637
diff changeset
4313 #ifdef SYNC_INPUT
291acfb4bf40 (wait_reading_process_input) [SYNC_INPUT]: Check interrupt_input_pending.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 53637
diff changeset
4314 else if (interrupt_input_pending)
291acfb4bf40 (wait_reading_process_input) [SYNC_INPUT]: Check interrupt_input_pending.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 53637
diff changeset
4315 handle_async_input ();
291acfb4bf40 (wait_reading_process_input) [SYNC_INPUT]: Check interrupt_input_pending.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 53637
diff changeset
4316 #endif
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4317
4639
76f242eb1fa8 Include syswait.h.
Richard M. Stallman <rms@gnu.org>
parents: 4320
diff changeset
4318 /* Exit now if the cell we're waiting for became non-nil. */
39973
579177964efa Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents: 39964
diff changeset
4319 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
4639
76f242eb1fa8 Include syswait.h.
Richard M. Stallman <rms@gnu.org>
parents: 4320
diff changeset
4320 break;
76f242eb1fa8 Include syswait.h.
Richard M. Stallman <rms@gnu.org>
parents: 4320
diff changeset
4321
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4322 /* Compute time from now till when time limit is up */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4323 /* Exit if already run out */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4324 if (time_limit == -1)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4325 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4326 /* -1 specified for timeout means
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4327 gobble output available now
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4328 but don't wait at all. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4329
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4330 EMACS_SET_SECS_USECS (timeout, 0, 0);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4331 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4332 else if (time_limit || microsecs)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4333 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4334 EMACS_GET_TIME (timeout);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4335 EMACS_SUB_TIME (timeout, end_time, timeout);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4336 if (EMACS_TIME_NEG_P (timeout))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4337 break;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4338 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4339 else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4340 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4341 EMACS_SET_SECS_USECS (timeout, 100000, 0);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4342 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4343
15064
fb0f2804c34a (wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents: 15025
diff changeset
4344 /* Normally we run timers here.
fb0f2804c34a (wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents: 15025
diff changeset
4345 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
4346 the wait is supposed to be short,
fb0f2804c34a (wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents: 15025
diff changeset
4347 and those callers cannot handle running arbitrary Lisp code here. */
56701
e327231e4361 (Faccept_process_output): Add arg JUST-THIS-ONE;
Kim F. Storm <storm@cua.dk>
parents: 56700
diff changeset
4348 if (NILP (wait_for_cell)
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4349 && just_wait_proc >= 0)
14404
cba05f90ee57 (wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents: 14278
diff changeset
4350 {
14458
2bb4652305c1 (wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents: 14405
diff changeset
4351 EMACS_TIME timer_delay;
34660
75866a7ebaec (wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents: 34647
diff changeset
4352
75866a7ebaec (wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents: 34647
diff changeset
4353 do
14890
71c2cf461805 (wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents: 14863
diff changeset
4354 {
34660
75866a7ebaec (wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents: 34647
diff changeset
4355 int old_timers_run = timers_run;
37465
f790d83ea743 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 37413
diff changeset
4356 struct buffer *old_buffer = current_buffer;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
4357
34660
75866a7ebaec (wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents: 34647
diff changeset
4358 timer_delay = timer_check (1);
37398
756d2f4e4058 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 36659
diff changeset
4359
756d2f4e4058 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 36659
diff changeset
4360 /* If a timer has run, this might have changed buffers
756d2f4e4058 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 36659
diff changeset
4361 an alike. Make read_key_sequence aware of that. */
756d2f4e4058 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 36659
diff changeset
4362 if (timers_run != old_timers_run
37465
f790d83ea743 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 37413
diff changeset
4363 && old_buffer != current_buffer
37398
756d2f4e4058 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 36659
diff changeset
4364 && waiting_for_user_input_p == -1)
756d2f4e4058 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 36659
diff changeset
4365 record_asynch_buffer_change ();
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
4366
34660
75866a7ebaec (wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents: 34647
diff changeset
4367 if (timers_run != old_timers_run && do_display)
75866a7ebaec (wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents: 34647
diff changeset
4368 /* We must retry, since a timer may have requeued itself
75866a7ebaec (wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents: 34647
diff changeset
4369 and that could alter the time_delay. */
35336
002c02db42d3 Call redisplay_preserve_echo_area with additional arg.
Gerd Moellmann <gerd@gnu.org>
parents: 34660
diff changeset
4370 redisplay_preserve_echo_area (9);
34660
75866a7ebaec (wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents: 34647
diff changeset
4371 else
75866a7ebaec (wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents: 34647
diff changeset
4372 break;
14890
71c2cf461805 (wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents: 14863
diff changeset
4373 }
34660
75866a7ebaec (wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents: 34647
diff changeset
4374 while (!detect_input_pending ());
14890
71c2cf461805 (wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents: 14863
diff changeset
4375
18230
2f1f942f25ca (wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents: 18183
diff changeset
4376 /* If there is unread keyboard input, also return. */
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4377 if (read_kbd != 0
18230
2f1f942f25ca (wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents: 18183
diff changeset
4378 && requeued_events_pending_p ())
2f1f942f25ca (wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents: 18183
diff changeset
4379 break;
2f1f942f25ca (wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents: 18183
diff changeset
4380
14458
2bb4652305c1 (wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents: 14405
diff changeset
4381 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
4382 {
cba05f90ee57 (wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents: 14278
diff changeset
4383 EMACS_TIME difference;
cba05f90ee57 (wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents: 14278
diff changeset
4384 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
4385 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
4386 {
2bb4652305c1 (wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents: 14405
diff changeset
4387 timeout = timer_delay;
2bb4652305c1 (wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents: 14405
diff changeset
4388 timeout_reduced_for_timers = 1;
2bb4652305c1 (wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents: 14405
diff changeset
4389 }
14404
cba05f90ee57 (wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents: 14278
diff changeset
4390 }
14935
3e0dc64a5cb8 (wait_reading_process_input): Don't call
Richard M. Stallman <rms@gnu.org>
parents: 14890
diff changeset
4391 /* 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
4392 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
4393 {
71c2cf461805 (wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents: 14863
diff changeset
4394 /* This is so a breakpoint can be put here. */
56728
1686b397ef16 (wait_reading_process_output): Rename from
Kim F. Storm <storm@cua.dk>
parents: 56716
diff changeset
4395 wait_reading_process_output_1 ();
14890
71c2cf461805 (wait_reading_process_input_1): New (empty) function.
Richard M. Stallman <rms@gnu.org>
parents: 14863
diff changeset
4396 }
14404
cba05f90ee57 (wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents: 14278
diff changeset
4397 }
cba05f90ee57 (wait_reading_process_input): Call timer_check
Richard M. Stallman <rms@gnu.org>
parents: 14278
diff changeset
4398
2894
646c5beae647 * process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents: 2893
diff changeset
4399 /* 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
4400 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
4401
646c5beae647 * process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents: 2893
diff changeset
4402 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
4403 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
4404 process activity, timeout is the only way we will know. */
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4405 if (read_kbd < 0)
2894
646c5beae647 * process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents: 2893
diff changeset
4406 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
4407
1925
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
4408 /* 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
4409 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
4410 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
4411 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
4412 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
4413 {
57840
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4414 SELECT_TYPE Atemp;
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4415 #ifdef NON_BLOCKING_CONNECT
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4416 SELECT_TYPE Ctemp;
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4417 #endif
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4418
1925
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
4419 Atemp = input_wait_mask;
56477
59a86f6ee1fb Fixes for Ctrl-G support on carbon, replacing old timeout based polling
Steven Tamm <steventamm@mac.com>
parents: 56092
diff changeset
4420 #if 0
59a86f6ee1fb Fixes for Ctrl-G support on carbon, replacing old timeout based polling
Steven Tamm <steventamm@mac.com>
parents: 56092
diff changeset
4421 /* On Mac OS X 10.0, the SELECT system call always says input is
44890
01b93e5e53a7 Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents: 44372
diff changeset
4422 present (for reading) at stdin, even when none is. This
45318
b80d723ad7cc Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents: 45118
diff changeset
4423 causes the call to SELECT below to return 1 and
44890
01b93e5e53a7 Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents: 44372
diff changeset
4424 status_notify not to be called. As a result output of
56583
64ae47cb68ff (read_process_output): Use whole read buffer.
Kim F. Storm <storm@cua.dk>
parents: 56477
diff changeset
4425 subprocesses are incorrectly discarded.
56477
59a86f6ee1fb Fixes for Ctrl-G support on carbon, replacing old timeout based polling
Steven Tamm <steventamm@mac.com>
parents: 56092
diff changeset
4426 */
44890
01b93e5e53a7 Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents: 44372
diff changeset
4427 FD_CLR (0, &Atemp);
01b93e5e53a7 Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents: 44372
diff changeset
4428 #endif
57840
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4429 IF_NON_BLOCKING_CONNECT (Ctemp = connect_wait_mask);
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4430
1925
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
4431 EMACS_SET_SECS_USECS (timeout, 0, 0);
18492
668304de6f92 (wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents: 18378
diff changeset
4432 if ((select (max (max_process_desc, max_keyboard_desc) + 1,
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
4433 &Atemp,
57840
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4434 #ifdef NON_BLOCKING_CONNECT
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4435 (num_pending_connects > 0 ? &Ctemp : (SELECT_TYPE *)0),
57840
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4436 #else
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4437 (SELECT_TYPE *)0,
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4438 #endif
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4439 (SELECT_TYPE *)0, &timeout)
11926
40d7e6f04ebe (create_process, send_process): Add volatile qualifiers.
Karl Heuer <kwzh@gnu.org>
parents: 11845
diff changeset
4440 <= 0))
2894
646c5beae647 * process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents: 2893
diff changeset
4441 {
646c5beae647 * process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents: 2893
diff changeset
4442 /* It's okay for us to do this and then continue with
5534
7a0de0f56c86 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 5404
diff changeset
4443 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
4444 clear_waiting_for_input ();
64977
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
4445 status_notify (NULL);
2894
646c5beae647 * process.c (wait_reading_process_input): Undo change of April
Jim Blandy <jimb@redhat.com>
parents: 2893
diff changeset
4446 }
1925
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
4447 }
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
4448
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4449 /* Don't wait for output from a non-running process. Just
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4450 read whatever data has already been received. */
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
4451 if (wait_proc && wait_proc->raw_status_new)
1925
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
4452 update_status (wait_proc);
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
4453 if (wait_proc
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4454 && ! EQ (wait_proc->status, Qrun)
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4455 && ! EQ (wait_proc->status, Qconnect))
2893
4df57953d5d0 * process.c (wait_reading_process_input): Don't forget to call
Jim Blandy <jimb@redhat.com>
parents: 2887
diff changeset
4456 {
18946
84b78d90cd45 (wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents: 18739
diff changeset
4457 int nread, total_nread = 0;
18267
29c37882ee1f (wait_reading_process_input): When exiting because
Richard M. Stallman <rms@gnu.org>
parents: 18230
diff changeset
4458
2893
4df57953d5d0 * process.c (wait_reading_process_input): Don't forget to call
Jim Blandy <jimb@redhat.com>
parents: 2887
diff changeset
4459 clear_waiting_for_input ();
18267
29c37882ee1f (wait_reading_process_input): When exiting because
Richard M. Stallman <rms@gnu.org>
parents: 18230
diff changeset
4460 XSETPROCESS (proc, wait_proc);
29c37882ee1f (wait_reading_process_input): When exiting because
Richard M. Stallman <rms@gnu.org>
parents: 18230
diff changeset
4461
29c37882ee1f (wait_reading_process_input): When exiting because
Richard M. Stallman <rms@gnu.org>
parents: 18230
diff changeset
4462 /* Read data from the process, until we exhaust it. */
25894
8bd3e6fbf42f (wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents: 25770
diff changeset
4463 while (XINT (wait_proc->infd) >= 0)
18946
84b78d90cd45 (wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents: 18739
diff changeset
4464 {
25894
8bd3e6fbf42f (wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents: 25770
diff changeset
4465 nread = read_process_output (proc, XINT (wait_proc->infd));
8bd3e6fbf42f (wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents: 25770
diff changeset
4466
8bd3e6fbf42f (wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents: 25770
diff changeset
4467 if (nread == 0)
8bd3e6fbf42f (wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents: 25770
diff changeset
4468 break;
8bd3e6fbf42f (wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents: 25770
diff changeset
4469
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
4470 if (0 < nread)
18946
84b78d90cd45 (wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents: 18739
diff changeset
4471 total_nread += nread;
84b78d90cd45 (wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents: 18739
diff changeset
4472 #ifdef EIO
84b78d90cd45 (wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents: 18739
diff changeset
4473 else if (nread == -1 && EIO == errno)
84b78d90cd45 (wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents: 18739
diff changeset
4474 break;
84b78d90cd45 (wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents: 18739
diff changeset
4475 #endif
25894
8bd3e6fbf42f (wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents: 25770
diff changeset
4476 #ifdef EAGAIN
8bd3e6fbf42f (wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents: 25770
diff changeset
4477 else if (nread == -1 && EAGAIN == errno)
8bd3e6fbf42f (wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents: 25770
diff changeset
4478 break;
8bd3e6fbf42f (wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents: 25770
diff changeset
4479 #endif
8bd3e6fbf42f (wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents: 25770
diff changeset
4480 #ifdef EWOULDBLOCK
8bd3e6fbf42f (wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents: 25770
diff changeset
4481 else if (nread == -1 && EWOULDBLOCK == errno)
8bd3e6fbf42f (wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents: 25770
diff changeset
4482 break;
8bd3e6fbf42f (wait_reading_process_input): When trying to suck
Gerd Moellmann <gerd@gnu.org>
parents: 25770
diff changeset
4483 #endif
18946
84b78d90cd45 (wait_reading_process_input): Initialize total_read.
Richard M. Stallman <rms@gnu.org>
parents: 18739
diff changeset
4484 }
18267
29c37882ee1f (wait_reading_process_input): When exiting because
Richard M. Stallman <rms@gnu.org>
parents: 18230
diff changeset
4485 if (total_nread > 0 && do_display)
35336
002c02db42d3 Call redisplay_preserve_echo_area with additional arg.
Gerd Moellmann <gerd@gnu.org>
parents: 34660
diff changeset
4486 redisplay_preserve_echo_area (10);
18267
29c37882ee1f (wait_reading_process_input): When exiting because
Richard M. Stallman <rms@gnu.org>
parents: 18230
diff changeset
4487
2893
4df57953d5d0 * process.c (wait_reading_process_input): Don't forget to call
Jim Blandy <jimb@redhat.com>
parents: 2887
diff changeset
4488 break;
4df57953d5d0 * process.c (wait_reading_process_input): Don't forget to call
Jim Blandy <jimb@redhat.com>
parents: 2887
diff changeset
4489 }
1925
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
4490
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4491 /* Wait till there is something to do */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4492
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4493 if (wait_proc && just_wait_proc)
56701
e327231e4361 (Faccept_process_output): Add arg JUST-THIS-ONE;
Kim F. Storm <storm@cua.dk>
parents: 56700
diff changeset
4494 {
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4495 if (XINT (wait_proc->infd) < 0) /* Terminated */
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4496 break;
56701
e327231e4361 (Faccept_process_output): Add arg JUST-THIS-ONE;
Kim F. Storm <storm@cua.dk>
parents: 56700
diff changeset
4497 FD_SET (XINT (wait_proc->infd), &Available);
57840
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4498 check_delay = 0;
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4499 IF_NON_BLOCKING_CONNECT (check_connect = 0);
56701
e327231e4361 (Faccept_process_output): Add arg JUST-THIS-ONE;
Kim F. Storm <storm@cua.dk>
parents: 56700
diff changeset
4500 }
e327231e4361 (Faccept_process_output): Add arg JUST-THIS-ONE;
Kim F. Storm <storm@cua.dk>
parents: 56700
diff changeset
4501 else if (!NILP (wait_for_cell))
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4502 {
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4503 Available = non_process_wait_mask;
57840
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4504 check_delay = 0;
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4505 IF_NON_BLOCKING_CONNECT (check_connect = 0);
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4506 }
9686
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
4507 else
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4508 {
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4509 if (! read_kbd)
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4510 Available = non_keyboard_wait_mask;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4511 else
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4512 Available = input_wait_mask;
57840
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4513 IF_NON_BLOCKING_CONNECT (check_connect = (num_pending_connects > 0));
53835
ad9da392f358 (wait_reading_process_input): Don't do adaptive read
Kim F. Storm <storm@cua.dk>
parents: 53732
diff changeset
4514 check_delay = wait_channel >= 0 ? 0 : process_output_delay_count;
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4515 }
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4516
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 692
diff changeset
4517 /* If frame size has changed or the window is newly mapped,
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4518 redisplay now, before we start to wait. There is a race
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4519 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
4520 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
4521 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
4522 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
4523 {
affed1766d34 (wait_reading_process_input): Don't call prepare_menu_bars.
Richard M. Stallman <rms@gnu.org>
parents: 11695
diff changeset
4524 clear_waiting_for_input ();
35336
002c02db42d3 Call redisplay_preserve_echo_area with additional arg.
Gerd Moellmann <gerd@gnu.org>
parents: 34660
diff changeset
4525 redisplay_preserve_echo_area (11);
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4526 if (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
4527 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
4528 }
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4529
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4530 no_avail = 0;
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4531 if (read_kbd && detect_input_pending ())
15021
af36df262fc5 (wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents: 14998
diff changeset
4532 {
af36df262fc5 (wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents: 14998
diff changeset
4533 nfds = 0;
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4534 no_avail = 1;
15021
af36df262fc5 (wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents: 14998
diff changeset
4535 }
af36df262fc5 (wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents: 14998
diff changeset
4536 else
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4537 {
57840
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4538 #ifdef NON_BLOCKING_CONNECT
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4539 if (check_connect)
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4540 Connecting = connect_wait_mask;
57840
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4541 #endif
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4542
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4543 #ifdef ADAPTIVE_READ_BUFFERING
63114
6ef9e44e50d7 Improve commentary for adaptive read buffering.
Kim F. Storm <storm@cua.dk>
parents: 62604
diff changeset
4544 /* Set the timeout for adaptive read buffering if any
6ef9e44e50d7 Improve commentary for adaptive read buffering.
Kim F. Storm <storm@cua.dk>
parents: 62604
diff changeset
4545 process has non-nil read_output_skip and non-zero
6ef9e44e50d7 Improve commentary for adaptive read buffering.
Kim F. Storm <storm@cua.dk>
parents: 62604
diff changeset
4546 read_output_delay, and we are not reading output for a
6ef9e44e50d7 Improve commentary for adaptive read buffering.
Kim F. Storm <storm@cua.dk>
parents: 62604
diff changeset
4547 specific wait_channel. It is not executed if
6ef9e44e50d7 Improve commentary for adaptive read buffering.
Kim F. Storm <storm@cua.dk>
parents: 62604
diff changeset
4548 Vprocess_adaptive_read_buffering is nil. */
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4549 if (process_output_skip && check_delay > 0)
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4550 {
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4551 int usecs = EMACS_USECS (timeout);
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4552 if (EMACS_SECS (timeout) > 0 || usecs > READ_OUTPUT_DELAY_MAX)
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4553 usecs = READ_OUTPUT_DELAY_MAX;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4554 for (channel = 0; check_delay > 0 && channel <= max_process_desc; channel++)
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4555 {
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4556 proc = chan_process[channel];
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4557 if (NILP (proc))
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4558 continue;
63114
6ef9e44e50d7 Improve commentary for adaptive read buffering.
Kim F. Storm <storm@cua.dk>
parents: 62604
diff changeset
4559 /* Find minimum non-zero read_output_delay among the
6ef9e44e50d7 Improve commentary for adaptive read buffering.
Kim F. Storm <storm@cua.dk>
parents: 62604
diff changeset
4560 processes with non-nil read_output_skip. */
53637
46f44b9f4e04 (wait_reading_process_input): Lisp_Object/int mixup.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 53520
diff changeset
4561 if (XINT (XPROCESS (proc)->read_output_delay) > 0)
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4562 {
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4563 check_delay--;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4564 if (NILP (XPROCESS (proc)->read_output_skip))
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4565 continue;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4566 FD_CLR (channel, &Available);
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4567 XPROCESS (proc)->read_output_skip = Qnil;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4568 if (XINT (XPROCESS (proc)->read_output_delay) < usecs)
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4569 usecs = XINT (XPROCESS (proc)->read_output_delay);
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4570 }
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4571 }
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4572 EMACS_SET_SECS_USECS (timeout, 0, usecs);
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4573 process_output_skip = 0;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4574 }
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4575 #endif
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
4576
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4577 nfds = select (max (max_process_desc, max_keyboard_desc) + 1,
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
4578 &Available,
57840
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4579 #ifdef NON_BLOCKING_CONNECT
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4580 (check_connect ? &Connecting : (SELECT_TYPE *)0),
57840
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4581 #else
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4582 (SELECT_TYPE *)0,
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4583 #endif
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4584 (SELECT_TYPE *)0, &timeout);
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4585 }
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
4586
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4587 xerrno = errno;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4588
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4589 /* Make C-g and alarm signals set flags again */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4590 clear_waiting_for_input ();
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4591
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4592 /* If we woke up due to SIGWINCH, actually change size now. */
25356
5db69f7aadca Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents: 25262
diff changeset
4593 do_pending_window_change (0);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4594
14458
2bb4652305c1 (wait_reading_process_input): If select times out,
Richard M. Stallman <rms@gnu.org>
parents: 14405
diff changeset
4595 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
4596 /* We wanted the full specified time, so return now. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4597 break;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4598 if (nfds < 0)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4599 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4600 if (xerrno == EINTR)
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4601 no_avail = 1;
1594
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
4602 #ifdef ultrix
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
4603 /* 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
4604 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
4605 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
4606 "__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
4607 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
4608 else if (xerrno == ENOMEM)
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4609 no_avail = 1;
1323
25b5b55a3916 * process.c (wait_reading_process_input): If the select returns
Jim Blandy <jimb@redhat.com>
parents: 1207
diff changeset
4610 #endif
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4611 #ifdef ALLIANT
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4612 /* This happens for no known reason on ALLIANT.
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4613 I am guessing that this is the right response. -- RMS. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4614 else if (xerrno == EFAULT)
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4615 no_avail = 1;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4616 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4617 else if (xerrno == EBADF)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4618 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4619 #ifdef AIX
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4620 /* AIX doesn't handle PTY closure the same way BSD does. On AIX,
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4621 the child's closure of the pts gives the parent a SIGHUP, and
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4622 the ptc file descriptor is automatically closed,
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4623 yielding EBADF here or at select() call above.
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4624 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
5534
7a0de0f56c86 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 5404
diff changeset
4625 in m/ibmrt-aix.h), and here we just ignore the select error.
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4626 Cleanup occurs c/o status_notify after SIGCLD. */
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4627 no_avail = 1; /* Cannot depend on values returned */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4628 #else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4629 abort ();
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4630 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4631 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4632 else
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
4633 error ("select error: %s", emacs_strerror (xerrno));
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4634 }
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4635
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4636 if (no_avail)
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4637 {
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4638 FD_ZERO (&Available);
57840
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
4639 IF_NON_BLOCKING_CONNECT (check_connect = 0);
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4640 }
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4641
2815
60f122cfe785 * process.c (wait_reading_process_input): If we're running
Jim Blandy <jimb@redhat.com>
parents: 2610
diff changeset
4642 #if defined(sun) && !defined(USG5_4)
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4643 if (nfds > 0 && keyboard_bit_set (&Available)
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4644 && interrupt_input)
2830
006c7fbdeab7 Document sun change.
Jim Blandy <jimb@redhat.com>
parents: 2815
diff changeset
4645 /* System sometimes fails to deliver SIGIO.
006c7fbdeab7 Document sun change.
Jim Blandy <jimb@redhat.com>
parents: 2815
diff changeset
4646
006c7fbdeab7 Document sun change.
Jim Blandy <jimb@redhat.com>
parents: 2815
diff changeset
4647 David J. Mackenzie says that Emacs doesn't compile under
006c7fbdeab7 Document sun change.
Jim Blandy <jimb@redhat.com>
parents: 2815
diff changeset
4648 Solaris if this code is enabled, thus the USG5_4 in the CPP
006c7fbdeab7 Document sun change.
Jim Blandy <jimb@redhat.com>
parents: 2815
diff changeset
4649 conditional. "I haven't noticed any ill effects so far.
006c7fbdeab7 Document sun change.
Jim Blandy <jimb@redhat.com>
parents: 2815
diff changeset
4650 If you find a Solaris expert somewhere, they might know
006c7fbdeab7 Document sun change.
Jim Blandy <jimb@redhat.com>
parents: 2815
diff changeset
4651 better." */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4652 kill (getpid (), SIGIO);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4653 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4654
18378
22cd8d7dd5aa (wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents: 18329
diff changeset
4655 #if 0 /* When polling is used, interrupt_input is 0,
22cd8d7dd5aa (wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents: 18329
diff changeset
4656 so get_input_pending should read the input.
22cd8d7dd5aa (wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents: 18329
diff changeset
4657 So this should not be needed. */
22cd8d7dd5aa (wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents: 18329
diff changeset
4658 /* If we are using polling for input,
22cd8d7dd5aa (wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents: 18329
diff changeset
4659 and we see input available, make it get read now.
22cd8d7dd5aa (wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents: 18329
diff changeset
4660 Otherwise it might not actually get read for a second.
56728
1686b397ef16 (wait_reading_process_output): Rename from
Kim F. Storm <storm@cua.dk>
parents: 56716
diff changeset
4661 And on hpux, since we turn off polling in wait_reading_process_output,
18378
22cd8d7dd5aa (wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents: 18329
diff changeset
4662 it might never get read at all if we don't spend much time
56728
1686b397ef16 (wait_reading_process_output): Rename from
Kim F. Storm <storm@cua.dk>
parents: 56716
diff changeset
4663 outside of wait_reading_process_output. */
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4664 if (read_kbd && interrupt_input
18378
22cd8d7dd5aa (wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents: 18329
diff changeset
4665 && keyboard_bit_set (&Available)
22cd8d7dd5aa (wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents: 18329
diff changeset
4666 && input_polling_used ())
22cd8d7dd5aa (wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents: 18329
diff changeset
4667 kill (getpid (), SIGALRM);
22cd8d7dd5aa (wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents: 18329
diff changeset
4668 #endif
22cd8d7dd5aa (wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents: 18329
diff changeset
4669
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4670 /* Check for keyboard input */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4671 /* If there is any, return immediately
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4672 to give it higher priority than subprocesses */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4673
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4674 if (read_kbd != 0)
14613
386831bc4a4e (wait_reading_process_input):
Karl Heuer <kwzh@gnu.org>
parents: 14605
diff changeset
4675 {
37398
756d2f4e4058 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 36659
diff changeset
4676 int old_timers_run = timers_run;
37465
f790d83ea743 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 37413
diff changeset
4677 struct buffer *old_buffer = current_buffer;
37398
756d2f4e4058 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 36659
diff changeset
4678 int leave = 0;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
4679
14758
849458c13c0c (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 14736
diff changeset
4680 if (detect_input_pending_run_timers (do_display))
37398
756d2f4e4058 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 36659
diff changeset
4681 {
756d2f4e4058 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 36659
diff changeset
4682 swallow_events (do_display);
756d2f4e4058 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 36659
diff changeset
4683 if (detect_input_pending_run_timers (do_display))
756d2f4e4058 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 36659
diff changeset
4684 leave = 1;
756d2f4e4058 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 36659
diff changeset
4685 }
756d2f4e4058 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 36659
diff changeset
4686
756d2f4e4058 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 36659
diff changeset
4687 /* If a timer has run, this might have changed buffers
756d2f4e4058 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 36659
diff changeset
4688 an alike. Make read_key_sequence aware of that. */
756d2f4e4058 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 36659
diff changeset
4689 if (timers_run != old_timers_run
37465
f790d83ea743 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 37413
diff changeset
4690 && waiting_for_user_input_p == -1
f790d83ea743 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 37413
diff changeset
4691 && old_buffer != current_buffer)
37398
756d2f4e4058 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 36659
diff changeset
4692 record_asynch_buffer_change ();
756d2f4e4058 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 36659
diff changeset
4693
756d2f4e4058 (wait_reading_process_input): Call
Gerd Moellmann <gerd@gnu.org>
parents: 36659
diff changeset
4694 if (leave)
14613
386831bc4a4e (wait_reading_process_input):
Karl Heuer <kwzh@gnu.org>
parents: 14605
diff changeset
4695 break;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
4696 }
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
4697
18230
2f1f942f25ca (wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents: 18183
diff changeset
4698 /* If there is unread keyboard input, also return. */
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4699 if (read_kbd != 0
18230
2f1f942f25ca (wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents: 18183
diff changeset
4700 && requeued_events_pending_p ())
2f1f942f25ca (wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents: 18183
diff changeset
4701 break;
2f1f942f25ca (wait_reading_process_input): Return if unread events appear.
Richard M. Stallman <rms@gnu.org>
parents: 18183
diff changeset
4702
19053
7b5642657857 (read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents: 18974
diff changeset
4703 /* If we are not checking for keyboard input now,
7b5642657857 (read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents: 18974
diff changeset
4704 do process events (but don't run any timers).
7b5642657857 (read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents: 18974
diff changeset
4705 This is so that X events will be processed.
18492
668304de6f92 (wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents: 18378
diff changeset
4706 Otherwise they may have to wait until polling takes place.
19053
7b5642657857 (read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents: 18974
diff changeset
4707 That would causes delays in pasting selections, for example.
7b5642657857 (read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents: 18974
diff changeset
4708
7b5642657857 (read_process_output): Don't call setup_coding_system
Richard M. Stallman <rms@gnu.org>
parents: 18974
diff changeset
4709 (We used to do this only if wait_for_cell.) */
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4710 if (read_kbd == 0 && detect_input_pending ())
15064
fb0f2804c34a (wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents: 15025
diff changeset
4711 {
fb0f2804c34a (wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents: 15025
diff changeset
4712 swallow_events (do_display);
18492
668304de6f92 (wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents: 18378
diff changeset
4713 #if 0 /* Exiting when read_kbd doesn't request that seems wrong, though. */
15064
fb0f2804c34a (wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents: 15025
diff changeset
4714 if (detect_input_pending ())
fb0f2804c34a (wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents: 15025
diff changeset
4715 break;
18492
668304de6f92 (wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents: 18378
diff changeset
4716 #endif
15064
fb0f2804c34a (wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents: 15025
diff changeset
4717 }
fb0f2804c34a (wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents: 15025
diff changeset
4718
2200
5e58643bb169 (wait_reading_process_input): New option to wait
Richard M. Stallman <rms@gnu.org>
parents: 2120
diff changeset
4719 /* Exit now if the cell we're waiting for became non-nil. */
39973
579177964efa Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents: 39964
diff changeset
4720 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
2200
5e58643bb169 (wait_reading_process_input): New option to wait
Richard M. Stallman <rms@gnu.org>
parents: 2120
diff changeset
4721 break;
5e58643bb169 (wait_reading_process_input): New option to wait
Richard M. Stallman <rms@gnu.org>
parents: 2120
diff changeset
4722
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 604
diff changeset
4723 #ifdef SIGIO
18378
22cd8d7dd5aa (wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents: 18329
diff changeset
4724 /* If we think we have keyboard input waiting, but didn't get SIGIO,
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4725 go read it. This can happen with X on BSD after logging out.
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4726 In that case, there really is no input and no SIGIO,
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4727 but select says there is input. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4728
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4729 if (read_kbd && interrupt_input
51637
745eaece4a11 (wait_reading_process_input): Don't signal SIGIO in batch mode.
Richard M. Stallman <rms@gnu.org>
parents: 51473
diff changeset
4730 && keyboard_bit_set (&Available) && ! noninteractive)
14736
b17ec81a6294 (wait_reading_process_input): Use getpid when generating SIGIO.
Richard M. Stallman <rms@gnu.org>
parents: 14671
diff changeset
4731 kill (getpid (), SIGIO);
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 604
diff changeset
4732 #endif
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4733
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4734 if (! wait_proc)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4735 got_some_input |= nfds > 0;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4736
624
2bb7f23b7ea5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 621
diff changeset
4737 /* If checking input just got us a size-change event from X,
2bb7f23b7ea5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 621
diff changeset
4738 obey it now if we should. */
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4739 if (read_kbd || ! NILP (wait_for_cell))
25356
5db69f7aadca Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents: 25262
diff changeset
4740 do_pending_window_change (0);
624
2bb7f23b7ea5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 621
diff changeset
4741
5134
0a4e46e15304 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 4998
diff changeset
4742 /* Check for data from a process. */
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4743 if (no_avail || nfds == 0)
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4744 continue;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4745
5134
0a4e46e15304 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 4998
diff changeset
4746 /* Really FIRST_PROC_DESC should be 0 on Unix,
0a4e46e15304 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 4998
diff changeset
4747 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
4748 for (channel = 0; channel <= max_process_desc; channel++)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4749 {
9686
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
4750 if (FD_ISSET (channel, &Available)
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
4751 && FD_ISSET (channel, &non_keyboard_wait_mask))
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4752 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4753 int nread;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4754
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4755 /* If waiting for this channel, arrange to return as
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4756 soon as no more input to be processed. No more
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4757 waiting. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4758 if (wait_channel == channel)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4759 {
5134
0a4e46e15304 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 4998
diff changeset
4760 wait_channel = -1;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4761 time_limit = -1;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4762 got_some_input = 1;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4763 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4764 proc = chan_process[channel];
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4765 if (NILP (proc))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4766 continue;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4767
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4768 /* If this is a server stream socket, accept connection. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4769 if (EQ (XPROCESS (proc)->status, Qlisten))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4770 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4771 server_accept_connection (proc, channel);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4772 continue;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4773 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4774
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4775 /* Read data from the process, starting with our
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4776 buffered-ahead character if we have one. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4777
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4778 nread = read_process_output (proc, channel);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4779 if (nread > 0)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4780 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4781 /* Since read_process_output can run a filter,
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4782 which can call accept-process-output,
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4783 don't try to read from any other processes
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4784 before doing the select again. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4785 FD_ZERO (&Available);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4786
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4787 if (do_display)
35336
002c02db42d3 Call redisplay_preserve_echo_area with additional arg.
Gerd Moellmann <gerd@gnu.org>
parents: 34660
diff changeset
4788 redisplay_preserve_echo_area (12);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4789 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4790 #ifdef EWOULDBLOCK
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4791 else if (nread == -1 && errno == EWOULDBLOCK)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4792 ;
15405
c27bb6e69e2d (wait_reading_process_input): Move the O_NONBLOCK and
Richard M. Stallman <rms@gnu.org>
parents: 15368
diff changeset
4793 #endif
15406
7c205bc80624 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 15405
diff changeset
4794 /* ISC 4.1 defines both EWOULDBLOCK and O_NONBLOCK,
7c205bc80624 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 15405
diff changeset
4795 and Emacs uses O_NONBLOCK, so what we get is EAGAIN. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4796 #ifdef O_NONBLOCK
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4797 else if (nread == -1 && errno == EAGAIN)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4798 ;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4799 #else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4800 #ifdef O_NDELAY
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4801 else if (nread == -1 && errno == EAGAIN)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4802 ;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4803 /* Note that we cannot distinguish between no input
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4804 available now and a closed pipe.
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4805 With luck, a closed pipe will be accompanied by
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4806 subprocess termination and SIGCHLD. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4807 else if (nread == 0 && !NETCONN_P (proc))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4808 ;
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4809 #endif /* O_NDELAY */
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4810 #endif /* O_NONBLOCK */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4811 #ifdef HAVE_PTYS
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4812 /* On some OSs with ptys, when the process on one end of
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4813 a pty exits, the other end gets an error reading with
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4814 errno = EIO instead of getting an EOF (0 bytes read).
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4815 Therefore, if we get an error reading and errno =
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4816 EIO, just continue, because the child process has
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4817 exited and should clean itself up soon (e.g. when we
23035
8d68b82a4d8c (wait_reading_process_input): If a pty gives EIO,
Richard M. Stallman <rms@gnu.org>
parents: 22939
diff changeset
4818 get a SIGCHLD).
8d68b82a4d8c (wait_reading_process_input): If a pty gives EIO,
Richard M. Stallman <rms@gnu.org>
parents: 22939
diff changeset
4819
8d68b82a4d8c (wait_reading_process_input): If a pty gives EIO,
Richard M. Stallman <rms@gnu.org>
parents: 22939
diff changeset
4820 However, it has been known to happen that the SIGCHLD
8d68b82a4d8c (wait_reading_process_input): If a pty gives EIO,
Richard M. Stallman <rms@gnu.org>
parents: 22939
diff changeset
4821 got lost. So raise the signl again just in case.
8d68b82a4d8c (wait_reading_process_input): If a pty gives EIO,
Richard M. Stallman <rms@gnu.org>
parents: 22939
diff changeset
4822 It can't hurt. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4823 else if (nread == -1 && errno == EIO)
23035
8d68b82a4d8c (wait_reading_process_input): If a pty gives EIO,
Richard M. Stallman <rms@gnu.org>
parents: 22939
diff changeset
4824 kill (getpid (), SIGCHLD);
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4825 #endif /* HAVE_PTYS */
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4826 /* If we can detect process termination, don't consider the process
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4827 gone just because its pipe is closed. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4828 #ifdef SIGCHLD
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4829 else if (nread == 0 && !NETCONN_P (proc))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4830 ;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4831 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4832 else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4833 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4834 /* Preserve status of processes already terminated. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4835 XSETINT (XPROCESS (proc)->tick, ++process_tick);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4836 deactivate_process (proc);
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
4837 if (XPROCESS (proc)->raw_status_new)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4838 update_status (XPROCESS (proc));
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4839 if (EQ (XPROCESS (proc)->status, Qrun))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4840 XPROCESS (proc)->status
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4841 = Fcons (Qexit, Fcons (make_number (256), Qnil));
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4842 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4843 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
4844 #ifdef NON_BLOCKING_CONNECT
55766
d5fe47c900ee (wait_reading_process_input): Check connect_wait_mask
Kim F. Storm <storm@cua.dk>
parents: 55579
diff changeset
4845 if (check_connect && FD_ISSET (channel, &Connecting)
d5fe47c900ee (wait_reading_process_input): Check connect_wait_mask
Kim F. Storm <storm@cua.dk>
parents: 55579
diff changeset
4846 && FD_ISSET (channel, &connect_wait_mask))
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4847 {
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4848 struct Lisp_Process *p;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4849
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4850 FD_CLR (channel, &connect_wait_mask);
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4851 if (--num_pending_connects < 0)
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4852 abort ();
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4853
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4854 proc = chan_process[channel];
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4855 if (NILP (proc))
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4856 continue;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4857
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4858 p = XPROCESS (proc);
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4859
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4860 #ifdef GNU_LINUX
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4861 /* getsockopt(,,SO_ERROR,,) is said to hang on some systems.
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4862 So only use it on systems where it is known to work. */
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4863 {
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4864 int xlen = sizeof(xerrno);
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4865 if (getsockopt(channel, SOL_SOCKET, SO_ERROR, &xerrno, &xlen))
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4866 xerrno = errno;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4867 }
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4868 #else
44013
da239fc7bb6c (wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents: 43999
diff changeset
4869 {
da239fc7bb6c (wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents: 43999
diff changeset
4870 struct sockaddr pname;
da239fc7bb6c (wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents: 43999
diff changeset
4871 int pnamelen = sizeof(pname);
da239fc7bb6c (wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents: 43999
diff changeset
4872
da239fc7bb6c (wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents: 43999
diff changeset
4873 /* If connection failed, getpeername will fail. */
da239fc7bb6c (wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents: 43999
diff changeset
4874 xerrno = 0;
da239fc7bb6c (wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents: 43999
diff changeset
4875 if (getpeername(channel, &pname, &pnamelen) < 0)
da239fc7bb6c (wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents: 43999
diff changeset
4876 {
da239fc7bb6c (wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents: 43999
diff changeset
4877 /* Obtain connect failure code through error slippage. */
da239fc7bb6c (wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents: 43999
diff changeset
4878 char dummy;
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4879 xerrno = errno;
44013
da239fc7bb6c (wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents: 43999
diff changeset
4880 if (errno == ENOTCONN && read(channel, &dummy, 1) < 0)
da239fc7bb6c (wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents: 43999
diff changeset
4881 xerrno = errno;
da239fc7bb6c (wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents: 43999
diff changeset
4882 }
da239fc7bb6c (wait_reading_process_input): Move variables `pname' and `pnamelen' down
Pavel Janík <Pavel@Janik.cz>
parents: 43999
diff changeset
4883 }
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4884 #endif
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4885 if (xerrno)
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4886 {
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4887 XSETINT (p->tick, ++process_tick);
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4888 p->status = Fcons (Qfailed, Fcons (make_number (xerrno), Qnil));
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4889 deactivate_process (proc);
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4890 }
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4891 else
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4892 {
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4893 p->status = Qrun;
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4894 /* Execute the sentinel here. If we had relied on
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4895 status_notify to do it later, it will read input
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4896 from the process before calling the sentinel. */
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4897 exec_sentinel (proc, build_string ("open\n"));
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
4898 if (!EQ (p->filter, Qt) && !EQ (p->command, Qt))
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4899 {
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4900 FD_SET (XINT (p->infd), &input_wait_mask);
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4901 FD_SET (XINT (p->infd), &non_keyboard_wait_mask);
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4902 }
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4903 }
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4904 }
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
4905 #endif /* NON_BLOCKING_CONNECT */
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4906 } /* end for each file descriptor */
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4907 } /* end while exit conditions not met */
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4908
72277
a6b9ee835f88 * process.c: Reapply 2006-08-01 change.
Chong Yidong <cyd@stupidchicken.com>
parents: 72255
diff changeset
4909 unbind_to (count, Qnil);
8570
dd3dfde8f973 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 8390
diff changeset
4910
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4911 /* If calling from keyboard input, do not quit
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4912 since we want to return C-g as an input character.
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4913 Otherwise, do pending quit if requested. */
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
4914 if (read_kbd >= 0)
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4915 {
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4916 /* Prevent input_pending from remaining set if we quit. */
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4917 clear_input_pending ();
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4918 QUIT;
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4919 }
49894
675b86cf29fc (wait_reading_process_input): Use POLL_INTERRUPTED_SYS_CALL, not
Juanma Barranquero <lekktu@gmail.com>
parents: 49872
diff changeset
4920 #ifdef POLL_INTERRUPTED_SYS_CALL
15661
96debed5fb36 (wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents: 15406
diff changeset
4921 /* AlainF 5-Jul-1996
96debed5fb36 (wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents: 15406
diff changeset
4922 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
4923 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
4924 in an X window
96debed5fb36 (wait_reading_process_input) [hpux]: Workaround for
Karl Heuer <kwzh@gnu.org>
parents: 15406
diff changeset
4925 Turn periodic alarms back on */
18378
22cd8d7dd5aa (wait_reading_process_input): Don't check for
Richard M. Stallman <rms@gnu.org>
parents: 18329
diff changeset
4926 start_polling ();
49894
675b86cf29fc (wait_reading_process_input): Use POLL_INTERRUPTED_SYS_CALL, not
Juanma Barranquero <lekktu@gmail.com>
parents: 49872
diff changeset
4927 #endif /* POLL_INTERRUPTED_SYS_CALL */
25009
5733af0b62ce (wait_reading_process_input): Show and hide busy
Gerd Moellmann <gerd@gnu.org>
parents: 24933
diff changeset
4928
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4929 return got_some_input;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4930 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4931
9030
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
4932 /* 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
4933
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
4934 static Lisp_Object
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
4935 read_process_output_call (fun_and_args)
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
4936 Lisp_Object fun_and_args;
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
4937 {
25645
a14111a2a100 Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25356
diff changeset
4938 return apply1 (XCAR (fun_and_args), XCDR (fun_and_args));
9030
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
4939 }
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
4940
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
4941 static Lisp_Object
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
4942 read_process_output_error_handler (error)
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
4943 Lisp_Object error;
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
4944 {
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
4945 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
4946 Vinhibit_quit = Qt;
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
4947 update_echo_area ();
11277
d4547e4b0aab (read_process_output_error_handler)
Richard M. Stallman <rms@gnu.org>
parents: 11235
diff changeset
4948 Fsleep_for (make_number (2), Qnil);
27558
f99efd14b932 (Fstart_process): Doc fix.
Dave Love <fx@gnu.org>
parents: 27430
diff changeset
4949 return Qt;
9030
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
4950 }
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
4951
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4952 /* Read pending output from the process channel,
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4953 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
4954 Yield number of decoded characters read.
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4955
55962
8979bc3ade70 (Fdelete_process): Undo 2004-05-28 change.
Kim F. Storm <storm@cua.dk>
parents: 55810
diff changeset
4956 This function reads at most 4096 characters.
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4957 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
4958 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
4959
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
4960 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
4961 for decoding. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4962
64977
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
4963 static int
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4964 read_process_output (proc, channel)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4965 Lisp_Object proc;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4966 register int channel;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4967 {
52527
3ea59ac8dfa5 (Fnetwork_interface_info): Fix type error.
Dave Love <fx@gnu.org>
parents: 52525
diff changeset
4968 register int nbytes;
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
4969 char *chars;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4970 register Lisp_Object outstream;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4971 register struct buffer *old = current_buffer;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4972 register struct Lisp_Process *p = XPROCESS (proc);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4973 register int opoint;
17110
3a348cbb354f (Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents: 17041
diff changeset
4974 struct coding_system *coding = proc_decode_coding_system[channel];
20715
5e983ddb85c9 (Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents: 20708
diff changeset
4975 int carryover = XINT (p->decoding_carryover);
55962
8979bc3ade70 (Fdelete_process): Undo 2004-05-28 change.
Kim F. Storm <storm@cua.dk>
parents: 55810
diff changeset
4976 int readmax = 4096;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4977
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4978 #ifdef VMS
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4979 VMS_PROC_STUFF *vs, *get_vms_process_pointer();
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4980
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4981 vs = get_vms_process_pointer (p->pid);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4982 if (vs)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4983 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4984 if (!vs->iosb[0])
25248
f0fc8443bdbb (Fopen_network_stream): Use getaddrinfo.
Karl Heuer <kwzh@gnu.org>
parents: 25129
diff changeset
4985 return (0); /* Really weird if it does this */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4986 if (!(vs->iosb[0] & 1))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4987 return -1; /* I/O error */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4988 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4989 else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4990 error ("Could not get VMS process pointer");
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4991 chars = vs->inputBuffer;
20594
6e5a5afbe628 (read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents: 20551
diff changeset
4992 nbytes = clean_vms_buffer (chars, vs->iosb[1]);
6e5a5afbe628 (read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents: 20551
diff changeset
4993 if (nbytes <= 0)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4994 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4995 start_vms_process_read (vs); /* Crank up the next read on the process */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4996 return 1; /* Nothing worth printing, say we got 1 */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4997 }
20715
5e983ddb85c9 (Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents: 20708
diff changeset
4998 if (carryover > 0)
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
4999 {
20715
5e983ddb85c9 (Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents: 20708
diff changeset
5000 /* The data carried over in the previous decoding (which are at
5e983ddb85c9 (Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents: 20708
diff changeset
5001 the tail of decoding buffer) should be prepended to the new
5e983ddb85c9 (Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents: 20708
diff changeset
5002 data read to decode all together. */
30580
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5003 chars = (char *) alloca (nbytes + carryover);
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
5004 bcopy (SDATA (p->decoding_buf), buf, carryover);
30580
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5005 bcopy (vs->inputBuffer, chars + carryover, nbytes);
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
5006 }
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5007 #else /* not VMS */
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
5008
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
5009 chars = (char *) alloca (carryover + readmax);
20715
5e983ddb85c9 (Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents: 20708
diff changeset
5010 if (carryover)
5e983ddb85c9 (Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents: 20708
diff changeset
5011 /* See the comment above. */
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
5012 bcopy (SDATA (p->decoding_buf), chars, carryover);
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
5013
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
5014 #ifdef DATAGRAM_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
5015 /* We have a working select, so proc_buffered_char is always -1. */
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
5016 if (DATAGRAM_CHAN_P (channel))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
5017 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
5018 int len = datagram_address[channel].len;
56583
64ae47cb68ff (read_process_output): Use whole read buffer.
Kim F. Storm <storm@cua.dk>
parents: 56477
diff changeset
5019 nbytes = recvfrom (channel, chars + carryover, readmax,
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
5020 0, datagram_address[channel].sa, &len);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
5021 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
5022 else
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
5023 #endif
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5024 if (proc_buffered_char[channel] < 0)
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5025 {
56583
64ae47cb68ff (read_process_output): Use whole read buffer.
Kim F. Storm <storm@cua.dk>
parents: 56477
diff changeset
5026 nbytes = emacs_read (channel, chars + carryover, readmax);
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5027 #ifdef ADAPTIVE_READ_BUFFERING
56583
64ae47cb68ff (read_process_output): Use whole read buffer.
Kim F. Storm <storm@cua.dk>
parents: 56477
diff changeset
5028 if (nbytes > 0 && !NILP (p->adaptive_read_buffering))
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5029 {
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5030 int delay = XINT (p->read_output_delay);
53520
2a54a8df1973 (read_process_output): Only activate adaptive
Kim F. Storm <storm@cua.dk>
parents: 53472
diff changeset
5031 if (nbytes < 256)
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5032 {
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5033 if (delay < READ_OUTPUT_DELAY_MAX_MAX)
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5034 {
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5035 if (delay == 0)
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5036 process_output_delay_count++;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5037 delay += READ_OUTPUT_DELAY_INCREMENT * 2;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5038 }
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5039 }
56583
64ae47cb68ff (read_process_output): Use whole read buffer.
Kim F. Storm <storm@cua.dk>
parents: 56477
diff changeset
5040 else if (delay > 0 && (nbytes == readmax))
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5041 {
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5042 delay -= READ_OUTPUT_DELAY_INCREMENT;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5043 if (delay == 0)
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5044 process_output_delay_count--;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5045 }
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5046 XSETINT (p->read_output_delay, delay);
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5047 if (delay)
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5048 {
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5049 p->read_output_skip = Qt;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5050 process_output_skip = 1;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5051 }
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5052 }
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5053 #endif
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5054 }
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5055 else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5056 {
30580
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5057 chars[carryover] = proc_buffered_char[channel];
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5058 proc_buffered_char[channel] = -1;
56583
64ae47cb68ff (read_process_output): Use whole read buffer.
Kim F. Storm <storm@cua.dk>
parents: 56477
diff changeset
5059 nbytes = emacs_read (channel, chars + carryover + 1, readmax - 1);
20594
6e5a5afbe628 (read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents: 20551
diff changeset
5060 if (nbytes < 0)
6e5a5afbe628 (read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents: 20551
diff changeset
5061 nbytes = 1;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5062 else
20594
6e5a5afbe628 (read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents: 20551
diff changeset
5063 nbytes = nbytes + 1;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5064 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5065 #endif /* not VMS */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5066
22523
b02a5ea8cf93 (read_process_output): Handle carryover correctly.
Kenichi Handa <handa@m17n.org>
parents: 22019
diff changeset
5067 XSETINT (p->decoding_carryover, 0);
b02a5ea8cf93 (read_process_output): Handle carryover correctly.
Kenichi Handa <handa@m17n.org>
parents: 22019
diff changeset
5068
30580
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5069 /* At this point, NBYTES holds number of bytes just received
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
5070 (including the one in proc_buffered_char[channel]). */
23879
18e5d1cfa74b (read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents: 23762
diff changeset
5071 if (nbytes <= 0)
18e5d1cfa74b (read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents: 23762
diff changeset
5072 {
18e5d1cfa74b (read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents: 23762
diff changeset
5073 if (nbytes < 0 || coding->mode & CODING_MODE_LAST_BLOCK)
18e5d1cfa74b (read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents: 23762
diff changeset
5074 return nbytes;
18e5d1cfa74b (read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents: 23762
diff changeset
5075 coding->mode |= CODING_MODE_LAST_BLOCK;
18e5d1cfa74b (read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents: 23762
diff changeset
5076 }
20594
6e5a5afbe628 (read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents: 20551
diff changeset
5077
6e5a5afbe628 (read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents: 20551
diff changeset
5078 /* Now set NBYTES how many bytes we must decode. */
20715
5e983ddb85c9 (Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents: 20708
diff changeset
5079 nbytes += carryover;
29017
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
5080
20594
6e5a5afbe628 (read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents: 20551
diff changeset
5081 /* Read and dispose of the process output. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5082 outstream = p->filter;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5083 if (!NILP (outstream))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5084 {
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
5085 /* We inhibit quit here instead of just catching it so that
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5086 hitting ^G when a filter happens to be running won't screw
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5087 it up. */
46293
1fb8f75062c6 Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents: 45410
diff changeset
5088 int count = SPECPDL_INDEX ();
3510
b4a552ca4e99 (read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents: 3238
diff changeset
5089 Lisp_Object odeactivate;
10914
413d44c0bd41 (exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents: 10744
diff changeset
5090 Lisp_Object obuffer, okeymap;
20594
6e5a5afbe628 (read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents: 20551
diff changeset
5091 Lisp_Object text;
16644
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
5092 int outer_running_asynch_code = running_asynch_code;
23460
94f4ba741f22 (exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents: 23405
diff changeset
5093 int waiting = waiting_for_user_input_p;
10914
413d44c0bd41 (exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents: 10744
diff changeset
5094
413d44c0bd41 (exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents: 10744
diff changeset
5095 /* 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
5096 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
5097 odeactivate = Vdeactivate_mark;
10914
413d44c0bd41 (exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents: 10744
diff changeset
5098 XSETBUFFER (obuffer, current_buffer);
413d44c0bd41 (exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents: 10744
diff changeset
5099 okeymap = current_buffer->keymap;
3510
b4a552ca4e99 (read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents: 3238
diff changeset
5100
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5101 specbind (Qinhibit_quit, Qt);
8231
5226ed89c1a6 (Qlast_nonmenu_event): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8063
diff changeset
5102 specbind (Qlast_nonmenu_event, Qt);
9030
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
5103
16644
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
5104 /* In case we get recursively called,
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
5105 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
5106 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
5107 if (outer_running_asynch_code)
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
5108 {
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
5109 Lisp_Object tem;
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
5110 /* Don't clobber the CURRENT match data, either! */
63147
9bde03db5726 * composite.c (compose_chars_in_text):
Kim F. Storm <storm@cua.dk>
parents: 63128
diff changeset
5111 tem = Fmatch_data (Qnil, Qnil, Qnil);
9bde03db5726 * composite.c (compose_chars_in_text):
Kim F. Storm <storm@cua.dk>
parents: 63128
diff changeset
5112 restore_search_regs ();
9bde03db5726 * composite.c (compose_chars_in_text):
Kim F. Storm <storm@cua.dk>
parents: 63128
diff changeset
5113 record_unwind_save_match_data ();
9bde03db5726 * composite.c (compose_chars_in_text):
Kim F. Storm <storm@cua.dk>
parents: 63128
diff changeset
5114 Fset_match_data (tem, Qt);
16644
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
5115 }
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
5116
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
5117 /* 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
5118 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
5119 running_asynch_code = 1;
16644
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
5120
30580
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5121 text = decode_coding_string (make_unibyte_string (chars, nbytes),
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5122 coding, 0);
30582
280157ad4aa3 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 30580
diff changeset
5123 Vlast_coding_system_used = coding->symbol;
30580
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5124 /* A new coding system might be found. */
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5125 if (!EQ (p->decode_coding_system, coding->symbol))
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5126 {
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5127 p->decode_coding_system = coding->symbol;
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5128
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5129 /* Don't call setup_coding_system for
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5130 proc_decode_coding_system[channel] here. It is done in
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5131 detect_coding called via decode_coding above. */
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5132
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5133 /* If a coding system for encoding is not yet decided, we set
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5134 it as the same as coding-system for decoding.
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5135
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5136 But, before doing that we must check if
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5137 proc_encode_coding_system[p->outfd] surely points to a
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5138 valid memory because p->outfd will be changed once EOF is
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5139 sent to the process. */
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5140 if (NILP (p->encode_coding_system)
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5141 && proc_encode_coding_system[XINT (p->outfd)])
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5142 {
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5143 p->encode_coding_system = coding->symbol;
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5144 setup_coding_system (coding->symbol,
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5145 proc_encode_coding_system[XINT (p->outfd)]);
70517
7ebead4f6646 (setup_process_coding_systems): Use system_eol_type
Kenichi Handa <handa@m17n.org>
parents: 69981
diff changeset
5146 if (proc_encode_coding_system[XINT (p->outfd)]->eol_type
7ebead4f6646 (setup_process_coding_systems): Use system_eol_type
Kenichi Handa <handa@m17n.org>
parents: 69981
diff changeset
5147 == CODING_EOL_UNDECIDED)
7ebead4f6646 (setup_process_coding_systems): Use system_eol_type
Kenichi Handa <handa@m17n.org>
parents: 69981
diff changeset
5148 proc_encode_coding_system[XINT (p->outfd)]->eol_type
7ebead4f6646 (setup_process_coding_systems): Use system_eol_type
Kenichi Handa <handa@m17n.org>
parents: 69981
diff changeset
5149 = system_eol_type;
30580
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5150 }
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5151 }
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5152
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5153 carryover = nbytes - coding->consumed;
74406
6bc8bd6fe72c (Qsignal): Declare extern.
Kim F. Storm <storm@cua.dk>
parents: 73951
diff changeset
5154 if (carryover < 0)
6bc8bd6fe72c (Qsignal): Declare extern.
Kim F. Storm <storm@cua.dk>
parents: 73951
diff changeset
5155 abort ();
6bc8bd6fe72c (Qsignal): Declare extern.
Kim F. Storm <storm@cua.dk>
parents: 73951
diff changeset
5156
55534
43894b273b5e (read_process_output): Grow decoding_buf when needed;
Kim F. Storm <storm@cua.dk>
parents: 55504
diff changeset
5157 if (SCHARS (p->decoding_buf) < carryover)
43894b273b5e (read_process_output): Grow decoding_buf when needed;
Kim F. Storm <storm@cua.dk>
parents: 55504
diff changeset
5158 p->decoding_buf = make_uninit_string (carryover);
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
5159 bcopy (chars + coding->consumed, SDATA (p->decoding_buf),
30580
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5160 carryover);
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5161 XSETINT (p->decoding_carryover, carryover);
49667
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
5162 /* Adjust the multibyteness of TEXT to that of the filter. */
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
5163 if (NILP (p->filter_multibyte) != ! STRING_MULTIBYTE (text))
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
5164 text = (STRING_MULTIBYTE (text)
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
5165 ? Fstring_as_unibyte (text)
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
5166 : Fstring_to_multibyte (text));
52093
25ad7be098ba (read_process_output): Return the actually read bytes
Kenichi Handa <handa@m17n.org>
parents: 51637
diff changeset
5167 if (SBYTES (text) > 0)
34647
1898b3c996ff (read_process_output): Don't run a filter if the code
Kenichi Handa <handa@m17n.org>
parents: 34352
diff changeset
5168 internal_condition_case_1 (read_process_output_call,
1898b3c996ff (read_process_output): Don't run a filter if the code
Kenichi Handa <handa@m17n.org>
parents: 34352
diff changeset
5169 Fcons (outstream,
1898b3c996ff (read_process_output): Don't run a filter if the code
Kenichi Handa <handa@m17n.org>
parents: 34352
diff changeset
5170 Fcons (proc, Fcons (text, Qnil))),
1898b3c996ff (read_process_output): Don't run a filter if the code
Kenichi Handa <handa@m17n.org>
parents: 34352
diff changeset
5171 !NILP (Vdebug_on_error) ? Qnil : Qerror,
1898b3c996ff (read_process_output): Don't run a filter if the code
Kenichi Handa <handa@m17n.org>
parents: 34352
diff changeset
5172 read_process_output_error_handler);
16644
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
5173
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
5174 /* If we saved the match data nonrecursively, restore it now. */
63147
9bde03db5726 * composite.c (compose_chars_in_text):
Kim F. Storm <storm@cua.dk>
parents: 63128
diff changeset
5175 restore_search_regs ();
16644
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
5176 running_asynch_code = outer_running_asynch_code;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5177
3666
c7ff787b096f (read_process_output): Don't deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents: 3608
diff changeset
5178 /* 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
5179 Vdeactivate_mark = odeactivate;
b4a552ca4e99 (read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents: 3238
diff changeset
5180
23460
94f4ba741f22 (exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents: 23405
diff changeset
5181 /* Restore waiting_for_user_input_p as it was
94f4ba741f22 (exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents: 23405
diff changeset
5182 when we were called, in case the filter clobbered it. */
94f4ba741f22 (exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents: 23405
diff changeset
5183 waiting_for_user_input_p = waiting;
94f4ba741f22 (exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents: 23405
diff changeset
5184
12808
4db1f387e85f (read_process_output, exec_sentinel): Call
Richard M. Stallman <rms@gnu.org>
parents: 12749
diff changeset
5185 #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
5186 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
5187 that affect key bindings. */
10914
413d44c0bd41 (exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents: 10744
diff changeset
5188 if (! EQ (Fcurrent_buffer (), obuffer)
413d44c0bd41 (exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents: 10744
diff changeset
5189 || ! EQ (current_buffer->keymap, okeymap))
12808
4db1f387e85f (read_process_output, exec_sentinel): Call
Richard M. Stallman <rms@gnu.org>
parents: 12749
diff changeset
5190 #endif
13159
2af96ac471bc (exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents: 12808
diff changeset
5191 /* 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
5192 Otherwise there's no need to make him wake up, and it could
71762
f3f2486cf6bc Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents: 71140
diff changeset
5193 cause trouble (for example it would make sit_for return). */
13159
2af96ac471bc (exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents: 12808
diff changeset
5194 if (waiting_for_user_input_p == -1)
2af96ac471bc (exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents: 12808
diff changeset
5195 record_asynch_buffer_change ();
6748
b1cde622fa65 (read_process_output): If buffer changes, record that fact.
Karl Heuer <kwzh@gnu.org>
parents: 6569
diff changeset
5196
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5197 #ifdef VMS
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5198 start_vms_process_read (vs);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5199 #endif
5561
fd7524d61a8d (read_process_output): Supply second arg to unbind_to.
Richard M. Stallman <rms@gnu.org>
parents: 5548
diff changeset
5200 unbind_to (count, Qnil);
52093
25ad7be098ba (read_process_output): Return the actually read bytes
Kenichi Handa <handa@m17n.org>
parents: 51637
diff changeset
5201 return nbytes;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5202 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5203
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5204 /* If no filter, write into buffer if it isn't dead. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5205 if (!NILP (p->buffer) && !NILP (XBUFFER (p->buffer)->name))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5206 {
1594
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
5207 Lisp_Object old_read_only;
17604
77b137e2d9a7 (read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents: 17247
diff changeset
5208 int old_begv, old_zv;
20551
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5209 int old_begv_byte, old_zv_byte;
3510
b4a552ca4e99 (read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents: 3238
diff changeset
5210 Lisp_Object odeactivate;
20551
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5211 int before, before_byte;
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5212 int opoint_byte;
30580
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5213 Lisp_Object text;
34352
642fb6c53a10 (read_process_output): Make sure the process marker's
Gerd Moellmann <gerd@gnu.org>
parents: 32864
diff changeset
5214 struct buffer *b;
3510
b4a552ca4e99 (read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents: 3238
diff changeset
5215
b4a552ca4e99 (read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents: 3238
diff changeset
5216 odeactivate = Vdeactivate_mark;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5217
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5218 Fset_buffer (p->buffer);
16039
855c8d8ba0f0 Change all references from point to PT.
Karl Heuer <kwzh@gnu.org>
parents: 15895
diff changeset
5219 opoint = PT;
20551
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5220 opoint_byte = PT_BYTE;
1594
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
5221 old_read_only = current_buffer->read_only;
17604
77b137e2d9a7 (read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents: 17247
diff changeset
5222 old_begv = BEGV;
77b137e2d9a7 (read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents: 17247
diff changeset
5223 old_zv = ZV;
20551
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5224 old_begv_byte = BEGV_BYTE;
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5225 old_zv_byte = ZV_BYTE;
1594
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
5226
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
5227 current_buffer->read_only = Qnil;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5228
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5229 /* Insert new output into buffer
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5230 at the current end-of-output marker,
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5231 thus preserving logical ordering of input and output. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5232 if (XMARKER (p->mark)->buffer)
20551
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5233 SET_PT_BOTH (clip_to_bounds (BEGV, marker_position (p->mark), ZV),
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5234 clip_to_bounds (BEGV_BYTE, marker_byte_position (p->mark),
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5235 ZV_BYTE));
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5236 else
20551
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5237 SET_PT_BOTH (ZV, ZV_BYTE);
17604
77b137e2d9a7 (read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents: 17247
diff changeset
5238 before = PT;
20551
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5239 before_byte = PT_BYTE;
1594
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
5240
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
5241 /* 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
5242 the restriction and widen. */
16039
855c8d8ba0f0 Change all references from point to PT.
Karl Heuer <kwzh@gnu.org>
parents: 15895
diff changeset
5243 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
5244 Fwiden ();
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
5245
30580
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5246 text = decode_coding_string (make_unibyte_string (chars, nbytes),
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5247 coding, 0);
30582
280157ad4aa3 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 30580
diff changeset
5248 Vlast_coding_system_used = coding->symbol;
30580
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5249 /* A new coding system might be found. See the comment in the
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5250 similar code in the previous `if' block. */
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5251 if (!EQ (p->decode_coding_system, coding->symbol))
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5252 {
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5253 p->decode_coding_system = coding->symbol;
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5254 if (NILP (p->encode_coding_system)
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5255 && proc_encode_coding_system[XINT (p->outfd)])
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5256 {
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5257 p->encode_coding_system = coding->symbol;
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5258 setup_coding_system (coding->symbol,
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5259 proc_encode_coding_system[XINT (p->outfd)]);
70517
7ebead4f6646 (setup_process_coding_systems): Use system_eol_type
Kenichi Handa <handa@m17n.org>
parents: 69981
diff changeset
5260 if (proc_encode_coding_system[XINT (p->outfd)]->eol_type
7ebead4f6646 (setup_process_coding_systems): Use system_eol_type
Kenichi Handa <handa@m17n.org>
parents: 69981
diff changeset
5261 == CODING_EOL_UNDECIDED)
7ebead4f6646 (setup_process_coding_systems): Use system_eol_type
Kenichi Handa <handa@m17n.org>
parents: 69981
diff changeset
5262 proc_encode_coding_system[XINT (p->outfd)]->eol_type
7ebead4f6646 (setup_process_coding_systems): Use system_eol_type
Kenichi Handa <handa@m17n.org>
parents: 69981
diff changeset
5263 = system_eol_type;
30580
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5264 }
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5265 }
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5266 carryover = nbytes - coding->consumed;
74406
6bc8bd6fe72c (Qsignal): Declare extern.
Kim F. Storm <storm@cua.dk>
parents: 73951
diff changeset
5267 if (carryover < 0)
6bc8bd6fe72c (Qsignal): Declare extern.
Kim F. Storm <storm@cua.dk>
parents: 73951
diff changeset
5268 abort ();
6bc8bd6fe72c (Qsignal): Declare extern.
Kim F. Storm <storm@cua.dk>
parents: 73951
diff changeset
5269
55534
43894b273b5e (read_process_output): Grow decoding_buf when needed;
Kim F. Storm <storm@cua.dk>
parents: 55504
diff changeset
5270 if (SCHARS (p->decoding_buf) < carryover)
43894b273b5e (read_process_output): Grow decoding_buf when needed;
Kim F. Storm <storm@cua.dk>
parents: 55504
diff changeset
5271 p->decoding_buf = make_uninit_string (carryover);
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
5272 bcopy (chars + coding->consumed, SDATA (p->decoding_buf),
30580
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5273 carryover);
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5274 XSETINT (p->decoding_carryover, carryover);
74406
6bc8bd6fe72c (Qsignal): Declare extern.
Kim F. Storm <storm@cua.dk>
parents: 73951
diff changeset
5275
31419
bd258f4dc0fa (read_process_output): Before inserting the decoded
Kenichi Handa <handa@m17n.org>
parents: 31136
diff changeset
5276 /* Adjust the multibyteness of TEXT to that of the buffer. */
bd258f4dc0fa (read_process_output): Before inserting the decoded
Kenichi Handa <handa@m17n.org>
parents: 31136
diff changeset
5277 if (NILP (current_buffer->enable_multibyte_characters)
bd258f4dc0fa (read_process_output): Before inserting the decoded
Kenichi Handa <handa@m17n.org>
parents: 31136
diff changeset
5278 != ! STRING_MULTIBYTE (text))
bd258f4dc0fa (read_process_output): Before inserting the decoded
Kenichi Handa <handa@m17n.org>
parents: 31136
diff changeset
5279 text = (STRING_MULTIBYTE (text)
32395
11b8c07e5fed (read_process_output): Cancel previous change.
Kenichi Handa <handa@m17n.org>
parents: 32371
diff changeset
5280 ? Fstring_as_unibyte (text)
49667
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
5281 : Fstring_to_multibyte (text));
32395
11b8c07e5fed (read_process_output): Cancel previous change.
Kenichi Handa <handa@m17n.org>
parents: 32371
diff changeset
5282 /* Insert before markers in case we are inserting where
11b8c07e5fed (read_process_output): Cancel previous change.
Kenichi Handa <handa@m17n.org>
parents: 32371
diff changeset
5283 the buffer's mark is, and the user's next command is Meta-y. */
52093
25ad7be098ba (read_process_output): Return the actually read bytes
Kenichi Handa <handa@m17n.org>
parents: 51637
diff changeset
5284 insert_from_string_before_markers (text, 0, 0,
25ad7be098ba (read_process_output): Return the actually read bytes
Kenichi Handa <handa@m17n.org>
parents: 51637
diff changeset
5285 SCHARS (text), SBYTES (text), 0);
29017
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
5286
34352
642fb6c53a10 (read_process_output): Make sure the process marker's
Gerd Moellmann <gerd@gnu.org>
parents: 32864
diff changeset
5287 /* Make sure the process marker's position is valid when the
642fb6c53a10 (read_process_output): Make sure the process marker's
Gerd Moellmann <gerd@gnu.org>
parents: 32864
diff changeset
5288 process buffer is changed in the signal_after_change above.
642fb6c53a10 (read_process_output): Make sure the process marker's
Gerd Moellmann <gerd@gnu.org>
parents: 32864
diff changeset
5289 W3 is known to do that. */
642fb6c53a10 (read_process_output): Make sure the process marker's
Gerd Moellmann <gerd@gnu.org>
parents: 32864
diff changeset
5290 if (BUFFERP (p->buffer)
642fb6c53a10 (read_process_output): Make sure the process marker's
Gerd Moellmann <gerd@gnu.org>
parents: 32864
diff changeset
5291 && (b = XBUFFER (p->buffer), b != current_buffer))
642fb6c53a10 (read_process_output): Make sure the process marker's
Gerd Moellmann <gerd@gnu.org>
parents: 32864
diff changeset
5292 set_marker_both (p->mark, p->buffer, BUF_PT (b), BUF_PT_BYTE (b));
642fb6c53a10 (read_process_output): Make sure the process marker's
Gerd Moellmann <gerd@gnu.org>
parents: 32864
diff changeset
5293 else
642fb6c53a10 (read_process_output): Make sure the process marker's
Gerd Moellmann <gerd@gnu.org>
parents: 32864
diff changeset
5294 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
1594
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
5295
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5296 update_mode_lines++;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5297
17604
77b137e2d9a7 (read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents: 17247
diff changeset
5298 /* Make sure opoint and the old restrictions
77b137e2d9a7 (read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents: 17247
diff changeset
5299 float ahead of any new text just as point would. */
77b137e2d9a7 (read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents: 17247
diff changeset
5300 if (opoint >= before)
20551
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5301 {
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5302 opoint += PT - before;
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5303 opoint_byte += PT_BYTE - before_byte;
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5304 }
17604
77b137e2d9a7 (read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents: 17247
diff changeset
5305 if (old_begv > before)
20551
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5306 {
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5307 old_begv += PT - before;
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5308 old_begv_byte += PT_BYTE - before_byte;
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5309 }
17604
77b137e2d9a7 (read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents: 17247
diff changeset
5310 if (old_zv >= before)
20551
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5311 {
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5312 old_zv += PT - before;
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5313 old_zv_byte += PT_BYTE - before_byte;
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5314 }
17604
77b137e2d9a7 (read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents: 17247
diff changeset
5315
1594
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
5316 /* If the restriction isn't what it should be, set it. */
17604
77b137e2d9a7 (read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents: 17247
diff changeset
5317 if (old_begv != BEGV || old_zv != ZV)
77b137e2d9a7 (read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents: 17247
diff changeset
5318 Fnarrow_to_region (make_number (old_begv), make_number (old_zv));
1594
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
5319
3666
c7ff787b096f (read_process_output): Don't deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents: 3608
diff changeset
5320 /* 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
5321 Vdeactivate_mark = odeactivate;
b4a552ca4e99 (read_process_output): Deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents: 3238
diff changeset
5322
1594
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
5323 current_buffer->read_only = old_read_only;
20551
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
5324 SET_PT_BOTH (opoint, opoint_byte);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5325 set_buffer_internal (old);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5326 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5327 #ifdef VMS
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5328 start_vms_process_read (vs);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5329 #endif
20594
6e5a5afbe628 (read_process_output): Use insert_1_both.
Richard M. Stallman <rms@gnu.org>
parents: 20551
diff changeset
5330 return nbytes;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5331 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5332
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5333 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p, Swaiting_for_user_input_p,
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5334 0, 0, 0,
55444
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
5335 doc: /* Returns non-nil if Emacs is waiting for input from the user.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
5336 This is intended for use by asynchronous process output filters and sentinels. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
5337 ()
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5338 {
7352
ef89b78c1a92 (wait_reading_process_input): Don't call prepare_menu_bars
Richard M. Stallman <rms@gnu.org>
parents: 7266
diff changeset
5339 return (waiting_for_user_input_p ? Qt : Qnil);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5340 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5341
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5342 /* Sending data to subprocess */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5343
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5344 jmp_buf send_process_frame;
31806
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5345 Lisp_Object process_sent_to;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5346
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5347 SIGTYPE
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5348 send_process_trap ()
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5349 {
58986
59945307b86b * syssignal.h: Declare main_thread.
Jan Djärv <jan.h.d@swipnet.se>
parents: 58082
diff changeset
5350 SIGNAL_THREAD_CHECK (SIGPIPE);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5351 #ifdef BSD4_1
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5352 sigrelse (SIGPIPE);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5353 sigrelse (SIGALRM);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5354 #endif /* BSD4_1 */
62334
f9dc4e8a41fe (send_process_trap): Unblock SIGPIPE.
Richard M. Stallman <rms@gnu.org>
parents: 60892
diff changeset
5355 sigunblock (sigmask (SIGPIPE));
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5356 longjmp (send_process_frame, 1);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5357 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5358
8063
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5359 /* Send some data to process PROC.
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5360 BUF is the beginning of the data; LEN is the number of characters.
32864
21acd0c60f5d (send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents: 32395
diff changeset
5361 OBJECT is the Lisp object that the data comes from. If OBJECT is
21acd0c60f5d (send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents: 32395
diff changeset
5362 nil or t, it means that the data comes from C string.
21acd0c60f5d (send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents: 32395
diff changeset
5363
21acd0c60f5d (send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents: 32395
diff changeset
5364 If OBJECT is not nil, the data is encoded by PROC's coding-system
21acd0c60f5d (send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents: 32395
diff changeset
5365 for encoding before it is sent.
28157
336858b2b11a (send_process): Add a hint that the function
Gerd Moellmann <gerd@gnu.org>
parents: 28012
diff changeset
5366
336858b2b11a (send_process): Add a hint that the function
Gerd Moellmann <gerd@gnu.org>
parents: 28012
diff changeset
5367 This function can evaluate Lisp code and can garbage collect. */
8063
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5368
64977
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
5369 static void
8063
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5370 send_process (proc, buf, len, object)
11926
40d7e6f04ebe (create_process, send_process): Add volatile qualifiers.
Karl Heuer <kwzh@gnu.org>
parents: 11845
diff changeset
5371 volatile Lisp_Object proc;
31806
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5372 unsigned char *volatile buf;
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5373 volatile int len;
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5374 volatile Lisp_Object object;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5375 {
11926
40d7e6f04ebe (create_process, send_process): Add volatile qualifiers.
Karl Heuer <kwzh@gnu.org>
parents: 11845
diff changeset
5376 /* Use volatile to protect variables from being clobbered by longjmp. */
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5377 struct Lisp_Process *p = XPROCESS (proc);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5378 int rv;
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
5379 struct coding_system *coding;
15895
85112cca0b22 (send_process): GCPRO object.
Richard M. Stallman <rms@gnu.org>
parents: 15717
diff changeset
5380 struct gcpro gcpro1;
62604
324a4f7ffebc (send_process): Move misplaced volatile.
Andreas Schwab <schwab@suse.de>
parents: 62602
diff changeset
5381 SIGTYPE (*volatile old_sigpipe) ();
15895
85112cca0b22 (send_process): GCPRO object.
Richard M. Stallman <rms@gnu.org>
parents: 15717
diff changeset
5382
85112cca0b22 (send_process): GCPRO object.
Richard M. Stallman <rms@gnu.org>
parents: 15717
diff changeset
5383 GCPRO1 (object);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5384
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5385 #ifdef VMS
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5386 VMS_PROC_STUFF *vs, *get_vms_process_pointer();
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5387 #endif /* VMS */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5388
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
5389 if (p->raw_status_new)
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5390 update_status (p);
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5391 if (! EQ (p->status, Qrun))
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5392 error ("Process %s not running", SDATA (p->name));
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5393 if (XINT (p->outfd) < 0)
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5394 error ("Output file descriptor of %s is closed", SDATA (p->name));
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5395
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5396 coding = proc_encode_coding_system[XINT (p->outfd)];
20433
a43789debf48 (read_process_output): Fix previous change, i.e, if
Kenichi Handa <handa@m17n.org>
parents: 20428
diff changeset
5397 Vlast_coding_system_used = coding->symbol;
a43789debf48 (read_process_output): Fix previous change, i.e, if
Kenichi Handa <handa@m17n.org>
parents: 20428
diff changeset
5398
30580
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5399 if ((STRINGP (object) && STRING_MULTIBYTE (object))
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5400 || (BUFFERP (object)
32864
21acd0c60f5d (send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents: 32395
diff changeset
5401 && !NILP (XBUFFER (object)->enable_multibyte_characters))
21acd0c60f5d (send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents: 32395
diff changeset
5402 || EQ (object, Qt))
31136
d1344c992a9a (create_process): Don't setup raw-text coding here.
Kenichi Handa <handa@m17n.org>
parents: 31099
diff changeset
5403 {
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5404 if (!EQ (coding->symbol, p->encode_coding_system))
31136
d1344c992a9a (create_process): Don't setup raw-text coding here.
Kenichi Handa <handa@m17n.org>
parents: 31099
diff changeset
5405 /* The coding system for encoding was changed to raw-text
d1344c992a9a (create_process): Don't setup raw-text coding here.
Kenichi Handa <handa@m17n.org>
parents: 31099
diff changeset
5406 because we sent a unibyte text previously. Now we are
d1344c992a9a (create_process): Don't setup raw-text coding here.
Kenichi Handa <handa@m17n.org>
parents: 31099
diff changeset
5407 sending a multibyte text, thus we must encode it by the
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5408 original coding system specified for the current process. */
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5409 setup_coding_system (p->encode_coding_system, coding);
70517
7ebead4f6646 (setup_process_coding_systems): Use system_eol_type
Kenichi Handa <handa@m17n.org>
parents: 69981
diff changeset
5410 if (coding->eol_type == CODING_EOL_UNDECIDED)
7ebead4f6646 (setup_process_coding_systems): Use system_eol_type
Kenichi Handa <handa@m17n.org>
parents: 69981
diff changeset
5411 coding->eol_type = system_eol_type;
42600
93254645e03b (send_process): Set src_multibyte to 1 after the call
Eli Zaretskii <eliz@gnu.org>
parents: 41969
diff changeset
5412 /* src_multibyte should be set to 1 _after_ a call to
93254645e03b (send_process): Set src_multibyte to 1 after the call
Eli Zaretskii <eliz@gnu.org>
parents: 41969
diff changeset
5413 setup_coding_system, since it resets src_multibyte to
93254645e03b (send_process): Set src_multibyte to 1 after the call
Eli Zaretskii <eliz@gnu.org>
parents: 41969
diff changeset
5414 zero. */
93254645e03b (send_process): Set src_multibyte to 1 after the call
Eli Zaretskii <eliz@gnu.org>
parents: 41969
diff changeset
5415 coding->src_multibyte = 1;
31136
d1344c992a9a (create_process): Don't setup raw-text coding here.
Kenichi Handa <handa@m17n.org>
parents: 31099
diff changeset
5416 }
d1344c992a9a (create_process): Don't setup raw-text coding here.
Kenichi Handa <handa@m17n.org>
parents: 31099
diff changeset
5417 else
d1344c992a9a (create_process): Don't setup raw-text coding here.
Kenichi Handa <handa@m17n.org>
parents: 31099
diff changeset
5418 {
32864
21acd0c60f5d (send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents: 32395
diff changeset
5419 /* For sending a unibyte text, character code conversion should
21acd0c60f5d (send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents: 32395
diff changeset
5420 not take place but EOL conversion should. So, setup raw-text
21acd0c60f5d (send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents: 32395
diff changeset
5421 or one of the subsidiary if we have not yet done it. */
21acd0c60f5d (send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents: 32395
diff changeset
5422 if (coding->type != coding_type_raw_text)
21acd0c60f5d (send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents: 32395
diff changeset
5423 {
21acd0c60f5d (send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents: 32395
diff changeset
5424 if (CODING_REQUIRE_FLUSHING (coding))
21acd0c60f5d (send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents: 32395
diff changeset
5425 {
21acd0c60f5d (send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents: 32395
diff changeset
5426 /* But, before changing the coding, we must flush out data. */
21acd0c60f5d (send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents: 32395
diff changeset
5427 coding->mode |= CODING_MODE_LAST_BLOCK;
21acd0c60f5d (send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents: 32395
diff changeset
5428 send_process (proc, "", 0, Qt);
21acd0c60f5d (send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents: 32395
diff changeset
5429 }
21acd0c60f5d (send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents: 32395
diff changeset
5430 coding->src_multibyte = 0;
21acd0c60f5d (send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents: 32395
diff changeset
5431 setup_raw_text_coding_system (coding);
21acd0c60f5d (send_process): If OBJECT is t, it means that the data
Kenichi Handa <handa@m17n.org>
parents: 32395
diff changeset
5432 }
31136
d1344c992a9a (create_process): Don't setup raw-text coding here.
Kenichi Handa <handa@m17n.org>
parents: 31099
diff changeset
5433 }
29017
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
5434 coding->dst_multibyte = 0;
8f10362eb5ff (Fstart_process): GCPRO current_dir before calling
Kenichi Handa <handa@m17n.org>
parents: 28157
diff changeset
5435
30580
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5436 if (CODING_REQUIRE_ENCODING (coding))
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
5437 {
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
5438 int require = encoding_buffer_size (coding, len);
31806
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5439 int from_byte = -1, from = -1, to = -1;
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
5440
30580
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5441 if (BUFFERP (object))
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
5442 {
30580
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5443 from_byte = BUF_PTR_BYTE_POS (XBUFFER (object), buf);
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5444 from = buf_bytepos_to_charpos (XBUFFER (object), from_byte);
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5445 to = buf_bytepos_to_charpos (XBUFFER (object), from_byte + len);
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
5446 }
30580
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5447 else if (STRINGP (object))
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5448 {
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
5449 from_byte = buf - SDATA (object);
30580
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5450 from = string_byte_to_char (object, from_byte);
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5451 to = string_byte_to_char (object, from_byte + len);
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5452 }
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5453
39429
9de129194439 (send_process): Disable composition if from_byte < 0.
Gerd Moellmann <gerd@gnu.org>
parents: 39406
diff changeset
5454 if (coding->composing != COMPOSITION_DISABLED)
9de129194439 (send_process): Disable composition if from_byte < 0.
Gerd Moellmann <gerd@gnu.org>
parents: 39406
diff changeset
5455 {
9de129194439 (send_process): Disable composition if from_byte < 0.
Gerd Moellmann <gerd@gnu.org>
parents: 39406
diff changeset
5456 if (from_byte >= 0)
9de129194439 (send_process): Disable composition if from_byte < 0.
Gerd Moellmann <gerd@gnu.org>
parents: 39406
diff changeset
5457 coding_save_composition (coding, from, to, object);
9de129194439 (send_process): Disable composition if from_byte < 0.
Gerd Moellmann <gerd@gnu.org>
parents: 39406
diff changeset
5458 else
9de129194439 (send_process): Disable composition if from_byte < 0.
Gerd Moellmann <gerd@gnu.org>
parents: 39406
diff changeset
5459 coding->composing = COMPOSITION_DISABLED;
9de129194439 (send_process): Disable composition if from_byte < 0.
Gerd Moellmann <gerd@gnu.org>
parents: 39406
diff changeset
5460 }
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
5461
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5462 if (SBYTES (p->encoding_buf) < require)
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5463 p->encoding_buf = make_uninit_string (require);
30580
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5464
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5465 if (from_byte >= 0)
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5466 buf = (BUFFERP (object)
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5467 ? BUF_BYTE_ADDRESS (XBUFFER (object), from_byte)
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
5468 : SDATA (object) + from_byte);
30580
5d92193ed196 (read_process_output): Big simplification. Handle
Kenichi Handa <handa@m17n.org>
parents: 29921
diff changeset
5469
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5470 object = p->encoding_buf;
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
5471 encode_coding (coding, (char *) buf, SDATA (object),
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
5472 len, SBYTES (object));
57287
d27beaf1c61c (send_process): Be sure to free composition data.
Kenichi Handa <handa@m17n.org>
parents: 56770
diff changeset
5473 coding_free_composition_data (coding);
20715
5e983ddb85c9 (Fstart_process): Use raw-text instead of emacs-mule
Kenichi Handa <handa@m17n.org>
parents: 20708
diff changeset
5474 len = coding->produced;
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
5475 buf = SDATA (object);
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
5476 }
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5477
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5478 #ifdef VMS
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5479 vs = get_vms_process_pointer (p->pid);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5480 if (vs == 0)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5481 error ("Could not find this process: %x", p->pid);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5482 else if (write_to_vms_process (vs, buf, len))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5483 ;
31806
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5484 #else /* not VMS */
8063
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5485
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5486 if (pty_max_bytes == 0)
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5487 {
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5488 #if defined (HAVE_FPATHCONF) && defined (_PC_MAX_CANON)
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5489 pty_max_bytes = fpathconf (XFASTINT (p->outfd), _PC_MAX_CANON);
8063
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5490 if (pty_max_bytes < 0)
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5491 pty_max_bytes = 250;
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5492 #else
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5493 pty_max_bytes = 250;
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5494 #endif
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5495 /* Deduct one, to leave space for the eof. */
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5496 pty_max_bytes--;
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5497 }
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5498
31806
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5499 /* 2000-09-21: Emacs 20.7, sparc-sun-solaris-2.6, GCC 2.95.2,
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5500 CFLAGS="-g -O": The value of the parameter `proc' is clobbered
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5501 when returning with longjmp despite being declared volatile. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5502 if (!setjmp (send_process_frame))
31806
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5503 {
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5504 process_sent_to = proc;
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5505 while (len > 0)
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5506 {
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5507 int this = len;
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5508
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5509 /* Decide how much data we can send in one batch.
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5510 Long lines need to be split into multiple batches. */
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5511 if (!NILP (p->pty_flag))
31806
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5512 {
39812
66e0816837a8 Update calls to openp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39429
diff changeset
5513 /* Starting this at zero is always correct when not the first
66e0816837a8 Update calls to openp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39429
diff changeset
5514 iteration because the previous iteration ended by sending C-d.
31806
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5515 It may not be correct for the first iteration
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5516 if a partial line was sent in a separate send_process call.
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5517 If that proves worth handling, we need to save linepos
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5518 in the process object. */
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5519 int linepos = 0;
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5520 unsigned char *ptr = (unsigned char *) buf;
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5521 unsigned char *end = (unsigned char *) buf + len;
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5522
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5523 /* Scan through this text for a line that is too long. */
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5524 while (ptr != end && linepos < pty_max_bytes)
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5525 {
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5526 if (*ptr == '\n')
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5527 linepos = 0;
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5528 else
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5529 linepos++;
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5530 ptr++;
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5531 }
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5532 /* If we found one, break the line there
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5533 and put in a C-d to force the buffer through. */
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5534 this = ptr - buf;
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5535 }
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5536
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5537 /* Send this batch, using one or more write calls. */
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5538 while (this > 0)
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5539 {
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5540 int outfd = XINT (p->outfd);
31806
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5541 old_sigpipe = (SIGTYPE (*) ()) signal (SIGPIPE, send_process_trap);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
5542 #ifdef DATAGRAM_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
5543 if (DATAGRAM_CHAN_P (outfd))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
5544 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
5545 rv = sendto (outfd, (char *) buf, this,
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
5546 0, datagram_address[outfd].sa,
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
5547 datagram_address[outfd].len);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
5548 if (rv < 0 && errno == EMSGSIZE)
62334
f9dc4e8a41fe (send_process_trap): Unblock SIGPIPE.
Richard M. Stallman <rms@gnu.org>
parents: 60892
diff changeset
5549 {
f9dc4e8a41fe (send_process_trap): Unblock SIGPIPE.
Richard M. Stallman <rms@gnu.org>
parents: 60892
diff changeset
5550 signal (SIGPIPE, old_sigpipe);
f9dc4e8a41fe (send_process_trap): Unblock SIGPIPE.
Richard M. Stallman <rms@gnu.org>
parents: 60892
diff changeset
5551 report_file_error ("sending datagram",
f9dc4e8a41fe (send_process_trap): Unblock SIGPIPE.
Richard M. Stallman <rms@gnu.org>
parents: 60892
diff changeset
5552 Fcons (proc, Qnil));
f9dc4e8a41fe (send_process_trap): Unblock SIGPIPE.
Richard M. Stallman <rms@gnu.org>
parents: 60892
diff changeset
5553 }
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
5554 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
5555 else
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
5556 #endif
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5557 {
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5558 rv = emacs_write (outfd, (char *) buf, this);
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5559 #ifdef ADAPTIVE_READ_BUFFERING
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5560 if (XINT (p->read_output_delay) > 0
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5561 && EQ (p->adaptive_read_buffering, Qt))
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5562 {
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5563 XSETFASTINT (p->read_output_delay, 0);
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5564 process_output_delay_count--;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5565 p->read_output_skip = Qnil;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5566 }
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5567 #endif
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5568 }
31806
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5569 signal (SIGPIPE, old_sigpipe);
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5570
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5571 if (rv < 0)
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5572 {
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5573 if (0
8063
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5574 #ifdef EWOULDBLOCK
31806
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5575 || errno == EWOULDBLOCK
6158
6b81b2575071 Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents: 5891
diff changeset
5576 #endif
8063
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5577 #ifdef EAGAIN
31806
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5578 || errno == EAGAIN
8063
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5579 #endif
31806
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5580 )
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
5581 /* Buffer is full. Wait, accepting input;
31806
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5582 that may allow the program
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5583 to finish doing output and read more. */
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5584 {
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5585 int offset = 0;
8063
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5586
27705
2c53eb482802 (send_process) [BROKEN_PTY_READ_AFTER_EAGAIN]:
Gerd Moellmann <gerd@gnu.org>
parents: 27669
diff changeset
5587 #ifdef BROKEN_PTY_READ_AFTER_EAGAIN
31806
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5588 /* A gross hack to work around a bug in FreeBSD.
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5589 In the following sequence, read(2) returns
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5590 bogus data:
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5591
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5592 write(2) 1022 bytes
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5593 write(2) 954 bytes, get EAGAIN
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5594 read(2) 1024 bytes in process_read_output
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5595 read(2) 11 bytes in process_read_output
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5596
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5597 That is, read(2) returns more bytes than have
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5598 ever been written successfully. The 1033 bytes
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5599 read are the 1022 bytes written successfully
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5600 after processing (for example with CRs added if
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5601 the terminal is set up that way which it is
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5602 here). The same bytes will be seen again in a
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5603 later read(2), without the CRs. */
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
5604
31806
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5605 if (errno == EAGAIN)
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5606 {
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5607 int flags = FWRITE;
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5608 ioctl (XINT (p->outfd), TIOCFLUSH, &flags);
31806
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5609 }
27705
2c53eb482802 (send_process) [BROKEN_PTY_READ_AFTER_EAGAIN]:
Gerd Moellmann <gerd@gnu.org>
parents: 27669
diff changeset
5610 #endif /* BROKEN_PTY_READ_AFTER_EAGAIN */
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
5611
31806
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5612 /* Running filters might relocate buffers or strings.
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5613 Arrange to relocate BUF. */
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5614 if (BUFFERP (object))
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5615 offset = BUF_PTR_BYTE_POS (XBUFFER (object), buf);
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5616 else if (STRINGP (object))
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
5617 offset = buf - SDATA (object);
31806
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5618
16718
ea26040865cb (send_process) [EMACS_HAS_USECS]:
Richard M. Stallman <rms@gnu.org>
parents: 16644
diff changeset
5619 #ifdef EMACS_HAS_USECS
56728
1686b397ef16 (wait_reading_process_output): Rename from
Kim F. Storm <storm@cua.dk>
parents: 56716
diff changeset
5620 wait_reading_process_output (0, 20000, 0, 0, Qnil, NULL, 0);
16718
ea26040865cb (send_process) [EMACS_HAS_USECS]:
Richard M. Stallman <rms@gnu.org>
parents: 16644
diff changeset
5621 #else
56728
1686b397ef16 (wait_reading_process_output): Rename from
Kim F. Storm <storm@cua.dk>
parents: 56716
diff changeset
5622 wait_reading_process_output (1, 0, 0, 0, Qnil, NULL, 0);
16718
ea26040865cb (send_process) [EMACS_HAS_USECS]:
Richard M. Stallman <rms@gnu.org>
parents: 16644
diff changeset
5623 #endif
8063
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5624
31806
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5625 if (BUFFERP (object))
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5626 buf = BUF_BYTE_ADDRESS (XBUFFER (object), offset);
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5627 else if (STRINGP (object))
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
5628 buf = offset + SDATA (object);
31806
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5629
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5630 rv = 0;
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5631 }
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5632 else
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5633 /* This is a real error. */
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5634 report_file_error ("writing to process", Fcons (proc, Qnil));
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5635 }
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5636 buf += rv;
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5637 len -= rv;
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5638 this -= rv;
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5639 }
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5640
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5641 /* If we sent just part of the string, put in an EOF
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5642 to force it through, before we send the rest. */
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5643 if (len > 0)
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5644 Fprocess_send_eof (proc);
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5645 }
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5646 }
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5647 #endif /* not VMS */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5648 else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5649 {
62581
7f6a053bbca4 (send_process): Restore the SIGPIPE handler if we catch a SIGPIPE.
Eli Zaretskii <eliz@gnu.org>
parents: 62334
diff changeset
5650 signal (SIGPIPE, old_sigpipe);
31806
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5651 #ifndef VMS
b148beb59511 (process_sent_to): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31419
diff changeset
5652 proc = process_sent_to;
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5653 p = XPROCESS (proc);
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5654 #endif
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
5655 p->raw_status_new = 0;
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5656 p->status = Fcons (Qexit, Fcons (make_number (256), Qnil));
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5657 XSETINT (p->tick, ++process_tick);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5658 deactivate_process (proc);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5659 #ifdef VMS
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5660 error ("Error writing to process %s; closed it", SDATA (p->name));
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5661 #else
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
5662 error ("SIGPIPE raised on process %s; closed it", SDATA (p->name));
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5663 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5664 }
15895
85112cca0b22 (send_process): GCPRO object.
Richard M. Stallman <rms@gnu.org>
parents: 15717
diff changeset
5665
85112cca0b22 (send_process): GCPRO object.
Richard M. Stallman <rms@gnu.org>
parents: 15717
diff changeset
5666 UNGCPRO;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5667 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5668
76088
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5669 static Lisp_Object
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5670 send_process_object_unwind (buf)
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5671 Lisp_Object buf;
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5672 {
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5673 Lisp_Object tembuf;
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5674
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5675 if (XBUFFER (buf) == current_buffer)
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5676 return Qnil;
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5677 tembuf = Fcurrent_buffer ();
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5678 Fset_buffer (buf);
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5679 Fkill_buffer (tembuf);
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5680 return Qnil;
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5681 }
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5682
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5683 /* Send current contents of region between START and END to PROC.
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5684 If START is a string, send it instead.
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5685 This function can evaluate Lisp code and can garbage collect. */
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5686
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5687 static void
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5688 send_process_object (proc, start, end)
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5689 Lisp_Object proc, start, end;
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5690 {
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5691 int count = SPECPDL_INDEX ();
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5692 Lisp_Object object = STRINGP (start) ? start : Fcurrent_buffer ();
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5693 struct buffer *given_buffer = current_buffer;
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5694 unsigned char *buf;
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5695 int len;
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5696
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5697 record_unwind_protect (send_process_object_unwind, Fcurrent_buffer ());
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5698
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5699 if (STRINGP (object) ? STRING_MULTIBYTE (object)
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5700 : ! NILP (XBUFFER (object)->enable_multibyte_characters))
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5701 {
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5702 struct Lisp_Process *p = XPROCESS (proc);
76249
9e2414dc2556 (send_process_object): Check the process status and
Kenichi Handa <handa@m17n.org>
parents: 76088
diff changeset
5703 struct coding_system *coding;
9e2414dc2556 (send_process_object): Check the process status and
Kenichi Handa <handa@m17n.org>
parents: 76088
diff changeset
5704
9e2414dc2556 (send_process_object): Check the process status and
Kenichi Handa <handa@m17n.org>
parents: 76088
diff changeset
5705 if (p->raw_status_new)
9e2414dc2556 (send_process_object): Check the process status and
Kenichi Handa <handa@m17n.org>
parents: 76088
diff changeset
5706 update_status (p);
9e2414dc2556 (send_process_object): Check the process status and
Kenichi Handa <handa@m17n.org>
parents: 76088
diff changeset
5707 if (! EQ (p->status, Qrun))
9e2414dc2556 (send_process_object): Check the process status and
Kenichi Handa <handa@m17n.org>
parents: 76088
diff changeset
5708 error ("Process %s not running", SDATA (p->name));
9e2414dc2556 (send_process_object): Check the process status and
Kenichi Handa <handa@m17n.org>
parents: 76088
diff changeset
5709 if (XINT (p->outfd) < 0)
9e2414dc2556 (send_process_object): Check the process status and
Kenichi Handa <handa@m17n.org>
parents: 76088
diff changeset
5710 error ("Output file descriptor of %s is closed", SDATA (p->name));
9e2414dc2556 (send_process_object): Check the process status and
Kenichi Handa <handa@m17n.org>
parents: 76088
diff changeset
5711
9e2414dc2556 (send_process_object): Check the process status and
Kenichi Handa <handa@m17n.org>
parents: 76088
diff changeset
5712 coding = proc_encode_coding_system[XINT (p->outfd)];
76088
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5713 if (! EQ (coding->symbol, p->encode_coding_system))
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5714 /* The coding system for encoding was changed to raw-text
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5715 because we sent a unibyte text previously. Now we are
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5716 sending a multibyte text, thus we must encode it by the
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5717 original coding system specified for the current process. */
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5718 setup_coding_system (p->encode_coding_system, coding);
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5719 if (! NILP (coding->pre_write_conversion))
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5720 {
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5721 struct gcpro gcpro1, gcpro2;
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5722
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5723 GCPRO2 (proc, object);
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5724 call2 (coding->pre_write_conversion, start, end);
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5725 UNGCPRO;
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5726 if (given_buffer != current_buffer)
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5727 {
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5728 start = make_number (BEGV), end = make_number (ZV);
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5729 object = Fcurrent_buffer ();
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5730 }
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5731 }
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5732 }
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5733
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5734 if (BUFFERP (object))
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5735 {
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5736 EMACS_INT start_byte;
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5737
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5738 if (XINT (start) < GPT && XINT (end) > GPT)
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5739 move_gap (XINT (end));
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5740 start_byte = CHAR_TO_BYTE (XINT (start));
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5741 buf = BYTE_POS_ADDR (start_byte);
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5742 len = CHAR_TO_BYTE (XINT (end)) - start_byte;
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5743 }
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5744 else
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5745 {
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5746 buf = SDATA (object);
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5747 len = SBYTES (object);
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5748 }
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5749 send_process (proc, buf, len, object);
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5750
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5751 unbind_to (count, Qnil);
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5752 }
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5753
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5754 DEFUN ("process-send-region", Fprocess_send_region, Sprocess_send_region,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
5755 3, 3, 0,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
5756 doc: /* Send current contents of region as input to PROCESS.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
5757 PROCESS may be a process, a buffer, the name of a process or buffer, or
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
5758 nil, indicating the current buffer's process.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
5759 Called from program, takes three arguments, PROCESS, START and END.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
5760 If the region is more than 500 characters long,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
5761 it is sent in several bunches. This may happen even for shorter regions.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
5762 Output from processes can arrive in between bunches. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
5763 (process, start, end)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5764 Lisp_Object process, start, end;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5765 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5766 Lisp_Object proc;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5767
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5768 proc = get_process (process);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5769 validate_region (&start, &end);
76088
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5770 send_process_object (proc, start, end);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5771 return Qnil;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5772 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5773
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5774 DEFUN ("process-send-string", Fprocess_send_string, Sprocess_send_string,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
5775 2, 2, 0,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
5776 doc: /* Send PROCESS the contents of STRING as input.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
5777 PROCESS may be a process, a buffer, the name of a process or buffer, or
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
5778 nil, indicating the current buffer's process.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
5779 If STRING is more than 500 characters long,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
5780 it is sent in several bunches. This may happen even for shorter strings.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
5781 Output from processes can arrive in between bunches. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
5782 (process, string)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5783 Lisp_Object process, string;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5784 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5785 Lisp_Object proc;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
5786 CHECK_STRING (string);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5787 proc = get_process (process);
76088
8e93fec28139 (send_process_object_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents: 75348
diff changeset
5788 send_process_object (proc, string, Qnil);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5789 return Qnil;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5790 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5791
49903
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5792 /* Return the foreground process group for the tty/pty that
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5793 the process P uses. */
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5794 static int
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5795 emacs_get_tty_pgrp (p)
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5796 struct Lisp_Process *p;
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5797 {
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5798 int gid = -1;
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5799
55444
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
5800 #ifdef TIOCGPGRP
49903
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5801 if (ioctl (XINT (p->infd), TIOCGPGRP, &gid) == -1 && ! NILP (p->tty_name))
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5802 {
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5803 int fd;
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5804 /* Some OS:es (Solaris 8/9) does not allow TIOCGPGRP from the
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5805 master side. Try the slave side. */
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5806 fd = emacs_open (XSTRING (p->tty_name)->data, O_RDONLY, 0);
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5807
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5808 if (fd != -1)
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5809 {
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5810 ioctl (fd, TIOCGPGRP, &gid);
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5811 emacs_close (fd);
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5812 }
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5813 }
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5814 #endif /* defined (TIOCGPGRP ) */
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5815
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5816 return gid;
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5817 }
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5818
24352
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5819 DEFUN ("process-running-child-p", Fprocess_running_child_p,
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5820 Sprocess_running_child_p, 0, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
5821 doc: /* Return t if PROCESS has given the terminal to a child.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
5822 If the operating system does not make it possible to find out,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
5823 return t unconditionally. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
5824 (process)
24352
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5825 Lisp_Object process;
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5826 {
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5827 /* Initialize in case ioctl doesn't exist or gives an error,
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5828 in a way that will cause returning t. */
49903
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5829 int gid;
24352
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5830 Lisp_Object proc;
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5831 struct Lisp_Process *p;
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5832
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5833 proc = get_process (process);
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5834 p = XPROCESS (proc);
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5835
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5836 if (!EQ (p->childp, Qt))
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5837 error ("Process %s is not a subprocess",
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
5838 SDATA (p->name));
24352
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5839 if (XINT (p->infd) < 0)
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5840 error ("Process %s is not active",
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
5841 SDATA (p->name));
24352
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5842
49903
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
5843 gid = emacs_get_tty_pgrp (p);
24352
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5844
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
5845 if (gid == p->pid)
24352
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5846 return Qnil;
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5847 return Qt;
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5848 }
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5849
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5850 /* send a signal number SIGNO to PROCESS.
24352
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5851 If CURRENT_GROUP is t, that means send to the process group
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5852 that currently owns the terminal being used to communicate with PROCESS.
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5853 This is used for various commands in shell mode.
24352
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5854 If CURRENT_GROUP is lambda, that means send to the process group
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5855 that currently owns the terminal, but only if it is NOT the shell itself.
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
5856
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5857 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
5858 right away.
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
5859
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
5860 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
5861 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
5862 their uid, for which killpg would return an EPERM error. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5863
1522
19ccf004b172 * process.c: (status_convert): Declare this to return a
Jim Blandy <jimb@redhat.com>
parents: 1323
diff changeset
5864 static void
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5865 process_send_signal (process, signo, current_group, nomsg)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5866 Lisp_Object process;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5867 int signo;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5868 Lisp_Object current_group;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5869 int nomsg;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5870 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5871 Lisp_Object proc;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5872 register struct Lisp_Process *p;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5873 int gid;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5874 int no_pgrp = 0;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5875
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5876 proc = get_process (process);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5877 p = XPROCESS (proc);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5878
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5879 if (!EQ (p->childp, Qt))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5880 error ("Process %s is not a subprocess",
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
5881 SDATA (p->name));
5134
0a4e46e15304 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 4998
diff changeset
5882 if (XINT (p->infd) < 0)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5883 error ("Process %s is not active",
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
5884 SDATA (p->name));
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5885
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5886 if (NILP (p->pty_flag))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5887 current_group = Qnil;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5888
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5889 /* If we are using pgrps, get a pgrp number and make it negative. */
46411
d17e7d2c1766 (create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents: 46370
diff changeset
5890 if (NILP (current_group))
d17e7d2c1766 (create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents: 46370
diff changeset
5891 /* Send the signal to the shell's process group. */
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
5892 gid = p->pid;
46411
d17e7d2c1766 (create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents: 46370
diff changeset
5893 else
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5894 {
1594
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
5895 #ifdef SIGNALS_VIA_CHARACTERS
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5896 /* If possible, send signals to the entire pgrp
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5897 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
5898
1925
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
5899 /* 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
5900 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
5901 #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
5902 struct termios t;
56695
62660593b0a2 (process_send_signal) [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]: Clean up.
Richard M. Stallman <rms@gnu.org>
parents: 56583
diff changeset
5903 cc_t *sig_char = NULL;
62660593b0a2 (process_send_signal) [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]: Clean up.
Richard M. Stallman <rms@gnu.org>
parents: 56583
diff changeset
5904
62660593b0a2 (process_send_signal) [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]: Clean up.
Richard M. Stallman <rms@gnu.org>
parents: 56583
diff changeset
5905 tcgetattr (XINT (p->infd), &t);
1925
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
5906
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
5907 switch (signo)
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
5908 {
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
5909 case SIGINT:
56695
62660593b0a2 (process_send_signal) [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]: Clean up.
Richard M. Stallman <rms@gnu.org>
parents: 56583
diff changeset
5910 sig_char = &t.c_cc[VINTR];
62660593b0a2 (process_send_signal) [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]: Clean up.
Richard M. Stallman <rms@gnu.org>
parents: 56583
diff changeset
5911 break;
1925
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
5912
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
5913 case SIGQUIT:
56695
62660593b0a2 (process_send_signal) [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]: Clean up.
Richard M. Stallman <rms@gnu.org>
parents: 56583
diff changeset
5914 sig_char = &t.c_cc[VQUIT];
62660593b0a2 (process_send_signal) [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]: Clean up.
Richard M. Stallman <rms@gnu.org>
parents: 56583
diff changeset
5915 break;
1925
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
5916
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
5917 case SIGTSTP:
7414
33e5afbb62bf (process_send_signal): If PREFER_VSUSP, use VSUSP instead of VSWTCH.
Richard M. Stallman <rms@gnu.org>
parents: 7352
diff changeset
5918 #if defined (VSWTCH) && !defined (PREFER_VSUSP)
56695
62660593b0a2 (process_send_signal) [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]: Clean up.
Richard M. Stallman <rms@gnu.org>
parents: 56583
diff changeset
5919 sig_char = &t.c_cc[VSWTCH];
1925
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
5920 #else
56695
62660593b0a2 (process_send_signal) [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]: Clean up.
Richard M. Stallman <rms@gnu.org>
parents: 56583
diff changeset
5921 sig_char = &t.c_cc[VSUSP];
62660593b0a2 (process_send_signal) [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]: Clean up.
Richard M. Stallman <rms@gnu.org>
parents: 56583
diff changeset
5922 #endif
62660593b0a2 (process_send_signal) [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]: Clean up.
Richard M. Stallman <rms@gnu.org>
parents: 56583
diff changeset
5923 break;
1925
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
5924 }
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
5925
56713
7e315ff338bf (process_send_signal): Use CDISABLE.
Kim F. Storm <storm@cua.dk>
parents: 56701
diff changeset
5926 if (sig_char && *sig_char != CDISABLE)
56770
598599edd5ca (process_send_signal) [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]:
Richard M. Stallman <rms@gnu.org>
parents: 56728
diff changeset
5927 {
598599edd5ca (process_send_signal) [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]:
Richard M. Stallman <rms@gnu.org>
parents: 56728
diff changeset
5928 send_process (proc, sig_char, 1, Qnil);
598599edd5ca (process_send_signal) [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]:
Richard M. Stallman <rms@gnu.org>
parents: 56728
diff changeset
5929 return;
598599edd5ca (process_send_signal) [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]:
Richard M. Stallman <rms@gnu.org>
parents: 56728
diff changeset
5930 }
598599edd5ca (process_send_signal) [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]:
Richard M. Stallman <rms@gnu.org>
parents: 56728
diff changeset
5931 /* If we can't send the signal with a character,
598599edd5ca (process_send_signal) [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]:
Richard M. Stallman <rms@gnu.org>
parents: 56728
diff changeset
5932 fall through and send it another way. */
1925
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
5933 #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
5934
1594
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
5935 /* 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
5936 current control characters. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5937 #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
5938
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5939 struct tchars c;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5940 struct ltchars lc;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5941
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5942 switch (signo)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5943 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5944 case SIGINT:
5134
0a4e46e15304 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 4998
diff changeset
5945 ioctl (XINT (p->infd), TIOCGETC, &c);
8063
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5946 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
5947 return;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5948 case SIGQUIT:
5134
0a4e46e15304 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 4998
diff changeset
5949 ioctl (XINT (p->infd), TIOCGETC, &c);
8063
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5950 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
5951 return;
1012
a48ed1d416dd * process.c (process_send_signal): Don't send SIGTSTP if the
Jim Blandy <jimb@redhat.com>
parents: 849
diff changeset
5952 #ifdef SIGTSTP
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5953 case SIGTSTP:
5134
0a4e46e15304 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 4998
diff changeset
5954 ioctl (XINT (p->infd), TIOCGLTC, &lc);
8063
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5955 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
5956 return;
1594
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
5957 #endif /* ! defined (SIGTSTP) */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5958 }
1594
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
5959
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
5960 #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
5961
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
5962 /* 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
5963 characters. */
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
5964 #ifdef TCGETA
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5965 struct termio t;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5966 switch (signo)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5967 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5968 case SIGINT:
5134
0a4e46e15304 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 4998
diff changeset
5969 ioctl (XINT (p->infd), TCGETA, &t);
8063
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5970 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
5971 return;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5972 case SIGQUIT:
5134
0a4e46e15304 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 4998
diff changeset
5973 ioctl (XINT (p->infd), TCGETA, &t);
8063
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5974 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
5975 return;
1569
52a69b6a8f96 * process.c [SYSV]: Don't include <termios.h>, <termio.h>, or
Jim Blandy <jimb@redhat.com>
parents: 1522
diff changeset
5976 #ifdef SIGTSTP
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5977 case SIGTSTP:
5134
0a4e46e15304 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 4998
diff changeset
5978 ioctl (XINT (p->infd), TCGETA, &t);
8063
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
5979 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
5980 return;
1594
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
5981 #endif /* ! defined (SIGTSTP) */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5982 }
1594
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
5983 #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
5984 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
5985 /* 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
5986 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
5987 #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
5988 #endif /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
56770
598599edd5ca (process_send_signal) [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]:
Richard M. Stallman <rms@gnu.org>
parents: 56728
diff changeset
5989 /* In this case, the code above should alway returns. */
46314
7c8eab7f2bd6 (process_send_signal): Add abort call.
Richard M. Stallman <rms@gnu.org>
parents: 46293
diff changeset
5990 abort ();
56770
598599edd5ca (process_send_signal) [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]:
Richard M. Stallman <rms@gnu.org>
parents: 56728
diff changeset
5991 #endif /* ! defined HAVE_TERMIOS */
598599edd5ca (process_send_signal) [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]:
Richard M. Stallman <rms@gnu.org>
parents: 56728
diff changeset
5992
598599edd5ca (process_send_signal) [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]:
Richard M. Stallman <rms@gnu.org>
parents: 56728
diff changeset
5993 /* The code above may fall through if it can't
598599edd5ca (process_send_signal) [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]:
Richard M. Stallman <rms@gnu.org>
parents: 56728
diff changeset
5994 handle the signal. */
46314
7c8eab7f2bd6 (process_send_signal): Add abort call.
Richard M. Stallman <rms@gnu.org>
parents: 46293
diff changeset
5995 #endif /* defined (SIGNALS_VIA_CHARACTERS) */
849
c7b49118e101 entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 822
diff changeset
5996
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
5997 #ifdef TIOCGPGRP
46411
d17e7d2c1766 (create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents: 46370
diff changeset
5998 /* Get the current pgrp using the tty itself, if we have that.
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5999 Otherwise, use the pty to get the pgrp.
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6000 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
6001 "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
6002 But, TIOCGPGRP does not work on E50 ;-P works fine on E60"
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6003 His patch indicates that if TIOCGPGRP returns an error, then
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6004 we should just assume that p->pid is also the process group id. */
49903
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
6005
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
6006 gid = emacs_get_tty_pgrp (p);
55444
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
6007
49903
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
6008 if (gid == -1)
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
6009 /* If we can't get the information, assume
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
6010 the shell owns the tty. */
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6011 gid = p->pid;
46411
d17e7d2c1766 (create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents: 46370
diff changeset
6012
d17e7d2c1766 (create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents: 46370
diff changeset
6013 /* It is not clear whether anything really can set GID to -1.
d17e7d2c1766 (create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents: 46370
diff changeset
6014 Perhaps on some system one of those ioctls can or could do so.
d17e7d2c1766 (create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents: 46370
diff changeset
6015 Or perhaps this is vestigial. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6016 if (gid == -1)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6017 no_pgrp = 1;
1594
b476a97ad17e * systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents: 1569
diff changeset
6018 #else /* ! defined (TIOCGPGRP ) */
849
c7b49118e101 entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 822
diff changeset
6019 /* Can't select pgrps on this system, so we know that
c7b49118e101 entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 822
diff changeset
6020 the child itself heads the pgrp. */
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6021 gid = p->pid;
849
c7b49118e101 entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 822
diff changeset
6022 #endif /* ! defined (TIOCGPGRP ) */
24352
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
6023
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
6024 /* If current_group is lambda, and the shell owns the terminal,
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
6025 don't send any signal. */
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6026 if (EQ (current_group, Qlambda) && gid == p->pid)
24352
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
6027 return;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6028 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6029
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6030 switch (signo)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6031 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6032 #ifdef SIGCONT
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6033 case SIGCONT:
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6034 p->raw_status_new = 0;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6035 p->status = Qrun;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6036 XSETINT (p->tick, ++process_tick);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6037 if (!nomsg)
64977
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
6038 status_notify (NULL);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6039 break;
849
c7b49118e101 entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 822
diff changeset
6040 #endif /* ! defined (SIGCONT) */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6041 case SIGINT:
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6042 #ifdef VMS
8063
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
6043 send_process (proc, "\003", 1, Qnil); /* ^C */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6044 goto whoosh;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6045 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6046 case SIGQUIT:
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6047 #ifdef VMS
8063
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
6048 send_process (proc, "\031", 1, Qnil); /* ^Y */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6049 goto whoosh;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6050 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6051 case SIGKILL:
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6052 #ifdef VMS
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6053 sys$forcex (&(p->pid), 0, 1);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6054 whoosh:
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6055 #endif
5134
0a4e46e15304 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 4998
diff changeset
6056 flush_pending_output (XINT (p->infd));
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6057 break;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6058 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6059
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6060 /* If we don't have process groups, send the signal to the immediate
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6061 subprocess. That isn't really right, but it's better than any
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6062 obvious alternative. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6063 if (no_pgrp)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6064 {
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6065 kill (p->pid, signo);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6066 return;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6067 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6068
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6069 /* gid may be a pid, or minus a pgrp's number */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6070 #ifdef TIOCSIGSEND
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6071 if (!NILP (current_group))
49903
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
6072 {
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
6073 if (ioctl (XINT (p->infd), TIOCSIGSEND, signo) == -1)
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
6074 EMACS_KILLPG (gid, signo);
6dc5bfe9589b Removed subtty, workaround for when TIOCSIGSEND fails.
Jan Djärv <jan.h.d@swipnet.se>
parents: 49894
diff changeset
6075 }
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6076 else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6077 {
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6078 gid = - p->pid;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6079 kill (gid, signo);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6080 }
849
c7b49118e101 entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 822
diff changeset
6081 #else /* ! defined (TIOCSIGSEND) */
46411
d17e7d2c1766 (create_process): Test USG_SUBTTY_WORKS.
Richard M. Stallman <rms@gnu.org>
parents: 46370
diff changeset
6082 EMACS_KILLPG (gid, signo);
849
c7b49118e101 entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 822
diff changeset
6083 #endif /* ! defined (TIOCSIGSEND) */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6084 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6085
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6086 DEFUN ("interrupt-process", Finterrupt_process, Sinterrupt_process, 0, 2, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6087 doc: /* Interrupt process PROCESS.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6088 PROCESS may be a process, a buffer, or the name of a process or buffer.
55444
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
6089 No arg or nil means current buffer's process.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6090 Second arg CURRENT-GROUP non-nil means send signal to
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6091 the current process-group of the process's controlling terminal
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6092 rather than to the process's own process group.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6093 If the process is a shell, this means interrupt current subjob
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6094 rather than the shell.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6095
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6096 If CURRENT-GROUP is `lambda', and if the shell owns the terminal,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6097 don't send the signal. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6098 (process, current_group)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6099 Lisp_Object process, current_group;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6100 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6101 process_send_signal (process, SIGINT, current_group, 0);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6102 return process;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6103 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6104
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6105 DEFUN ("kill-process", Fkill_process, Skill_process, 0, 2, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6106 doc: /* Kill process PROCESS. May be process or name of one.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6107 See function `interrupt-process' for more details on usage. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6108 (process, current_group)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6109 Lisp_Object process, current_group;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6110 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6111 process_send_signal (process, SIGKILL, current_group, 0);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6112 return process;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6113 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6114
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6115 DEFUN ("quit-process", Fquit_process, Squit_process, 0, 2, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6116 doc: /* Send QUIT signal to process PROCESS. May be process or name of one.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6117 See function `interrupt-process' for more details on usage. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6118 (process, current_group)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6119 Lisp_Object process, current_group;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6120 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6121 process_send_signal (process, SIGQUIT, current_group, 0);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6122 return process;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6123 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6124
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6125 DEFUN ("stop-process", Fstop_process, Sstop_process, 0, 2, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6126 doc: /* Stop process PROCESS. May be process or name of one.
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
6127 See function `interrupt-process' for more details on usage.
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6128 If PROCESS is a network process, inhibit handling of incoming traffic. */)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6129 (process, current_group)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6130 Lisp_Object process, current_group;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6131 {
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6132 #ifdef HAVE_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6133 if (PROCESSP (process) && NETCONN_P (process))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6134 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6135 struct Lisp_Process *p;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
6136
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6137 p = XPROCESS (process);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6138 if (NILP (p->command)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6139 && XINT (p->infd) >= 0)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6140 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6141 FD_CLR (XINT (p->infd), &input_wait_mask);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6142 FD_CLR (XINT (p->infd), &non_keyboard_wait_mask);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6143 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6144 p->command = Qt;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6145 return process;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6146 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6147 #endif
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6148 #ifndef SIGTSTP
63701
9ef43e35d417 (Fstop_process, Fcontinue_process): Follow error conventions.
Juanma Barranquero <lekktu@gmail.com>
parents: 63615
diff changeset
6149 error ("No SIGTSTP support");
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6150 #else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6151 process_send_signal (process, SIGTSTP, current_group, 0);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6152 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6153 return process;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6154 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6155
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6156 DEFUN ("continue-process", Fcontinue_process, Scontinue_process, 0, 2, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6157 doc: /* Continue process PROCESS. May be process or name of one.
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
6158 See function `interrupt-process' for more details on usage.
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6159 If PROCESS is a network process, resume handling of incoming traffic. */)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6160 (process, current_group)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6161 Lisp_Object process, current_group;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6162 {
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6163 #ifdef HAVE_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6164 if (PROCESSP (process) && NETCONN_P (process))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6165 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6166 struct Lisp_Process *p;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6167
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6168 p = XPROCESS (process);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6169 if (EQ (p->command, Qt)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6170 && XINT (p->infd) >= 0
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6171 && (!EQ (p->filter, Qt) || EQ (p->status, Qlisten)))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6172 {
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6173 FD_SET (XINT (p->infd), &input_wait_mask);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6174 FD_SET (XINT (p->infd), &non_keyboard_wait_mask);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6175 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6176 p->command = Qnil;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6177 return process;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6178 }
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6179 #endif
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6180 #ifdef SIGCONT
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6181 process_send_signal (process, SIGCONT, current_group, 0);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6182 #else
63701
9ef43e35d417 (Fstop_process, Fcontinue_process): Follow error conventions.
Juanma Barranquero <lekktu@gmail.com>
parents: 63615
diff changeset
6183 error ("No SIGCONT support");
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6184 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6185 return process;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6186 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6187
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6188 DEFUN ("signal-process", Fsignal_process, Ssignal_process,
48053
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6189 2, 2, "sProcess (name or number): \nnSignal code: ",
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6190 doc: /* Send PROCESS the signal with code SIGCODE.
74540
b33acab48a40 (Fsignal_process): Doc fix. Use XFLOAT_DATA to extract the process ID from
Eli Zaretskii <eliz@gnu.org>
parents: 74468
diff changeset
6191 PROCESS may also be a number specifying the process id of the
48053
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6192 process to signal; in this case, the process need not be a child of
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6193 this Emacs.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6194 SIGCODE may be an integer, or a symbol whose name is a signal name. */)
48053
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6195 (process, sigcode)
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6196 Lisp_Object process, sigcode;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6197 {
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6198 pid_t pid;
48053
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6199
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6200 if (INTEGERP (process))
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6201 {
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6202 pid = XINT (process);
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6203 goto got_it;
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6204 }
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6205
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6206 if (FLOATP (process))
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6207 {
74540
b33acab48a40 (Fsignal_process): Doc fix. Use XFLOAT_DATA to extract the process ID from
Eli Zaretskii <eliz@gnu.org>
parents: 74468
diff changeset
6208 pid = (pid_t) XFLOAT_DATA (process);
48053
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6209 goto got_it;
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6210 }
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6211
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6212 if (STRINGP (process))
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6213 {
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6214 Lisp_Object tem;
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6215 if (tem = Fget_process (process), NILP (tem))
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6216 {
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6217 pid = XINT (Fstring_to_number (process, make_number (10)));
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6218 if (pid > 0)
48053
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6219 goto got_it;
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6220 }
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6221 process = tem;
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6222 }
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6223 else
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6224 process = get_process (process);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
6225
48053
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6226 if (NILP (process))
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6227 return process;
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6228
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6229 CHECK_PROCESS (process);
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6230 pid = XPROCESS (process)->pid;
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6231 if (pid <= 0)
48053
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6232 error ("Cannot signal process %s", SDATA (XPROCESS (process)->name));
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6233
f840e449c328 (Fsignal_process): Allow PROCESS to be specified by
Kim F. Storm <storm@cua.dk>
parents: 47987
diff changeset
6234 got_it:
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6235
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6236 #define parse_signal(NAME, VALUE) \
74468
7714fd14ce36 (parse_signal): Use xstricmp instead of strcasecmp.
Kim F. Storm <storm@cua.dk>
parents: 74420
diff changeset
6237 else if (!xstricmp (name, NAME)) \
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6238 XSETINT (sigcode, VALUE)
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6239
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6240 if (INTEGERP (sigcode))
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6241 ;
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6242 else
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6243 {
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6244 unsigned char *name;
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6245
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40641
diff changeset
6246 CHECK_SYMBOL (sigcode);
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
6247 name = SDATA (SYMBOL_NAME (sigcode));
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6248
74468
7714fd14ce36 (parse_signal): Use xstricmp instead of strcasecmp.
Kim F. Storm <storm@cua.dk>
parents: 74420
diff changeset
6249 if (!strncmp(name, "SIG", 3) || !strncmp(name, "sig", 3))
66752
715b819a0ad8 (Fsignal_process): Recognize signal names with and
Kim F. Storm <storm@cua.dk>
parents: 65764
diff changeset
6250 name += 3;
715b819a0ad8 (Fsignal_process): Recognize signal names with and
Kim F. Storm <storm@cua.dk>
parents: 65764
diff changeset
6251
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6252 if (0)
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6253 ;
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6254 #ifdef SIGUSR1
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6255 parse_signal ("usr1", SIGUSR1);
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6256 #endif
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6257 #ifdef SIGUSR2
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6258 parse_signal ("usr2", SIGUSR2);
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6259 #endif
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6260 #ifdef SIGTERM
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6261 parse_signal ("term", SIGTERM);
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6262 #endif
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6263 #ifdef SIGHUP
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6264 parse_signal ("hup", SIGHUP);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6265 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6266 #ifdef SIGINT
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6267 parse_signal ("int", SIGINT);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6268 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6269 #ifdef SIGQUIT
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6270 parse_signal ("quit", SIGQUIT);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6271 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6272 #ifdef SIGILL
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6273 parse_signal ("ill", SIGILL);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6274 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6275 #ifdef SIGABRT
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6276 parse_signal ("abrt", SIGABRT);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6277 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6278 #ifdef SIGEMT
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6279 parse_signal ("emt", SIGEMT);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6280 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6281 #ifdef SIGKILL
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6282 parse_signal ("kill", SIGKILL);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6283 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6284 #ifdef SIGFPE
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6285 parse_signal ("fpe", SIGFPE);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6286 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6287 #ifdef SIGBUS
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6288 parse_signal ("bus", SIGBUS);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6289 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6290 #ifdef SIGSEGV
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6291 parse_signal ("segv", SIGSEGV);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6292 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6293 #ifdef SIGSYS
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6294 parse_signal ("sys", SIGSYS);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6295 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6296 #ifdef SIGPIPE
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6297 parse_signal ("pipe", SIGPIPE);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6298 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6299 #ifdef SIGALRM
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6300 parse_signal ("alrm", SIGALRM);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6301 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6302 #ifdef SIGURG
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6303 parse_signal ("urg", SIGURG);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6304 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6305 #ifdef SIGSTOP
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6306 parse_signal ("stop", SIGSTOP);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6307 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6308 #ifdef SIGTSTP
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6309 parse_signal ("tstp", SIGTSTP);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6310 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6311 #ifdef SIGCONT
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6312 parse_signal ("cont", SIGCONT);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6313 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6314 #ifdef SIGCHLD
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6315 parse_signal ("chld", SIGCHLD);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6316 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6317 #ifdef SIGTTIN
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6318 parse_signal ("ttin", SIGTTIN);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6319 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6320 #ifdef SIGTTOU
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6321 parse_signal ("ttou", SIGTTOU);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6322 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6323 #ifdef SIGIO
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6324 parse_signal ("io", SIGIO);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6325 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6326 #ifdef SIGXCPU
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6327 parse_signal ("xcpu", SIGXCPU);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6328 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6329 #ifdef SIGXFSZ
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6330 parse_signal ("xfsz", SIGXFSZ);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6331 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6332 #ifdef SIGVTALRM
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6333 parse_signal ("vtalrm", SIGVTALRM);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6334 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6335 #ifdef SIGPROF
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6336 parse_signal ("prof", SIGPROF);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6337 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6338 #ifdef SIGWINCH
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6339 parse_signal ("winch", SIGWINCH);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6340 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6341 #ifdef SIGINFO
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6342 parse_signal ("info", SIGINFO);
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6343 #endif
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6344 else
11148
117b32676686 (Fsignal_process): SIGCODE is a symbol, not a string.
Karl Heuer <kwzh@gnu.org>
parents: 11144
diff changeset
6345 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
6346 }
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6347
74420
7f2e7cb6b161 (parse_signal): Rename macro from handle_signal.
Kim F. Storm <storm@cua.dk>
parents: 74406
diff changeset
6348 #undef parse_signal
11144
c2b689aeb934 (Fsignal_process): Allow signal names as well as numbers.
Richard M. Stallman <rms@gnu.org>
parents: 10914
diff changeset
6349
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6350 return make_number (kill (pid, XINT (sigcode)));
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6351 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6352
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6353 DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6354 doc: /* Make PROCESS see end-of-file in its input.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6355 EOF comes after any text already sent to it.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6356 PROCESS may be a process, a buffer, the name of a process or buffer, or
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6357 nil, indicating the current buffer's process.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6358 If PROCESS is a network connection, or is a process communicating
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6359 through a pipe (as opposed to a pty), then you cannot send any more
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6360 text to PROCESS after you call this function. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6361 (process)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6362 Lisp_Object process;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6363 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6364 Lisp_Object proc;
23879
18e5d1cfa74b (read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents: 23762
diff changeset
6365 struct coding_system *coding;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6366
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6367 if (DATAGRAM_CONN_P (process))
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6368 return process;
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6369
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6370 proc = get_process (process);
23879
18e5d1cfa74b (read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents: 23762
diff changeset
6371 coding = proc_encode_coding_system[XINT (XPROCESS (proc)->outfd)];
2221
7edc78402205 (Fprocess_send_eof): Make sure proc is running.
Richard M. Stallman <rms@gnu.org>
parents: 2200
diff changeset
6372
7edc78402205 (Fprocess_send_eof): Make sure proc is running.
Richard M. Stallman <rms@gnu.org>
parents: 2200
diff changeset
6373 /* Make sure the process is really alive. */
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6374 if (XPROCESS (proc)->raw_status_new)
2221
7edc78402205 (Fprocess_send_eof): Make sure proc is running.
Richard M. Stallman <rms@gnu.org>
parents: 2200
diff changeset
6375 update_status (XPROCESS (proc));
7edc78402205 (Fprocess_send_eof): Make sure proc is running.
Richard M. Stallman <rms@gnu.org>
parents: 2200
diff changeset
6376 if (! EQ (XPROCESS (proc)->status, Qrun))
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
6377 error ("Process %s not running", SDATA (XPROCESS (proc)->name));
2221
7edc78402205 (Fprocess_send_eof): Make sure proc is running.
Richard M. Stallman <rms@gnu.org>
parents: 2200
diff changeset
6378
23879
18e5d1cfa74b (read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents: 23762
diff changeset
6379 if (CODING_REQUIRE_FLUSHING (coding))
18e5d1cfa74b (read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents: 23762
diff changeset
6380 {
18e5d1cfa74b (read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents: 23762
diff changeset
6381 coding->mode |= CODING_MODE_LAST_BLOCK;
18e5d1cfa74b (read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents: 23762
diff changeset
6382 send_process (proc, "", 0, Qnil);
18e5d1cfa74b (read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents: 23762
diff changeset
6383 }
18e5d1cfa74b (read_process_output): If NBYTES is zero and
Kenichi Handa <handa@m17n.org>
parents: 23762
diff changeset
6384
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6385 #ifdef VMS
8063
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
6386 send_process (proc, "\032", 1, Qnil); /* ^z */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6387 #else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6388 if (!NILP (XPROCESS (proc)->pty_flag))
8063
30861f2f4f84 (send_process): Major rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 7937
diff changeset
6389 send_process (proc, "\004", 1, Qnil);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6390 else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6391 {
22939
572895549f80 (Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents: 22864
diff changeset
6392 int old_outfd, new_outfd;
572895549f80 (Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents: 22864
diff changeset
6393
18329
ddaafa596bf5 (Fprocess_send_eof): Prooperly conditionalize prev. change.
Richard M. Stallman <rms@gnu.org>
parents: 18328
diff changeset
6394 #ifdef HAVE_SHUTDOWN
18328
0295bbed3c39 (Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents: 18292
diff changeset
6395 /* If this is a network connection, or socketpair is used
0295bbed3c39 (Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents: 18292
diff changeset
6396 for communication with the subprocess, call shutdown to cause EOF.
0295bbed3c39 (Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents: 18292
diff changeset
6397 (In some old system, shutdown to socketpair doesn't work.
0295bbed3c39 (Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents: 18292
diff changeset
6398 Then we just can't win.) */
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6399 if (XPROCESS (proc)->pid == 0
18328
0295bbed3c39 (Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents: 18292
diff changeset
6400 || XINT (XPROCESS (proc)->outfd) == XINT (XPROCESS (proc)->infd))
0295bbed3c39 (Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents: 18292
diff changeset
6401 shutdown (XINT (XPROCESS (proc)->outfd), 1);
0295bbed3c39 (Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents: 18292
diff changeset
6402 /* In case of socketpair, outfd == infd, so don't close it. */
0295bbed3c39 (Fprocess_send_eof): Use shutdown, if it's a socket.
Richard M. Stallman <rms@gnu.org>
parents: 18292
diff changeset
6403 if (XINT (XPROCESS (proc)->outfd) != XINT (XPROCESS (proc)->infd))
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
6404 emacs_close (XINT (XPROCESS (proc)->outfd));
18329
ddaafa596bf5 (Fprocess_send_eof): Prooperly conditionalize prev. change.
Richard M. Stallman <rms@gnu.org>
parents: 18328
diff changeset
6405 #else /* not HAVE_SHUTDOWN */
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
6406 emacs_close (XINT (XPROCESS (proc)->outfd));
18329
ddaafa596bf5 (Fprocess_send_eof): Prooperly conditionalize prev. change.
Richard M. Stallman <rms@gnu.org>
parents: 18328
diff changeset
6407 #endif /* not HAVE_SHUTDOWN */
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
6408 new_outfd = emacs_open (NULL_DEVICE, O_WRONLY, 0);
69974
2ecef706d823 (Fprocess_send_eof): Abort if fail to open null device.
Richard M. Stallman <rms@gnu.org>
parents: 69973
diff changeset
6409 if (new_outfd < 0)
2ecef706d823 (Fprocess_send_eof): Abort if fail to open null device.
Richard M. Stallman <rms@gnu.org>
parents: 69973
diff changeset
6410 abort ();
22939
572895549f80 (Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents: 22864
diff changeset
6411 old_outfd = XINT (XPROCESS (proc)->outfd);
572895549f80 (Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents: 22864
diff changeset
6412
572895549f80 (Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents: 22864
diff changeset
6413 if (!proc_encode_coding_system[new_outfd])
572895549f80 (Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents: 22864
diff changeset
6414 proc_encode_coding_system[new_outfd]
572895549f80 (Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents: 22864
diff changeset
6415 = (struct coding_system *) xmalloc (sizeof (struct coding_system));
572895549f80 (Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents: 22864
diff changeset
6416 bcopy (proc_encode_coding_system[old_outfd],
572895549f80 (Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents: 22864
diff changeset
6417 proc_encode_coding_system[new_outfd],
572895549f80 (Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents: 22864
diff changeset
6418 sizeof (struct coding_system));
572895549f80 (Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents: 22864
diff changeset
6419 bzero (proc_encode_coding_system[old_outfd],
572895549f80 (Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents: 22864
diff changeset
6420 sizeof (struct coding_system));
572895549f80 (Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents: 22864
diff changeset
6421
572895549f80 (Fprocess_send_eof): Transfer proc_encode_coding_system
Richard M. Stallman <rms@gnu.org>
parents: 22864
diff changeset
6422 XSETINT (XPROCESS (proc)->outfd, new_outfd);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6423 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6424 #endif /* VMS */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6425 return process;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6426 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6427
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6428 /* Kill all processes associated with `buffer'.
39361
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6429 If `buffer' is nil, kill all processes */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6430
20382
dbad9367d232 (create_process, deactivate_process, close_process_descs):
Andreas Schwab <schwab@suse.de>
parents: 20225
diff changeset
6431 void
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6432 kill_buffer_processes (buffer)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6433 Lisp_Object buffer;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6434 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6435 Lisp_Object tail, proc;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6436
25645
a14111a2a100 Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25356
diff changeset
6437 for (tail = Vprocess_alist; GC_CONSP (tail); tail = XCDR (tail))
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6438 {
25645
a14111a2a100 Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25356
diff changeset
6439 proc = XCDR (XCAR (tail));
9952
9daedd94a204 (NETCONN_P, kill_buffer_processes): Use the new type-test macros.
Karl Heuer <kwzh@gnu.org>
parents: 9882
diff changeset
6440 if (GC_PROCESSP (proc)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6441 && (NILP (buffer) || EQ (XPROCESS (proc)->buffer, buffer)))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6442 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6443 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
6444 Fdelete_process (proc);
5134
0a4e46e15304 (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 4998
diff changeset
6445 else if (XINT (XPROCESS (proc)->infd) >= 0)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6446 process_send_signal (proc, SIGHUP, Qnil, 1);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6447 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6448 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6449 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6450
39361
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6451 /* On receipt of a signal that a child status has changed, loop asking
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6452 about children with changed statuses until the system says there
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6453 are no more.
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
6454
39361
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6455 All we do is change the status; we do not run sentinels or print
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6456 notifications. That is saved for the next time keyboard input is
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6457 done, in order to avoid timing errors.
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6458
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6459 ** WARNING: this can be called during garbage collection.
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6460 Therefore, it must not be fooled by the presence of mark bits in
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6461 Lisp objects.
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6462
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6463 ** USG WARNING: Although it is not obvious from the documentation
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6464 in signal(2), on a USG system the SIGCLD handler MUST NOT call
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6465 signal() before executing at least one wait(), otherwise the
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6466 handler will be called again, resulting in an infinite loop. The
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6467 relevant portion of the documentation reads "SIGCLD signals will be
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6468 queued and the signal-catching function will be continually
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6469 reentered until the queue is empty". Invoking signal() causes the
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6470 kernel to reexamine the SIGCLD queue. Fred Fish, UniSoft Systems
53732
0341435e76ce * process.c (sigchld_handler): Add comment about not calling malloc
Jan Djärv <jan.h.d@swipnet.se>
parents: 53713
diff changeset
6471 Inc.
0341435e76ce * process.c (sigchld_handler): Add comment about not calling malloc
Jan Djärv <jan.h.d@swipnet.se>
parents: 53713
diff changeset
6472
0341435e76ce * process.c (sigchld_handler): Add comment about not calling malloc
Jan Djärv <jan.h.d@swipnet.se>
parents: 53713
diff changeset
6473 ** Malloc WARNING: This should never call malloc either directly or
0341435e76ce * process.c (sigchld_handler): Add comment about not calling malloc
Jan Djärv <jan.h.d@swipnet.se>
parents: 53713
diff changeset
6474 indirectly; if it does, that is a bug */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6475
71140
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
6476 #ifdef SIGCHLD
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6477 SIGTYPE
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6478 sigchld_handler (signo)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6479 int signo;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6480 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6481 int old_errno = errno;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6482 Lisp_Object proc;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6483 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
6484 extern EMACS_TIME *input_available_clear_time;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6485
58986
59945307b86b * syssignal.h: Declare main_thread.
Jan Djärv <jan.h.d@swipnet.se>
parents: 58082
diff changeset
6486 SIGNAL_THREAD_CHECK (signo);
59945307b86b * syssignal.h: Declare main_thread.
Jan Djärv <jan.h.d@swipnet.se>
parents: 58082
diff changeset
6487
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6488 #ifdef BSD4_1
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6489 extern int sigheld;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6490 sigheld |= sigbit (SIGCHLD);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6491 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6492
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6493 while (1)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6494 {
76493
e5e12c57c640 (sigchld_handler): Change type of pid to pid_t. Scan deleted_pid_list
Chong Yidong <cyd@stupidchicken.com>
parents: 76462
diff changeset
6495 pid_t pid;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6496 WAITTYPE w;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6497 Lisp_Object tail;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6498
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6499 #ifdef WNOHANG
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6500 #ifndef WUNTRACED
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6501 #define WUNTRACED 0
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6502 #endif /* no WUNTRACED */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6503 /* Keep trying to get a status until we get a definitive result. */
76718
217f3f19f471 revert the last patch to the original fix: sleep BEFORE the first wait
Sam Steingold <sds@gnu.org>
parents: 76626
diff changeset
6504 do
217f3f19f471 revert the last patch to the original fix: sleep BEFORE the first wait
Sam Steingold <sds@gnu.org>
parents: 76626
diff changeset
6505 {
217f3f19f471 revert the last patch to the original fix: sleep BEFORE the first wait
Sam Steingold <sds@gnu.org>
parents: 76626
diff changeset
6506 /* For some reason, this sleep() prevents Emacs from sending
217f3f19f471 revert the last patch to the original fix: sleep BEFORE the first wait
Sam Steingold <sds@gnu.org>
parents: 76626
diff changeset
6507 loadavg to 5-8(!) for ~10 seconds.
217f3f19f471 revert the last patch to the original fix: sleep BEFORE the first wait
Sam Steingold <sds@gnu.org>
parents: 76626
diff changeset
6508 See http://thread.gmane.org/gmane.emacs.devel/67722 or
217f3f19f471 revert the last patch to the original fix: sleep BEFORE the first wait
Sam Steingold <sds@gnu.org>
parents: 76626
diff changeset
6509 http://www.google.com/search?q=busyloop+in+sigchld_handler */
217f3f19f471 revert the last patch to the original fix: sleep BEFORE the first wait
Sam Steingold <sds@gnu.org>
parents: 76626
diff changeset
6510 sleep (1);
76494
f0a25b5d3ba0 (Fdelete_process): Properly handle deletion of first element of
Chong Yidong <cyd@stupidchicken.com>
parents: 76493
diff changeset
6511 errno = 0;
f0a25b5d3ba0 (Fdelete_process): Properly handle deletion of first element of
Chong Yidong <cyd@stupidchicken.com>
parents: 76493
diff changeset
6512 pid = wait3 (&w, WNOHANG | WUNTRACED, 0);
f0a25b5d3ba0 (Fdelete_process): Properly handle deletion of first element of
Chong Yidong <cyd@stupidchicken.com>
parents: 76493
diff changeset
6513 }
76718
217f3f19f471 revert the last patch to the original fix: sleep BEFORE the first wait
Sam Steingold <sds@gnu.org>
parents: 76626
diff changeset
6514 while (pid < 0 && errno == EINTR);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6515
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6516 if (pid <= 0)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6517 {
39361
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6518 /* PID == 0 means no processes found, PID == -1 means a real
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6519 failure. We have done all our job, so return. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6520
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6521 /* USG systems forget handlers when they are used;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6522 must reestablish each time */
16116
80a67b8f39e9 (create_process_1, sigchld_handler) [POSIX_SIGNALS]:
Richard M. Stallman <rms@gnu.org>
parents: 16076
diff changeset
6523 #if defined (USG) && !defined (POSIX_SIGNALS)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6524 signal (signo, sigchld_handler); /* WARNING - must come after wait3() */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6525 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6526 #ifdef BSD4_1
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6527 sigheld &= ~sigbit (SIGCHLD);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6528 sigrelse (SIGCHLD);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6529 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6530 errno = old_errno;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6531 return;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6532 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6533 #else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6534 pid = wait (&w);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6535 #endif /* no WNOHANG */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6536
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6537 /* Find the process that signaled us, and record its status. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6538
71140
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
6539 /* The process can have been deleted by Fdelete_process. */
76493
e5e12c57c640 (sigchld_handler): Change type of pid to pid_t. Scan deleted_pid_list
Chong Yidong <cyd@stupidchicken.com>
parents: 76462
diff changeset
6540 for (tail = deleted_pid_list; GC_CONSP (tail); tail = XCDR (tail))
71140
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
6541 {
76493
e5e12c57c640 (sigchld_handler): Change type of pid to pid_t. Scan deleted_pid_list
Chong Yidong <cyd@stupidchicken.com>
parents: 76462
diff changeset
6542 Lisp_Object xpid = XCAR (tail);
e5e12c57c640 (sigchld_handler): Change type of pid to pid_t. Scan deleted_pid_list
Chong Yidong <cyd@stupidchicken.com>
parents: 76462
diff changeset
6543 if ((GC_INTEGERP (xpid) && pid == (pid_t) XINT (xpid))
e5e12c57c640 (sigchld_handler): Change type of pid to pid_t. Scan deleted_pid_list
Chong Yidong <cyd@stupidchicken.com>
parents: 76462
diff changeset
6544 || (GC_FLOATP (xpid) && pid == (pid_t) XFLOAT_DATA (xpid)))
e5e12c57c640 (sigchld_handler): Change type of pid to pid_t. Scan deleted_pid_list
Chong Yidong <cyd@stupidchicken.com>
parents: 76462
diff changeset
6545 {
e5e12c57c640 (sigchld_handler): Change type of pid to pid_t. Scan deleted_pid_list
Chong Yidong <cyd@stupidchicken.com>
parents: 76462
diff changeset
6546 XSETCAR (tail, Qnil);
e5e12c57c640 (sigchld_handler): Change type of pid to pid_t. Scan deleted_pid_list
Chong Yidong <cyd@stupidchicken.com>
parents: 76462
diff changeset
6547 goto sigchld_end_of_loop;
e5e12c57c640 (sigchld_handler): Change type of pid to pid_t. Scan deleted_pid_list
Chong Yidong <cyd@stupidchicken.com>
parents: 76462
diff changeset
6548 }
71140
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
6549 }
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
6550
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
6551 /* Otherwise, if it is asynchronous, it is in Vprocess_alist. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6552 p = 0;
39361
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6553 for (tail = Vprocess_alist; GC_CONSP (tail); tail = XCDR (tail))
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6554 {
25645
a14111a2a100 Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25356
diff changeset
6555 proc = XCDR (XCAR (tail));
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6556 p = XPROCESS (proc);
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6557 if (GC_EQ (p->childp, Qt) && p->pid == pid)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6558 break;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6559 p = 0;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6560 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6561
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6562 /* Look for an asynchronous process whose pid hasn't been filled
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6563 in yet. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6564 if (p == 0)
39361
2d3bee6a3848 (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
Gerd Moellmann <gerd@gnu.org>
parents: 37758
diff changeset
6565 for (tail = Vprocess_alist; GC_CONSP (tail); tail = XCDR (tail))
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6566 {
25645
a14111a2a100 Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25356
diff changeset
6567 proc = XCDR (XCAR (tail));
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6568 p = XPROCESS (proc);
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6569 if (p->pid == -1)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6570 break;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6571 p = 0;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6572 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
6573
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6574 /* Change the status of the process that was found. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6575 if (p != 0)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6576 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6577 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
6578 int clear_desc_flag = 0;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
6579
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6580 XSETINT (p->tick, ++process_tick);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6581 u.wt = w;
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6582 p->raw_status = u.i;
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6583 p->raw_status_new = 1;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
6584
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6585 /* 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
6586 if ((WIFSIGNALED (w) || WIFEXITED (w))
28267fcc61be Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents: 9705
diff changeset
6587 && XINT (p->infd) >= 0)
28267fcc61be Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents: 9705
diff changeset
6588 clear_desc_flag = 1;
28267fcc61be Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents: 9705
diff changeset
6589
28267fcc61be Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents: 9705
diff changeset
6590 /* 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
6591 if (clear_desc_flag)
28267fcc61be Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents: 9705
diff changeset
6592 {
28267fcc61be Use macros IS_ANY_SEP, IS_DIRECTORY_SEP,
Richard M. Stallman <rms@gnu.org>
parents: 9705
diff changeset
6593 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
6594 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
6595 }
1925
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
6596
56728
1686b397ef16 (wait_reading_process_output): Rename from
Kim F. Storm <storm@cua.dk>
parents: 56716
diff changeset
6597 /* Tell wait_reading_process_output that it needs to wake up and
1925
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
6598 look around. */
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
6599 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
6600 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6601 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6602
71140
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
6603 /* There was no asynchronous process found for that pid: we have
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
6604 a synchronous process. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6605 else
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6606 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6607 synch_process_alive = 0;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6608
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6609 /* Report the status of the synchronous process. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6610 if (WIFEXITED (w))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6611 synch_process_retcode = WRETCODE (w);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6612 else if (WIFSIGNALED (w))
53713
e069e543fd28 (sigchld_handler): Set synch_process_termsig
Jan Djärv <jan.h.d@swipnet.se>
parents: 53659
diff changeset
6613 synch_process_termsig = WTERMSIG (w);
1925
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
6614
56728
1686b397ef16 (wait_reading_process_output): Rename from
Kim F. Storm <storm@cua.dk>
parents: 56716
diff changeset
6615 /* Tell wait_reading_process_output that it needs to wake up and
1925
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
6616 look around. */
3ddb163a9201 * process.c: Make sure we don't miss processes exiting, by having
Jim Blandy <jimb@redhat.com>
parents: 1886
diff changeset
6617 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
6618 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6619 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6620
71140
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
6621 sigchld_end_of_loop:
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
6622 ;
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
6623
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6624 /* On some systems, we must return right away.
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6625 If any more processes want to signal us, we will
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6626 get another signal.
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6627 Otherwise (on systems that have WNOHANG), loop around
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6628 to use up all the processes that have something to tell us. */
39406
9dd4ad9bc53e (sigchld_handler) [LINUX]: Don't return from
Gerd Moellmann <gerd@gnu.org>
parents: 39361
diff changeset
6629 #if (defined WINDOWSNT \
41969
e669966d496e Test GNU_LINUX, not LINUX.
Richard M. Stallman <rms@gnu.org>
parents: 41856
diff changeset
6630 || (defined USG && !defined GNU_LINUX \
39406
9dd4ad9bc53e (sigchld_handler) [LINUX]: Don't return from
Gerd Moellmann <gerd@gnu.org>
parents: 39361
diff changeset
6631 && !(defined HPUX && defined WNOHANG)))
16116
80a67b8f39e9 (create_process_1, sigchld_handler) [POSIX_SIGNALS]:
Richard M. Stallman <rms@gnu.org>
parents: 16076
diff changeset
6632 #if defined (USG) && ! defined (POSIX_SIGNALS)
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6633 signal (signo, sigchld_handler);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6634 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6635 errno = old_errno;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6636 return;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6637 #endif /* USG, but not HPUX with WNOHANG */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6638 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6639 }
71140
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
6640 #endif /* SIGCHLD */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6641
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6642
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6643 static Lisp_Object
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6644 exec_sentinel_unwind (data)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6645 Lisp_Object data;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6646 {
25645
a14111a2a100 Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25356
diff changeset
6647 XPROCESS (XCAR (data))->sentinel = XCDR (data);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6648 return Qnil;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6649 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6650
9030
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
6651 static Lisp_Object
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
6652 exec_sentinel_error_handler (error)
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
6653 Lisp_Object error;
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
6654 {
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
6655 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
6656 Vinhibit_quit = Qt;
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
6657 update_echo_area ();
11277
d4547e4b0aab (read_process_output_error_handler)
Richard M. Stallman <rms@gnu.org>
parents: 11235
diff changeset
6658 Fsleep_for (make_number (2), Qnil);
27558
f99efd14b932 (Fstart_process): Doc fix.
Dave Love <fx@gnu.org>
parents: 27430
diff changeset
6659 return Qt;
9030
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
6660 }
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
6661
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6662 static void
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6663 exec_sentinel (proc, reason)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6664 Lisp_Object proc, reason;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6665 {
10914
413d44c0bd41 (exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents: 10744
diff changeset
6666 Lisp_Object sentinel, obuffer, odeactivate, okeymap;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6667 register struct Lisp_Process *p = XPROCESS (proc);
46293
1fb8f75062c6 Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents: 45410
diff changeset
6668 int count = SPECPDL_INDEX ();
16644
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
6669 int outer_running_asynch_code = running_asynch_code;
23460
94f4ba741f22 (exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents: 23405
diff changeset
6670 int waiting = waiting_for_user_input_p;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6671
72727
5f2a73453aa3 (inhibit_sentinels): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 72277
diff changeset
6672 if (inhibit_sentinels)
5f2a73453aa3 (inhibit_sentinels): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 72277
diff changeset
6673 return;
5f2a73453aa3 (inhibit_sentinels): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 72277
diff changeset
6674
10914
413d44c0bd41 (exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents: 10744
diff changeset
6675 /* 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
6676 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
6677 odeactivate = Vdeactivate_mark;
10914
413d44c0bd41 (exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents: 10744
diff changeset
6678 XSETBUFFER (obuffer, current_buffer);
413d44c0bd41 (exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents: 10744
diff changeset
6679 okeymap = current_buffer->keymap;
413d44c0bd41 (exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents: 10744
diff changeset
6680
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6681 sentinel = p->sentinel;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6682 if (NILP (sentinel))
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6683 return;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6684
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6685 /* Zilch the sentinel while it's running, to avoid recursive invocations;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6686 assure that it gets restored no matter how the sentinel exits. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6687 p->sentinel = Qnil;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6688 record_unwind_protect (exec_sentinel_unwind, Fcons (proc, sentinel));
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6689 /* Inhibit quit so that random quits don't screw up a running filter. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6690 specbind (Qinhibit_quit, Qt);
8231
5226ed89c1a6 (Qlast_nonmenu_event): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8063
diff changeset
6691 specbind (Qlast_nonmenu_event, Qt);
9030
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
6692
16644
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
6693 /* In case we get recursively called,
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
6694 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
6695 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
6696 if (outer_running_asynch_code)
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
6697 {
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
6698 Lisp_Object tem;
63147
9bde03db5726 * composite.c (compose_chars_in_text):
Kim F. Storm <storm@cua.dk>
parents: 63128
diff changeset
6699 tem = Fmatch_data (Qnil, Qnil, Qnil);
9bde03db5726 * composite.c (compose_chars_in_text):
Kim F. Storm <storm@cua.dk>
parents: 63128
diff changeset
6700 restore_search_regs ();
9bde03db5726 * composite.c (compose_chars_in_text):
Kim F. Storm <storm@cua.dk>
parents: 63128
diff changeset
6701 record_unwind_save_match_data ();
9bde03db5726 * composite.c (compose_chars_in_text):
Kim F. Storm <storm@cua.dk>
parents: 63128
diff changeset
6702 Fset_match_data (tem, Qt);
16644
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
6703 }
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
6704
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
6705 /* 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
6706 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
6707 running_asynch_code = 1;
16644
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
6708
9030
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
6709 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
6710 Fcons (sentinel,
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
6711 Fcons (proc, Fcons (reason, Qnil))),
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
6712 !NILP (Vdebug_on_error) ? Qnil : Qerror,
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
6713 exec_sentinel_error_handler);
16644
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
6714
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
6715 /* If we saved the match data nonrecursively, restore it now. */
63147
9bde03db5726 * composite.c (compose_chars_in_text):
Kim F. Storm <storm@cua.dk>
parents: 63128
diff changeset
6716 restore_search_regs ();
16644
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
6717 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
6718
8d9e41a175fa (exec_sentinel): Don't deactivate the mark. Check for asynch buffer switch.
Karl Heuer <kwzh@gnu.org>
parents: 7414
diff changeset
6719 Vdeactivate_mark = odeactivate;
23460
94f4ba741f22 (exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents: 23405
diff changeset
6720
94f4ba741f22 (exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents: 23405
diff changeset
6721 /* Restore waiting_for_user_input_p as it was
94f4ba741f22 (exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents: 23405
diff changeset
6722 when we were called, in case the filter clobbered it. */
94f4ba741f22 (exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents: 23405
diff changeset
6723 waiting_for_user_input_p = waiting;
94f4ba741f22 (exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents: 23405
diff changeset
6724
12808
4db1f387e85f (read_process_output, exec_sentinel): Call
Richard M. Stallman <rms@gnu.org>
parents: 12749
diff changeset
6725 #if 0
10914
413d44c0bd41 (exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents: 10744
diff changeset
6726 if (! EQ (Fcurrent_buffer (), obuffer)
413d44c0bd41 (exec_sentinel, read_process_output): If running filter
Richard M. Stallman <rms@gnu.org>
parents: 10744
diff changeset
6727 || ! EQ (current_buffer->keymap, okeymap))
12808
4db1f387e85f (read_process_output, exec_sentinel): Call
Richard M. Stallman <rms@gnu.org>
parents: 12749
diff changeset
6728 #endif
13159
2af96ac471bc (exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents: 12808
diff changeset
6729 /* 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
6730 Otherwise there's no need to make him wake up, and it could
71762
f3f2486cf6bc Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents: 71140
diff changeset
6731 cause trouble (for example it would make sit_for return). */
13159
2af96ac471bc (exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents: 12808
diff changeset
6732 if (waiting_for_user_input_p == -1)
2af96ac471bc (exec_sentinel, read_process_output):
Richard M. Stallman <rms@gnu.org>
parents: 12808
diff changeset
6733 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
6734
5561
fd7524d61a8d (read_process_output): Supply second arg to unbind_to.
Richard M. Stallman <rms@gnu.org>
parents: 5548
diff changeset
6735 unbind_to (count, Qnil);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6736 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6737
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6738 /* Report all recent events of a change in process status
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6739 (either run the sentinel or output a message).
44372
65c0edf0d53c Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 44314
diff changeset
6740 This is usually done while Emacs is waiting for keyboard input
65c0edf0d53c Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 44314
diff changeset
6741 but can be done at other times. */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6742
64977
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
6743 static void
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
6744 status_notify (deleting_process)
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
6745 struct Lisp_Process *deleting_process;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6746 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6747 register Lisp_Object proc, buffer;
6515
df7438605e1e (status_notify): Use assignment, not initialization.
Karl Heuer <kwzh@gnu.org>
parents: 6429
diff changeset
6748 Lisp_Object tail, msg;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6749 struct gcpro gcpro1, gcpro2;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6750
6515
df7438605e1e (status_notify): Use assignment, not initialization.
Karl Heuer <kwzh@gnu.org>
parents: 6429
diff changeset
6751 tail = Qnil;
df7438605e1e (status_notify): Use assignment, not initialization.
Karl Heuer <kwzh@gnu.org>
parents: 6429
diff changeset
6752 msg = Qnil;
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6753 /* We need to gcpro tail; if read_process_output calls a filter
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6754 which deletes a process and removes the cons to which tail points
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6755 from Vprocess_alist, and then causes a GC, tail is an unprotected
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6756 reference. */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6757 GCPRO2 (tail, msg);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6758
12215
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6759 /* 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
6760 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
6761 update_tick = process_tick;
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6762
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6763 for (tail = Vprocess_alist; !NILP (tail); tail = Fcdr (tail))
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6764 {
12215
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6765 Lisp_Object symbol;
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6766 register struct Lisp_Process *p;
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6767
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6768 proc = Fcdr (Fcar (tail));
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6769 p = XPROCESS (proc);
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6770
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6771 if (XINT (p->tick) != XINT (p->update_tick))
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6772 {
12215
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6773 XSETINT (p->update_tick, XINT (p->tick));
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6774
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6775 /* 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
6776 while (! EQ (p->filter, Qt)
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
6777 && ! EQ (p->status, Qconnect)
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6778 && ! EQ (p->status, Qlisten)
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
6779 && ! EQ (p->command, Qt) /* Network process not stopped. */
16644
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
6780 && XINT (p->infd) >= 0
64977
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
6781 && p != deleting_process
16644
3a93437adce1 (status_notify): Test p->infd > 0
Richard M. Stallman <rms@gnu.org>
parents: 16464
diff changeset
6782 && 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
6783
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6784 buffer = p->buffer;
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6785
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6786 /* Get the text to use for the message. */
69873
2d844bbbccd4 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69634
diff changeset
6787 if (p->raw_status_new)
12215
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6788 update_status (p);
55962
8979bc3ade70 (Fdelete_process): Undo 2004-05-28 change.
Kim F. Storm <storm@cua.dk>
parents: 55810
diff changeset
6789 msg = status_message (p);
12215
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6790
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6791 /* 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
6792 symbol = p->status;
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6793 if (CONSP (p->status))
25645
a14111a2a100 Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents: 25356
diff changeset
6794 symbol = XCAR (p->status);
12215
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6795
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6796 if (EQ (symbol, Qsignal) || EQ (symbol, Qexit)
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6797 || EQ (symbol, Qclosed))
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6798 {
12215
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6799 if (delete_exited_processes)
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6800 remove_process (proc);
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6801 else
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6802 deactivate_process (proc);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6803 }
12215
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6804
16464
c1f19d8e5b80 (status_notify): Update p->tick again
Richard M. Stallman <rms@gnu.org>
parents: 16220
diff changeset
6805 /* 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
6806 So set p->update_tick again
c1f19d8e5b80 (status_notify): Update p->tick again
Richard M. Stallman <rms@gnu.org>
parents: 16220
diff changeset
6807 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
6808 this code to be run again. */
c1f19d8e5b80 (status_notify): Update p->tick again
Richard M. Stallman <rms@gnu.org>
parents: 16220
diff changeset
6809 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
6810 /* Now output the message suitably. */
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6811 if (!NILP (p->sentinel))
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6812 exec_sentinel (proc, msg);
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6813 /* 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
6814 when a process becomes runnable. */
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6815 else if (!EQ (symbol, Qrun) && !NILP (buffer))
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6816 {
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6817 Lisp_Object ro, tem;
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6818 struct buffer *old = current_buffer;
20551
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
6819 int opoint, opoint_byte;
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
6820 int before, before_byte;
12215
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6821
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6822 ro = XBUFFER (buffer)->read_only;
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6823
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6824 /* Avoid error if buffer is deleted
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6825 (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
6826 if (NILP (XBUFFER (buffer)->name))
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6827 continue;
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6828 Fset_buffer (buffer);
17604
77b137e2d9a7 (read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents: 17247
diff changeset
6829
16039
855c8d8ba0f0 Change all references from point to PT.
Karl Heuer <kwzh@gnu.org>
parents: 15895
diff changeset
6830 opoint = PT;
20551
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
6831 opoint_byte = PT_BYTE;
12215
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6832 /* Insert new output into buffer
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6833 at the current end-of-output marker,
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6834 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
6835 if (XMARKER (p->mark)->buffer)
20551
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
6836 Fgoto_char (p->mark);
12215
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6837 else
20551
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
6838 SET_PT_BOTH (ZV, ZV_BYTE);
17604
77b137e2d9a7 (read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents: 17247
diff changeset
6839
77b137e2d9a7 (read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents: 17247
diff changeset
6840 before = PT;
20551
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
6841 before_byte = PT_BYTE;
12215
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6842
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6843 tem = current_buffer->read_only;
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6844 current_buffer->read_only = Qnil;
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6845 insert_string ("\nProcess ");
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6846 Finsert (1, &p->name);
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6847 insert_string (" ");
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6848 Finsert (1, &msg);
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6849 current_buffer->read_only = tem;
20551
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
6850 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);
12215
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6851
17604
77b137e2d9a7 (read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents: 17247
diff changeset
6852 if (opoint >= before)
20551
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
6853 SET_PT_BOTH (opoint + (PT - before),
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
6854 opoint_byte + (PT_BYTE - before_byte));
17604
77b137e2d9a7 (read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents: 17247
diff changeset
6855 else
20551
5f17380c85f1 (status_notify): Use byte and char pointers.
Richard M. Stallman <rms@gnu.org>
parents: 20433
diff changeset
6856 SET_PT_BOTH (opoint, opoint_byte);
17604
77b137e2d9a7 (read_process_output): Update opoint, old_begv and old_zv
Richard M. Stallman <rms@gnu.org>
parents: 17247
diff changeset
6857
12215
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6858 set_buffer_internal (old);
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6859 }
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6860 }
2f1f03964f08 (status_notify): Undo May 18 change.
Richard M. Stallman <rms@gnu.org>
parents: 12132
diff changeset
6861 } /* end for */
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6862
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6863 update_mode_lines++; /* in case buffers use %s in mode-line-format */
35336
002c02db42d3 Call redisplay_preserve_echo_area with additional arg.
Gerd Moellmann <gerd@gnu.org>
parents: 34660
diff changeset
6864 redisplay_preserve_echo_area (13);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6865
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6866 UNGCPRO;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6867 }
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
6868
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
6869
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
6870 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
6871 Sset_process_coding_system, 1, 3, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6872 doc: /* Set coding systems of PROCESS to DECODING and ENCODING.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6873 DECODING will be used to decode subprocess output and ENCODING to
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6874 encode subprocess input. */)
55444
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
6875 (process, decoding, encoding)
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
6876 register Lisp_Object process, decoding, encoding;
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
6877 {
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
6878 register struct Lisp_Process *p;
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
6879
55444
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
6880 CHECK_PROCESS (process);
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
6881 p = XPROCESS (process);
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
6882 if (XINT (p->infd) < 0)
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
6883 error ("Input file descriptor of %s closed", SDATA (p->name));
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
6884 if (XINT (p->outfd) < 0)
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46314
diff changeset
6885 error ("Output file descriptor of %s closed", SDATA (p->name));
49667
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6886 Fcheck_coding_system (decoding);
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6887 Fcheck_coding_system (encoding);
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6888
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6889 p->decode_coding_system = decoding;
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6890 p->encode_coding_system = encoding;
55444
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
6891 setup_process_coding_systems (process);
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
6892
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
6893 return Qnil;
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
6894 }
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
6895
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
6896 DEFUN ("process-coding-system",
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
6897 Fprocess_coding_system, Sprocess_coding_system, 1, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
6898 doc: /* Return a cons of coding systems for decoding and encoding of PROCESS. */)
55444
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
6899 (process)
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
6900 register Lisp_Object process;
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
6901 {
55444
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
6902 CHECK_PROCESS (process);
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
6903 return Fcons (XPROCESS (process)->decode_coding_system,
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
6904 XPROCESS (process)->encode_coding_system);
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
6905 }
49667
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6906
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6907 DEFUN ("set-process-filter-multibyte", Fset_process_filter_multibyte,
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6908 Sset_process_filter_multibyte, 2, 2, 0,
49680
7c27c9efd353 Doc fixes.
Kim F. Storm <storm@cua.dk>
parents: 49667
diff changeset
6909 doc: /* Set multibyteness of the strings given to PROCESS's filter.
7c27c9efd353 Doc fixes.
Kim F. Storm <storm@cua.dk>
parents: 49667
diff changeset
6910 If FLAG is non-nil, the filter is given multibyte strings.
7c27c9efd353 Doc fixes.
Kim F. Storm <storm@cua.dk>
parents: 49667
diff changeset
6911 If FLAG is nil, the filter is given unibyte strings. In this case,
49667
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6912 all character code conversion except for end-of-line conversion is
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6913 suppressed. */)
55444
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
6914 (process, flag)
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
6915 Lisp_Object process, flag;
49667
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6916 {
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6917 register struct Lisp_Process *p;
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6918
55444
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
6919 CHECK_PROCESS (process);
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
6920 p = XPROCESS (process);
49667
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6921 p->filter_multibyte = flag;
55444
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
6922 setup_process_coding_systems (process);
49667
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6923
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6924 return Qnil;
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6925 }
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6926
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6927 DEFUN ("process-filter-multibyte-p", Fprocess_filter_multibyte_p,
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6928 Sprocess_filter_multibyte_p, 1, 1, 0,
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6929 doc: /* Return t if a multibyte string is given to PROCESS's filter.*/)
55444
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
6930 (process)
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
6931 Lisp_Object process;
49667
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6932 {
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6933 register struct Lisp_Process *p;
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6934
55444
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
6935 CHECK_PROCESS (process);
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
6936 p = XPROCESS (process);
49667
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6937
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6938 return (NILP (p->filter_multibyte) ? Qnil : Qt);
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6939 }
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6940
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
6941
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6942
9686
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6943 /* 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
6944 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
6945 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
6946 in addition to other places. */
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6947
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6948 static int add_keyboard_wait_descriptor_called_flag;
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6949
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6950 void
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6951 add_keyboard_wait_descriptor (desc)
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6952 int desc;
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6953 {
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6954 if (! add_keyboard_wait_descriptor_called_flag)
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6955 FD_CLR (0, &input_wait_mask);
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6956 add_keyboard_wait_descriptor_called_flag = 1;
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6957 FD_SET (desc, &input_wait_mask);
17224
dd2545e79add (wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents: 17110
diff changeset
6958 FD_SET (desc, &non_process_wait_mask);
9686
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6959 if (desc > max_keyboard_desc)
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6960 max_keyboard_desc = desc;
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6961 }
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6962
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6963 /* 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
6964
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6965 void
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6966 delete_keyboard_wait_descriptor (desc)
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6967 int desc;
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6968 {
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6969 int fd;
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6970 int lim = max_keyboard_desc;
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6971
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6972 FD_CLR (desc, &input_wait_mask);
17224
dd2545e79add (wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents: 17110
diff changeset
6973 FD_CLR (desc, &non_process_wait_mask);
9686
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6974
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6975 if (desc == max_keyboard_desc)
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6976 for (fd = 0; fd < lim; fd++)
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6977 if (FD_ISSET (fd, &input_wait_mask)
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6978 && !FD_ISSET (fd, &non_keyboard_wait_mask))
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6979 max_keyboard_desc = fd;
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6980 }
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6981
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6982 /* Return nonzero if *MASK has a bit set
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6983 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
6984
64977
d26871fb1b7b (deactivate_process, status_notify, read_process_output)
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
6985 static int
9686
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6986 keyboard_bit_set (mask)
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6987 SELECT_TYPE *mask;
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6988 {
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6989 int fd;
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6990
12541
33a4586124e9 (keyboard_bit_set): Fix one-off in loop end.
Karl Heuer <kwzh@gnu.org>
parents: 12491
diff changeset
6991 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
6992 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
6993 && !FD_ISSET (fd, &non_keyboard_wait_mask))
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6994 return 1;
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6995
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6996 return 0;
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6997 }
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
6998
21514
fa9ff387d260 Fix -Wimplicit warnings.
Andreas Schwab <schwab@suse.de>
parents: 21414
diff changeset
6999 void
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7000 init_process ()
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7001 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7002 register int i;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7003
72727
5f2a73453aa3 (inhibit_sentinels): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 72277
diff changeset
7004 inhibit_sentinels = 0;
5f2a73453aa3 (inhibit_sentinels): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 72277
diff changeset
7005
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7006 #ifdef SIGCHLD
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7007 #ifndef CANNOT_DUMP
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7008 if (! noninteractive || initialized)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7009 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7010 signal (SIGCHLD, sigchld_handler);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7011 #endif
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7012
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7013 FD_ZERO (&input_wait_mask);
9686
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
7014 FD_ZERO (&non_keyboard_wait_mask);
17224
dd2545e79add (wait_reading_process_input): If wait_for_cell,
Richard M. Stallman <rms@gnu.org>
parents: 17110
diff changeset
7015 FD_ZERO (&non_process_wait_mask);
7044
7032d07f5ad9 (max_process_desc): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7013
diff changeset
7016 max_process_desc = 0;
4682
c4d471244116 (keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 4639
diff changeset
7017
57840
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
7018 #ifdef NON_BLOCKING_CONNECT
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
7019 FD_ZERO (&connect_wait_mask);
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
7020 num_pending_connects = 0;
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
7021 #endif
8abbe69dfdb2 (connect_wait_mask, num_pending_connects): Only
Kim F. Storm <storm@cua.dk>
parents: 57287
diff changeset
7022
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
7023 #ifdef ADAPTIVE_READ_BUFFERING
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
7024 process_output_delay_count = 0;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
7025 process_output_skip = 0;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
7026 #endif
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
7027
9686
cd788aa8cb2a Handle multiple keyboard input descriptors.
Richard M. Stallman <rms@gnu.org>
parents: 9334
diff changeset
7028 FD_SET (0, &input_wait_mask);
4682
c4d471244116 (keyboard_descriptor): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 4639
diff changeset
7029
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7030 Vprocess_alist = Qnil;
71140
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
7031 #ifdef SIGCHLD
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
7032 deleted_pid_list = Qnil;
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
7033 #endif
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7034 for (i = 0; i < MAXDESC; i++)
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7035 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7036 chan_process[i] = Qnil;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7037 proc_buffered_char[i] = -1;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7038 }
17110
3a348cbb354f (Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents: 17041
diff changeset
7039 bzero (proc_decode_coding_system, sizeof proc_decode_coding_system);
3a348cbb354f (Fstart_process, Fopen_network_stream): Do not perform
Kenichi Handa <handa@m17n.org>
parents: 17041
diff changeset
7040 bzero (proc_encode_coding_system, sizeof proc_encode_coding_system);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7041 #ifdef DATAGRAM_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7042 bzero (datagram_address, sizeof datagram_address);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7043 #endif
44067
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
7044
44073
9984126a7008 (init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents: 44067
diff changeset
7045 #ifdef HAVE_SOCKETS
9984126a7008 (init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents: 44067
diff changeset
7046 {
9984126a7008 (init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents: 44067
diff changeset
7047 Lisp_Object subfeatures = Qnil;
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
7048 struct socket_options *sopt;
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
7049
44067
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
7050 #define ADD_SUBFEATURE(key, val) \
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
7051 subfeatures = Fcons (Fcons (key, Fcons (val, Qnil)), subfeatures)
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
7052
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
7053 #ifdef NON_BLOCKING_CONNECT
44073
9984126a7008 (init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents: 44067
diff changeset
7054 ADD_SUBFEATURE (QCnowait, Qt);
44067
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
7055 #endif
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
7056 #ifdef DATAGRAM_SOCKETS
44073
9984126a7008 (init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents: 44067
diff changeset
7057 ADD_SUBFEATURE (QCtype, Qdatagram);
44067
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
7058 #endif
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
7059 #ifdef HAVE_LOCAL_SOCKETS
44073
9984126a7008 (init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents: 44067
diff changeset
7060 ADD_SUBFEATURE (QCfamily, Qlocal);
44067
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
7061 #endif
68008
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
7062 ADD_SUBFEATURE (QCfamily, Qipv4);
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
7063 #ifdef AF_INET6
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
7064 ADD_SUBFEATURE (QCfamily, Qipv6);
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
7065 #endif
44067
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
7066 #ifdef HAVE_GETSOCKNAME
44073
9984126a7008 (init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents: 44067
diff changeset
7067 ADD_SUBFEATURE (QCservice, Qt);
44067
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
7068 #endif
45118
cc30538ffb5c (init_process): Only add server subfeature if we can
Jason Rumney <jasonr@gnu.org>
parents: 45099
diff changeset
7069 #if !defined(TERM) && (defined(O_NONBLOCK) || defined(O_NDELAY))
44073
9984126a7008 (init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents: 44067
diff changeset
7070 ADD_SUBFEATURE (QCserver, Qt);
44067
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
7071 #endif
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
7072
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
7073 for (sopt = socket_options; sopt->name; sopt++)
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
7074 subfeatures = Fcons (intern (sopt->name), subfeatures);
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
7075
44073
9984126a7008 (init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents: 44067
diff changeset
7076 Fprovide (intern ("make-network-process"), subfeatures);
9984126a7008 (init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents: 44067
diff changeset
7077 }
9984126a7008 (init_process): Only provide make-network-process feature and
Kim F. Storm <storm@cua.dk>
parents: 44067
diff changeset
7078 #endif /* HAVE_SOCKETS */
59689
007a1a6d92de * s/darwin.h: Removed PTY_ITERATION from here.
Steven Tamm <steventamm@mac.com>
parents: 59113
diff changeset
7079
60637
c5074bc00bcc (init_process): Change `#ifdef DARWIN' to `#if defined (DARWIN) ||
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 59689
diff changeset
7080 #if defined (DARWIN) || defined (MAC_OSX)
63114
6ef9e44e50d7 Improve commentary for adaptive read buffering.
Kim F. Storm <storm@cua.dk>
parents: 62604
diff changeset
7081 /* PTYs are broken on Darwin < 6, but are sometimes useful for interactive
59689
007a1a6d92de * s/darwin.h: Removed PTY_ITERATION from here.
Steven Tamm <steventamm@mac.com>
parents: 59113
diff changeset
7082 processes. As such, we only change the default value. */
007a1a6d92de * s/darwin.h: Removed PTY_ITERATION from here.
Steven Tamm <steventamm@mac.com>
parents: 59113
diff changeset
7083 if (initialized)
007a1a6d92de * s/darwin.h: Removed PTY_ITERATION from here.
Steven Tamm <steventamm@mac.com>
parents: 59113
diff changeset
7084 {
007a1a6d92de * s/darwin.h: Removed PTY_ITERATION from here.
Steven Tamm <steventamm@mac.com>
parents: 59113
diff changeset
7085 char *release = get_operating_system_release();
007a1a6d92de * s/darwin.h: Removed PTY_ITERATION from here.
Steven Tamm <steventamm@mac.com>
parents: 59113
diff changeset
7086 if (!release || !release[0] || (release[0] < MIN_PTY_KERNEL_VERSION
007a1a6d92de * s/darwin.h: Removed PTY_ITERATION from here.
Steven Tamm <steventamm@mac.com>
parents: 59113
diff changeset
7087 && release[1] == '.')) {
007a1a6d92de * s/darwin.h: Removed PTY_ITERATION from here.
Steven Tamm <steventamm@mac.com>
parents: 59113
diff changeset
7088 Vprocess_connection_type = Qnil;
007a1a6d92de * s/darwin.h: Removed PTY_ITERATION from here.
Steven Tamm <steventamm@mac.com>
parents: 59113
diff changeset
7089 }
007a1a6d92de * s/darwin.h: Removed PTY_ITERATION from here.
Steven Tamm <steventamm@mac.com>
parents: 59113
diff changeset
7090 }
007a1a6d92de * s/darwin.h: Removed PTY_ITERATION from here.
Steven Tamm <steventamm@mac.com>
parents: 59113
diff changeset
7091 #endif
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7092 }
4231
91a883c56382 (Fget_buffer_process): Delete doc string from
Richard M. Stallman <rms@gnu.org>
parents: 4057
diff changeset
7093
21514
fa9ff387d260 Fix -Wimplicit warnings.
Andreas Schwab <schwab@suse.de>
parents: 21414
diff changeset
7094 void
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7095 syms_of_process ()
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7096 {
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7097 Qprocessp = intern ("processp");
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7098 staticpro (&Qprocessp);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7099 Qrun = intern ("run");
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7100 staticpro (&Qrun);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7101 Qstop = intern ("stop");
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7102 staticpro (&Qstop);
74749
526fb5e934a5 (Qsignal): Declare here.
Kim F. Storm <storm@cua.dk>
parents: 74540
diff changeset
7103 Qsignal = intern ("signal");
526fb5e934a5 (Qsignal): Declare here.
Kim F. Storm <storm@cua.dk>
parents: 74540
diff changeset
7104 staticpro (&Qsignal);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7105
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7106 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7107 here again.
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7108
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7109 Qexit = intern ("exit");
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7110 staticpro (&Qexit); */
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7111
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7112 Qopen = intern ("open");
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7113 staticpro (&Qopen);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7114 Qclosed = intern ("closed");
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7115 staticpro (&Qclosed);
43598
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
7116 Qconnect = intern ("connect");
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
7117 staticpro (&Qconnect);
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
7118 Qfailed = intern ("failed");
f49377cf2e3c (Qconnect, Qfailed): New variables.
Kim F. Storm <storm@cua.dk>
parents: 42600
diff changeset
7119 staticpro (&Qfailed);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7120 Qlisten = intern ("listen");
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7121 staticpro (&Qlisten);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7122 Qlocal = intern ("local");
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7123 staticpro (&Qlocal);
68008
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
7124 Qipv4 = intern ("ipv4");
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
7125 staticpro (&Qipv4);
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
7126 #ifdef AF_INET6
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
7127 Qipv6 = intern ("ipv6");
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
7128 staticpro (&Qipv6);
10f0a09ec82e Add IPv6 support.
Kim F. Storm <storm@cua.dk>
parents: 67920
diff changeset
7129 #endif
44067
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
7130 Qdatagram = intern ("datagram");
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
7131 staticpro (&Qdatagram);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7132
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7133 QCname = intern (":name");
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7134 staticpro (&QCname);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7135 QCbuffer = intern (":buffer");
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7136 staticpro (&QCbuffer);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7137 QChost = intern (":host");
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7138 staticpro (&QChost);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7139 QCservice = intern (":service");
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7140 staticpro (&QCservice);
44067
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
7141 QCtype = intern (":type");
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
7142 staticpro (&QCtype);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7143 QClocal = intern (":local");
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7144 staticpro (&QClocal);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7145 QCremote = intern (":remote");
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7146 staticpro (&QCremote);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7147 QCcoding = intern (":coding");
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7148 staticpro (&QCcoding);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7149 QCserver = intern (":server");
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7150 staticpro (&QCserver);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7151 QCnowait = intern (":nowait");
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7152 staticpro (&QCnowait);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7153 QCsentinel = intern (":sentinel");
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7154 staticpro (&QCsentinel);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7155 QClog = intern (":log");
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7156 staticpro (&QClog);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7157 QCnoquery = intern (":noquery");
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7158 staticpro (&QCnoquery);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7159 QCstop = intern (":stop");
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7160 staticpro (&QCstop);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7161 QCoptions = intern (":options");
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7162 staticpro (&QCoptions);
49223
26622fa0d099 Reworked 2003-01-12 change -- call a plist a plist!
Kim F. Storm <storm@cua.dk>
parents: 49164
diff changeset
7163 QCplist = intern (":plist");
26622fa0d099 Reworked 2003-01-12 change -- call a plist a plist!
Kim F. Storm <storm@cua.dk>
parents: 49164
diff changeset
7164 staticpro (&QCplist);
49680
7c27c9efd353 Doc fixes.
Kim F. Storm <storm@cua.dk>
parents: 49667
diff changeset
7165 QCfilter_multibyte = intern (":filter-multibyte");
7c27c9efd353 Doc fixes.
Kim F. Storm <storm@cua.dk>
parents: 49667
diff changeset
7166 staticpro (&QCfilter_multibyte);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49281
diff changeset
7167
8231
5226ed89c1a6 (Qlast_nonmenu_event): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8063
diff changeset
7168 Qlast_nonmenu_event = intern ("last-nonmenu-event");
5226ed89c1a6 (Qlast_nonmenu_event): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8063
diff changeset
7169 staticpro (&Qlast_nonmenu_event);
5226ed89c1a6 (Qlast_nonmenu_event): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8063
diff changeset
7170
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7171 staticpro (&Vprocess_alist);
71140
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
7172 #ifdef SIGCHLD
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
7173 staticpro (&deleted_pid_list);
80310801887e 2006-06-01 Micha«³l Cadilhac <michael.cadilhac@lrde.org>
Kim F. Storm <storm@cua.dk>
parents: 71109
diff changeset
7174 #endif
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7175
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7176 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
7177 doc: /* *Non-nil means delete processes immediately when they exit.
73951
182d429ba6f9 (syms_of_process) <delete-exited-processes>: Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents: 73225
diff changeset
7178 A value of nil means don't delete them until `list-processes' is run. */);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7179
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7180 delete_exited_processes = 1;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7181
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7182 DEFVAR_LISP ("process-connection-type", &Vprocess_connection_type,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
7183 doc: /* Control type of device used to communicate with subprocesses.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
7184 Values are nil to use a pipe, or t or `pty' to use a pty.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
7185 The value has no effect if the system has no ptys or if all ptys are busy:
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
7186 then a pipe is used in any case.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
7187 The value takes effect when `start-process' is called. */);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7188 Vprocess_connection_type = Qt;
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7189
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
7190 #ifdef ADAPTIVE_READ_BUFFERING
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
7191 DEFVAR_LISP ("process-adaptive-read-buffering", &Vprocess_adaptive_read_buffering,
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
7192 doc: /* If non-nil, improve receive buffering by delaying after short reads.
55444
976d03256b41 (Fwaiting_for_user_input_p, Fmake_network_process)
Juanma Barranquero <lekktu@gmail.com>
parents: 53835
diff changeset
7193 On some systems, when Emacs reads the output from a subprocess, the output data
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
7194 is read in very small blocks, potentially resulting in very poor performance.
63278
d826c3c6df3f (syms_of_process) [ADAPTIVE_READ_BUFFERING]: Fix spellings in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents: 63147
diff changeset
7195 This behavior can be remedied to some extent by setting this variable to a
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
7196 non-nil value, as it will automatically delay reading from such processes, to
69376
921341a03d5b (Vprocess_adaptive_read_buffering): Doc fix.
Romain Francoise <romain@orebokech.com>
parents: 69151
diff changeset
7197 allow them to produce more output before Emacs tries to read it.
53472
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
7198 If the value is t, the delay is reset after each write to the process; any other
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
7199 non-nil value means that the delay is not reset on write.
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
7200 The variable takes effect when `start-process' is called. */);
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
7201 Vprocess_adaptive_read_buffering = Qt;
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
7202 #endif
1a5fe79d27f3 (ADAPTIVE_READ_BUFFERING): New conditional.
Kim F. Storm <storm@cua.dk>
parents: 53072
diff changeset
7203
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7204 defsubr (&Sprocessp);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7205 defsubr (&Sget_process);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7206 defsubr (&Sget_buffer_process);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7207 defsubr (&Sdelete_process);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7208 defsubr (&Sprocess_status);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7209 defsubr (&Sprocess_exit_status);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7210 defsubr (&Sprocess_id);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7211 defsubr (&Sprocess_name);
9030
b14532c71632 (exec_sentinel_error_handler): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8570
diff changeset
7212 defsubr (&Sprocess_tty_name);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7213 defsubr (&Sprocess_command);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7214 defsubr (&Sset_process_buffer);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7215 defsubr (&Sprocess_buffer);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7216 defsubr (&Sprocess_mark);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7217 defsubr (&Sset_process_filter);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7218 defsubr (&Sprocess_filter);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7219 defsubr (&Sset_process_sentinel);
16058
924aeb9ed7c3 (Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents: 16053
diff changeset
7220 defsubr (&Sprocess_sentinel);
6830
bcaddbe53068 (Fset_process_window_size): New function.
Richard M. Stallman <rms@gnu.org>
parents: 6823
diff changeset
7221 defsubr (&Sset_process_window_size);
21656
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
7222 defsubr (&Sset_process_inherit_coding_system_flag);
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
7223 defsubr (&Sprocess_inherit_coding_system_flag);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7224 defsubr (&Sset_process_query_on_exit_flag);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7225 defsubr (&Sprocess_query_on_exit_flag);
16058
924aeb9ed7c3 (Fprocess_contact): New function.
Richard M. Stallman <rms@gnu.org>
parents: 16053
diff changeset
7226 defsubr (&Sprocess_contact);
49223
26622fa0d099 Reworked 2003-01-12 change -- call a plist a plist!
Kim F. Storm <storm@cua.dk>
parents: 49164
diff changeset
7227 defsubr (&Sprocess_plist);
26622fa0d099 Reworked 2003-01-12 change -- call a plist a plist!
Kim F. Storm <storm@cua.dk>
parents: 49164
diff changeset
7228 defsubr (&Sset_process_plist);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7229 defsubr (&Slist_processes);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7230 defsubr (&Sprocess_list);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7231 defsubr (&Sstart_process);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7232 #ifdef HAVE_SOCKETS
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
7233 defsubr (&Sset_network_process_option);
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7234 defsubr (&Smake_network_process);
47987
b30942bd85f3 (Fformat_network_address): New function.
Kim F. Storm <storm@cua.dk>
parents: 47542
diff changeset
7235 defsubr (&Sformat_network_address);
52525
fd2be6cea0e7 (Fnetwork_interface_list, Fnetwork_interface_info):
Kim F. Storm <storm@cua.dk>
parents: 52516
diff changeset
7236 #endif /* HAVE_SOCKETS */
fd2be6cea0e7 (Fnetwork_interface_list, Fnetwork_interface_info):
Kim F. Storm <storm@cua.dk>
parents: 52516
diff changeset
7237 #if defined(HAVE_SOCKETS) && defined(HAVE_NET_IF_H) && defined(HAVE_SYS_IOCTL_H)
52503
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
7238 #ifdef SIOCGIFCONF
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
7239 defsubr (&Snetwork_interface_list);
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
7240 #endif
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
7241 #if defined(SIOCGIFADDR) || defined(SIOCGIFHWADDR) || defined(SIOCGIFFLAGS)
52516
0ca23eb697b9 (Fset_process_sentinel): Add sentinel to childp plist
Kim F. Storm <storm@cua.dk>
parents: 52503
diff changeset
7242 defsubr (&Snetwork_interface_info);
52503
256a27a47af1 [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
7243 #endif
52525
fd2be6cea0e7 (Fnetwork_interface_list, Fnetwork_interface_info):
Kim F. Storm <storm@cua.dk>
parents: 52516
diff changeset
7244 #endif /* HAVE_SOCKETS ... */
43968
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7245 #ifdef DATAGRAM_SOCKETS
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7246 defsubr (&Sprocess_datagram_address);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7247 defsubr (&Sset_process_datagram_address);
7ec801358b7e (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
Kim F. Storm <storm@cua.dk>
parents: 43642
diff changeset
7248 #endif
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7249 defsubr (&Saccept_process_output);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7250 defsubr (&Sprocess_send_region);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7251 defsubr (&Sprocess_send_string);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7252 defsubr (&Sinterrupt_process);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7253 defsubr (&Skill_process);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7254 defsubr (&Squit_process);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7255 defsubr (&Sstop_process);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7256 defsubr (&Scontinue_process);
24352
023601636a18 (syms_of_process): defsubr it.
Richard M. Stallman <rms@gnu.org>
parents: 23930
diff changeset
7257 defsubr (&Sprocess_running_child_p);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7258 defsubr (&Sprocess_send_eof);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7259 defsubr (&Ssignal_process);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7260 defsubr (&Swaiting_for_user_input_p);
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7261 /* defsubr (&Sprocess_connection); */
17041
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
7262 defsubr (&Sset_process_coding_system);
b61cbe595be5 Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents: 16780
diff changeset
7263 defsubr (&Sprocess_coding_system);
49667
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
7264 defsubr (&Sset_process_filter_multibyte);
cbec1327e2f1 (QCfilter_multibyte): New variable.
Kenichi Handa <handa@m17n.org>
parents: 49600
diff changeset
7265 defsubr (&Sprocess_filter_multibyte_p);
578
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7266 }
a4591b4d5435 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7267
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7268
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7269 #else /* not subprocesses */
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7270
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7271 #include <sys/types.h>
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7272 #include <errno.h>
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7273
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7274 #include "lisp.h"
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7275 #include "systime.h"
21656
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
7276 #include "charset.h"
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
7277 #include "coding.h"
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7278 #include "termopts.h"
12132
017f32786ed3 [!subprocesses]: Include sysselect.h.
Karl Heuer <kwzh@gnu.org>
parents: 11926
diff changeset
7279 #include "sysselect.h"
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7280
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 692
diff changeset
7281 extern int frame_garbaged;
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7282
14806
232b90ad50e8 (wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents: 14802
diff changeset
7283 extern EMACS_TIME timer_check ();
232b90ad50e8 (wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents: 14802
diff changeset
7284 extern int timers_run;
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7285
44067
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
7286 Lisp_Object QCtype;
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
7287
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7288 /* As described above, except assuming that there are no subprocesses:
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7289
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7290 Wait for timeout to elapse and/or keyboard input to be available.
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7291
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7292 time_limit is:
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7293 timeout in seconds, or
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7294 zero for no limit, or
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7295 -1 means gobble data immediately available but don't wait for any.
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7296
650
39f0e62a8511 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 648
diff changeset
7297 read_kbd is a Lisp_Object:
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7298 0 to ignore keyboard input, or
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7299 1 to return when input is available, or
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7300 -1 means caller will actually read the input, so don't throw to
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7301 the quit handler.
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
7302
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
7303 see full version for other parameters. We know that wait_proc will
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
7304 always be NULL, since `subprocesses' isn't defined.
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7305
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7306 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
7307 output that arrives.
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7308
3591
507f64624555 Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents: 3510
diff changeset
7309 Return true iff we received input from any process. */
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7310
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7311 int
56728
1686b397ef16 (wait_reading_process_output): Rename from
Kim F. Storm <storm@cua.dk>
parents: 56716
diff changeset
7312 wait_reading_process_output (time_limit, microsecs, read_kbd, do_display,
1686b397ef16 (wait_reading_process_output): Rename from
Kim F. Storm <storm@cua.dk>
parents: 56716
diff changeset
7313 wait_for_cell, wait_proc, just_wait_proc)
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
7314 int time_limit, microsecs, read_kbd, do_display;
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
7315 Lisp_Object wait_for_cell;
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
7316 struct Lisp_Process *wait_proc;
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
7317 int just_wait_proc;
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7318 {
22535
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7319 register int nfds;
14806
232b90ad50e8 (wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents: 14802
diff changeset
7320 EMACS_TIME end_time, timeout;
14278
3562c5f43780 (wait_reading_process_input) [not subprocesses]: Do
Karl Heuer <kwzh@gnu.org>
parents: 14186
diff changeset
7321 SELECT_TYPE waitchannels;
14806
232b90ad50e8 (wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents: 14802
diff changeset
7322 int xerrno;
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7323
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7324 /* What does time_limit really mean? */
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7325 if (time_limit || microsecs)
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7326 {
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7327 EMACS_GET_TIME (end_time);
22535
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7328 EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7329 EMACS_ADD_TIME (end_time, end_time, timeout);
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7330 }
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7331
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7332 /* Turn off periodic alarms (in case they are in use)
47431
8871e67384e4 (wait_reading_process_input, both versions):
Richard M. Stallman <rms@gnu.org>
parents: 47020
diff changeset
7333 and then turn off any other atimers,
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7334 because the select emulator uses alarms. */
47431
8871e67384e4 (wait_reading_process_input, both versions):
Richard M. Stallman <rms@gnu.org>
parents: 47020
diff changeset
7335 stop_polling ();
27430
1aa71680fe50 (toplevel): Include atimer.h.
Gerd Moellmann <gerd@gnu.org>
parents: 27028
diff changeset
7336 turn_on_atimers (0);
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7337
22535
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7338 while (1)
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7339 {
14802
45827a5afe4d [!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 14785
diff changeset
7340 int timeout_reduced_for_timers = 0;
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7341
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7342 /* If calling from keyboard input, do not quit
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7343 since we want to return C-g as an input character.
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7344 Otherwise, do pending quit if requested. */
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
7345 if (read_kbd >= 0)
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7346 QUIT;
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7347
15021
af36df262fc5 (wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents: 14998
diff changeset
7348 /* Exit now if the cell we're waiting for became non-nil. */
39973
579177964efa Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents: 39964
diff changeset
7349 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
15021
af36df262fc5 (wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents: 14998
diff changeset
7350 break;
af36df262fc5 (wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents: 14998
diff changeset
7351
14802
45827a5afe4d [!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 14785
diff changeset
7352 /* 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
7353 /* Exit if already run out */
22535
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7354 if (time_limit == -1)
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7355 {
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7356 /* -1 specified for timeout means
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7357 gobble output available now
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7358 but don't wait at all. */
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7359
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7360 EMACS_SET_SECS_USECS (timeout, 0, 0);
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7361 }
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7362 else if (time_limit || microsecs)
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7363 {
14806
232b90ad50e8 (wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents: 14802
diff changeset
7364 EMACS_GET_TIME (timeout);
232b90ad50e8 (wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents: 14802
diff changeset
7365 EMACS_SUB_TIME (timeout, end_time, timeout);
232b90ad50e8 (wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents: 14802
diff changeset
7366 if (EMACS_TIME_NEG_P (timeout))
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7367 break;
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7368 }
22535
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7369 else
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7370 {
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7371 EMACS_SET_SECS_USECS (timeout, 100000, 0);
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7372 }
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7373
14802
45827a5afe4d [!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 14785
diff changeset
7374 /* 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
7375 run timer events directly.
45827a5afe4d [!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 14785
diff changeset
7376 (Callers that will immediately read keyboard events
45827a5afe4d [!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 14785
diff changeset
7377 call timer_delay on their own.) */
39973
579177964efa Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents: 39964
diff changeset
7378 if (NILP (wait_for_cell))
14802
45827a5afe4d [!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 14785
diff changeset
7379 {
45827a5afe4d [!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 14785
diff changeset
7380 EMACS_TIME timer_delay;
34660
75866a7ebaec (wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents: 34647
diff changeset
7381
75866a7ebaec (wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents: 34647
diff changeset
7382 do
15021
af36df262fc5 (wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents: 14998
diff changeset
7383 {
34660
75866a7ebaec (wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents: 34647
diff changeset
7384 int old_timers_run = timers_run;
75866a7ebaec (wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents: 34647
diff changeset
7385 timer_delay = timer_check (1);
75866a7ebaec (wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents: 34647
diff changeset
7386 if (timers_run != old_timers_run && do_display)
75866a7ebaec (wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents: 34647
diff changeset
7387 /* We must retry, since a timer may have requeued itself
75866a7ebaec (wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents: 34647
diff changeset
7388 and that could alter the time delay. */
35336
002c02db42d3 Call redisplay_preserve_echo_area with additional arg.
Gerd Moellmann <gerd@gnu.org>
parents: 34660
diff changeset
7389 redisplay_preserve_echo_area (14);
34660
75866a7ebaec (wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents: 34647
diff changeset
7390 else
75866a7ebaec (wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents: 34647
diff changeset
7391 break;
15021
af36df262fc5 (wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents: 14998
diff changeset
7392 }
34660
75866a7ebaec (wait_reading_process_input): Check for pending
Gerd Moellmann <gerd@gnu.org>
parents: 34647
diff changeset
7393 while (!detect_input_pending ());
15021
af36df262fc5 (wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents: 14998
diff changeset
7394
22535
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7395 /* If there is unread keyboard input, also return. */
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
7396 if (read_kbd != 0
22535
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7397 && requeued_events_pending_p ())
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7398 break;
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7399
14806
232b90ad50e8 (wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents: 14802
diff changeset
7400 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
7401 {
45827a5afe4d [!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 14785
diff changeset
7402 EMACS_TIME difference;
14806
232b90ad50e8 (wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents: 14802
diff changeset
7403 EMACS_SUB_TIME (difference, timer_delay, timeout);
14802
45827a5afe4d [!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 14785
diff changeset
7404 if (EMACS_TIME_NEG_P (difference))
45827a5afe4d [!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 14785
diff changeset
7405 {
14806
232b90ad50e8 (wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents: 14802
diff changeset
7406 timeout = timer_delay;
14802
45827a5afe4d [!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 14785
diff changeset
7407 timeout_reduced_for_timers = 1;
45827a5afe4d [!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 14785
diff changeset
7408 }
45827a5afe4d [!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 14785
diff changeset
7409 }
45827a5afe4d [!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 14785
diff changeset
7410 }
45827a5afe4d [!subprocesses] (wait_reading_process_input):
Richard M. Stallman <rms@gnu.org>
parents: 14785
diff changeset
7411
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7412 /* Cause C-g and alarm signals to take immediate action,
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7413 and cause input available signals to zero out timeout. */
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
7414 if (read_kbd < 0)
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7415 set_waiting_for_input (&timeout);
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7416
15021
af36df262fc5 (wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents: 14998
diff changeset
7417 /* Wait till there is something to do. */
af36df262fc5 (wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents: 14998
diff changeset
7418
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
7419 if (! read_kbd && NILP (wait_for_cell))
15021
af36df262fc5 (wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents: 14998
diff changeset
7420 FD_ZERO (&waitchannels);
af36df262fc5 (wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents: 14998
diff changeset
7421 else
af36df262fc5 (wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents: 14998
diff changeset
7422 FD_SET (0, &waitchannels);
af36df262fc5 (wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents: 14998
diff changeset
7423
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 692
diff changeset
7424 /* If a frame has been newly mapped and needs updating,
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7425 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
7426 if (frame_garbaged && do_display)
15021
af36df262fc5 (wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents: 14998
diff changeset
7427 {
af36df262fc5 (wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents: 14998
diff changeset
7428 clear_waiting_for_input ();
35336
002c02db42d3 Call redisplay_preserve_echo_area with additional arg.
Gerd Moellmann <gerd@gnu.org>
parents: 34660
diff changeset
7429 redisplay_preserve_echo_area (15);
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
7430 if (read_kbd < 0)
15021
af36df262fc5 (wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents: 14998
diff changeset
7431 set_waiting_for_input (&timeout);
af36df262fc5 (wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents: 14998
diff changeset
7432 }
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7433
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
7434 if (read_kbd && detect_input_pending ())
15025
e5f54fd1c352 (wait_reading_process_input) [!subprocesses]:
Richard M. Stallman <rms@gnu.org>
parents: 15021
diff changeset
7435 {
e5f54fd1c352 (wait_reading_process_input) [!subprocesses]:
Richard M. Stallman <rms@gnu.org>
parents: 15021
diff changeset
7436 nfds = 0;
e5f54fd1c352 (wait_reading_process_input) [!subprocesses]:
Richard M. Stallman <rms@gnu.org>
parents: 15021
diff changeset
7437 FD_ZERO (&waitchannels);
e5f54fd1c352 (wait_reading_process_input) [!subprocesses]:
Richard M. Stallman <rms@gnu.org>
parents: 15021
diff changeset
7438 }
e5f54fd1c352 (wait_reading_process_input) [!subprocesses]:
Richard M. Stallman <rms@gnu.org>
parents: 15021
diff changeset
7439 else
e5f54fd1c352 (wait_reading_process_input) [!subprocesses]:
Richard M. Stallman <rms@gnu.org>
parents: 15021
diff changeset
7440 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
7441 &timeout);
14806
232b90ad50e8 (wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents: 14802
diff changeset
7442
232b90ad50e8 (wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents: 14802
diff changeset
7443 xerrno = errno;
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7444
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7445 /* Make C-g and alarm signals set flags again */
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7446 clear_waiting_for_input ();
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7447
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7448 /* If we woke up due to SIGWINCH, actually change size now. */
25356
5db69f7aadca Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents: 25262
diff changeset
7449 do_pending_window_change (0);
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7450
14806
232b90ad50e8 (wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents: 14802
diff changeset
7451 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
7452 /* 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
7453 break;
232b90ad50e8 (wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents: 14802
diff changeset
7454
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7455 if (nfds == -1)
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7456 {
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7457 /* If the system call was interrupted, then go around the
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7458 loop again. */
14806
232b90ad50e8 (wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents: 14802
diff changeset
7459 if (xerrno == EINTR)
14278
3562c5f43780 (wait_reading_process_input) [not subprocesses]: Do
Karl Heuer <kwzh@gnu.org>
parents: 14186
diff changeset
7460 FD_ZERO (&waitchannels);
14806
232b90ad50e8 (wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents: 14802
diff changeset
7461 else
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 26019
diff changeset
7462 error ("select error: %s", emacs_strerror (xerrno));
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7463 }
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7464 #ifdef sun
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7465 else if (nfds > 0 && (waitchannels & 1) && interrupt_input)
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7466 /* System sometimes fails to deliver SIGIO. */
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7467 kill (getpid (), SIGIO);
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7468 #endif
3915
55ed7a65746e (wait_reading_process_input): Use SIGIO only if defined.
Richard M. Stallman <rms@gnu.org>
parents: 3826
diff changeset
7469 #ifdef SIGIO
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
7470 if (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
7471 kill (getpid (), SIGIO);
3915
55ed7a65746e (wait_reading_process_input): Use SIGIO only if defined.
Richard M. Stallman <rms@gnu.org>
parents: 3826
diff changeset
7472 #endif
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7473
14806
232b90ad50e8 (wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents: 14802
diff changeset
7474 /* Check for keyboard input */
232b90ad50e8 (wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents: 14802
diff changeset
7475
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
7476 if (read_kbd
37413
49147b9fe206 (wait_reading_process_input) [!subprocesses]: Don't
Eli Zaretskii <eliz@gnu.org>
parents: 37398
diff changeset
7477 && detect_input_pending_run_timers (do_display))
14806
232b90ad50e8 (wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents: 14802
diff changeset
7478 {
37413
49147b9fe206 (wait_reading_process_input) [!subprocesses]: Don't
Eli Zaretskii <eliz@gnu.org>
parents: 37398
diff changeset
7479 swallow_events (do_display);
14806
232b90ad50e8 (wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents: 14802
diff changeset
7480 if (detect_input_pending_run_timers (do_display))
232b90ad50e8 (wait_reading_process_input) [! subprocesses]: Run
Karl Heuer <kwzh@gnu.org>
parents: 14802
diff changeset
7481 break;
37413
49147b9fe206 (wait_reading_process_input) [!subprocesses]: Don't
Eli Zaretskii <eliz@gnu.org>
parents: 37398
diff changeset
7482 }
49147b9fe206 (wait_reading_process_input) [!subprocesses]: Don't
Eli Zaretskii <eliz@gnu.org>
parents: 37398
diff changeset
7483
22535
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7484 /* If there is unread keyboard input, also return. */
56716
c126b8b6a314 * process.c (wait_reading_process_input): Clean up.
Kim F. Storm <storm@cua.dk>
parents: 56713
diff changeset
7485 if (read_kbd
22535
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7486 && requeued_events_pending_p ())
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7487 break;
fd9324c5a498 (wait_reading_process_input): Recompute timeout each
Eli Zaretskii <eliz@gnu.org>
parents: 22523
diff changeset
7488
15064
fb0f2804c34a (wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents: 15025
diff changeset
7489 /* 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
7490 but don't run any timers.
fb0f2804c34a (wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents: 15025
diff changeset
7491 ??? (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
7492 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
7493 has been this way since July 1994.
fb0f2804c34a (wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents: 15025
diff changeset
7494 Try changing this after version 19.31.) */
39973
579177964efa Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents: 39964
diff changeset
7495 if (! NILP (wait_for_cell)
15064
fb0f2804c34a (wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents: 15025
diff changeset
7496 && detect_input_pending ())
fb0f2804c34a (wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents: 15025
diff changeset
7497 {
fb0f2804c34a (wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents: 15025
diff changeset
7498 swallow_events (do_display);
fb0f2804c34a (wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents: 15025
diff changeset
7499 if (detect_input_pending ())
fb0f2804c34a (wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents: 15025
diff changeset
7500 break;
fb0f2804c34a (wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents: 15025
diff changeset
7501 }
fb0f2804c34a (wait_reading_process_input, both definitions):
Richard M. Stallman <rms@gnu.org>
parents: 15025
diff changeset
7502
15021
af36df262fc5 (wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents: 14998
diff changeset
7503 /* Exit now if the cell we're waiting for became non-nil. */
39973
579177964efa Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents: 39964
diff changeset
7504 if (! NILP (wait_for_cell) && ! NILP (XCAR (wait_for_cell)))
15021
af36df262fc5 (wait_reading_process_input) [!subprocesses]: Handle
Richard M. Stallman <rms@gnu.org>
parents: 14998
diff changeset
7505 break;
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7506 }
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7507
2120
fc3cdca22f8d * process.c (process_send_signal): In the TERMIOS code for sending
Jim Blandy <jimb@redhat.com>
parents: 1925
diff changeset
7508 start_polling ();
fc3cdca22f8d * process.c (process_send_signal): In the TERMIOS code for sending
Jim Blandy <jimb@redhat.com>
parents: 1925
diff changeset
7509
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7510 return 0;
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7511 }
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7512
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7513
39964
4ca5cbe5610d (process-inherit-coding-system-flag, get-buffer-process): Do not confuse
Pavel Janík <Pavel@Janik.cz>
parents: 39812
diff changeset
7514 /* Don't confuse make-docfile by having two doc strings for this function.
4ca5cbe5610d (process-inherit-coding-system-flag, get-buffer-process): Do not confuse
Pavel Janík <Pavel@Janik.cz>
parents: 39812
diff changeset
7515 make-docfile does not pay attention to #if, for good reason! */
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7516 DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
7517 0)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
7518 (name)
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7519 register Lisp_Object name;
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7520 {
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7521 return Qnil;
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7522 }
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7523
39964
4ca5cbe5610d (process-inherit-coding-system-flag, get-buffer-process): Do not confuse
Pavel Janík <Pavel@Janik.cz>
parents: 39812
diff changeset
7524 /* Don't confuse make-docfile by having two doc strings for this function.
4ca5cbe5610d (process-inherit-coding-system-flag, get-buffer-process): Do not confuse
Pavel Janík <Pavel@Janik.cz>
parents: 39812
diff changeset
7525 make-docfile does not pay attention to #if, for good reason! */
21656
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
7526 DEFUN ("process-inherit-coding-system-flag",
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
7527 Fprocess_inherit_coding_system_flag, Sprocess_inherit_coding_system_flag,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
7528 1, 1, 0,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
7529 0)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
7530 (process)
21656
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
7531 register Lisp_Object process;
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
7532 {
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
7533 /* Ignore the argument and return the value of
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
7534 inherit-process-coding-system. */
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
7535 return inherit_process_coding_system ? Qt : Qnil;
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
7536 }
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
7537
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7538 /* Kill all processes associated with `buffer'.
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7539 If `buffer' is nil, kill all processes.
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7540 Since we have no subprocesses, this does nothing. */
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7541
21414
aac7354edaed (kill_buffer_processes): Make consistent with
Karl Heuer <kwzh@gnu.org>
parents: 21281
diff changeset
7542 void
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7543 kill_buffer_processes (buffer)
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7544 Lisp_Object buffer;
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7545 {
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7546 }
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7547
21978
ba8852d809f6 (init_process, syms_of_process): Make definition consistent with
Eli Zaretskii <eliz@gnu.org>
parents: 21950
diff changeset
7548 void
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7549 init_process ()
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7550 {
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7551 }
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7552
21978
ba8852d809f6 (init_process, syms_of_process): Make definition consistent with
Eli Zaretskii <eliz@gnu.org>
parents: 21950
diff changeset
7553 void
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7554 syms_of_process ()
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7555 {
44067
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
7556 QCtype = intern (":type");
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
7557 staticpro (&QCtype);
e8a136850817 (QCfeature, QCdatagram): Removed variables.
Kim F. Storm <storm@cua.dk>
parents: 44041
diff changeset
7558
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7559 defsubr (&Sget_buffer_process);
21656
bb39a5863a82 (Fset_process_inherit_coding_system_flag,
Eli Zaretskii <eliz@gnu.org>
parents: 21530
diff changeset
7560 defsubr (&Sprocess_inherit_coding_system_flag);
588
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7561 }
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7562
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7563
f284b1a71fb3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 578
diff changeset
7564 #endif /* not subprocesses */
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 52093
diff changeset
7565
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 52093
diff changeset
7566 /* arch-tag: 3706c011-7b9a-4117-bd4f-59e7f701a4c4
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 52093
diff changeset
7567 (do not change this comment) */