Mercurial > emacs
annotate lib-src/emacsclient.c @ 16053:649590c94d41
(create_process): Test defined (TIOCSCTTY)
and defined (HAVE_SETSID) instead of DONT_REOPEN_PTY.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 01 Sep 1996 21:56:24 +0000 |
parents | fb38057473c8 |
children | a1290c4159b5 |
rev | line source |
---|---|
493 | 1 /* Client process that communicates with GNU Emacs acting as server. |
5522
64a936b21f74
Don't declare sys_errlist; declare strerror instead.
Roland McGrath <roland@gnu.org>
parents:
4696
diff
changeset
|
2 Copyright (C) 1986, 1987, 1994 Free Software Foundation, Inc. |
412 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
5522
64a936b21f74
Don't declare sys_errlist; declare strerror instead.
Roland McGrath <roland@gnu.org>
parents:
4696
diff
changeset
|
8 the Free Software Foundation; either version 2, or (at your option) |
412 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
11486
diff
changeset
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
11486
diff
changeset
|
19 Boston, MA 02111-1307, USA. */ |
412 | 20 |
21 | |
22 #define NO_SHORTNAMES | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
3595
diff
changeset
|
23 #include <../src/config.h> |
412 | 24 #undef read |
25 #undef write | |
26 #undef open | |
27 #undef close | |
3595
e10f7473d2e3
* emacsserver.c (main): When we're passing a `struct sockaddr_un'
Jim Blandy <jimb@redhat.com>
parents:
1031
diff
changeset
|
28 #undef signal |
412 | 29 |
16030
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
30 #include <stdio.h> |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
31 #include <getopt.h> |
412 | 32 |
16030
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
33 char *getenv (), *getwd (); |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
34 char *getcwd (); |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
35 int geteuid (); |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
36 |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
37 /* This is defined with -D from the compilation command, |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
38 which extracts it from ../lisp/version.el. */ |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
39 |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
40 #ifndef VERSION |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
41 #define VERSION "unspecified" |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
42 #endif |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
43 |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
44 /* Name used to invoke this program. */ |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
45 char *progname; |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
46 |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
47 /* Nonzero means don't wait for a response from Emacs. --nowait. */ |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
48 int nowait = 0; |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
49 |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
50 struct option longopts[] = |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
51 { |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
52 { "nowait", no_argument, NULL, 'n' }, |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
53 { "help", no_argument, NULL, 'H' }, |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
54 { "version", no_argument, NULL, 'V' }, |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
55 { 0 } |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
56 }; |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
57 |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
58 /* Decode the options from argv and argc. |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
59 Return the number of remaining arguments. */ |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
60 |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
61 int |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
62 decode_options (argc, argv) |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
63 int argc; |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
64 char **argv; |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
65 { |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
66 while (1) |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
67 { |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
68 int opt = getopt_long (argc, argv, |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
69 "VHn", longopts, 0); |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
70 |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
71 if (opt == EOF) |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
72 break; |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
73 |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
74 switch (opt) |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
75 { |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
76 case 0: |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
77 /* If getopt returns 0, then it has already processed a |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
78 long-named option. We should do nothing. */ |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
79 break; |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
80 |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
81 case 'n': |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
82 nowait = 1; |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
83 break; |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
84 |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
85 case 'V': |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
86 fprintf (stderr, "Version %s\n", VERSION); |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
87 exit (1); |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
88 break; |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
89 |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
90 case 'H': |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
91 default: |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
92 print_help_and_exit (); |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
93 } |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
94 } |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
95 |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
96 return argc; |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
97 } |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
98 |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
99 print_help_and_exit () |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
100 { |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
101 fprintf (stderr, |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
102 "Usage: %s [-n] [--nowait] [+linenumber] filename\n", |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
103 progname); |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
104 fprintf (stderr, |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
105 "Report bugs to bug-gnu-emacs@prep.ai.mit.edu.\n"); |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
106 exit (1); |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
107 } |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
108 |
10124
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
109 #if !defined (HAVE_SOCKETS) && !defined (HAVE_SYSVIPC) |
412 | 110 |
111 main (argc, argv) | |
112 int argc; | |
113 char **argv; | |
114 { | |
115 fprintf (stderr, "%s: Sorry, the Emacs server is supported only\n", | |
116 argv[0]); | |
117 fprintf (stderr, "on systems with Berkeley sockets or System V IPC.\n"); | |
118 exit (1); | |
119 } | |
120 | |
121 #else /* HAVE_SOCKETS or HAVE_SYSVIPC */ | |
122 | |
11368
91abe61bb495
Test NO_SOCKETS_IN_FILE_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
11232
diff
changeset
|
123 #if defined (HAVE_SOCKETS) && ! defined (NO_SOCKETS_IN_FILE_SYSTEM) |
412 | 124 /* BSD code is very different from SYSV IPC code */ |
125 | |
126 #include <sys/types.h> | |
127 #include <sys/socket.h> | |
128 #include <sys/un.h> | |
493 | 129 #include <sys/stat.h> |
412 | 130 #include <errno.h> |
131 | |
5522
64a936b21f74
Don't declare sys_errlist; declare strerror instead.
Roland McGrath <roland@gnu.org>
parents:
4696
diff
changeset
|
132 extern char *strerror (); |
412 | 133 extern int errno; |
134 | |
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
8360
diff
changeset
|
135 int |
412 | 136 main (argc, argv) |
137 int argc; | |
138 char **argv; | |
139 { | |
140 char system_name[32]; | |
141 int s, i; | |
15758
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
142 FILE *out, *in; |
412 | 143 struct sockaddr_un server; |
144 char *homedir, *cwd, *str; | |
145 char string[BUFSIZ]; | |
16030
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
146 int args_left; |
412 | 147 |
16030
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
148 progname = argv[0]; |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
149 |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
150 /* Process options. */ |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
151 args_left = decode_options (argc, argv); |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
152 |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
153 /* Advance argv and decrement argc for the options that were skipped. */ |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
154 argv += argc - args_left; |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
155 argc = args_left; |
412 | 156 |
157 if (argc < 2) | |
16030
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
158 print_help_and_exit (); |
412 | 159 |
160 /* | |
161 * Open up an AF_UNIX socket in this person's home directory | |
162 */ | |
163 | |
164 if ((s = socket (AF_UNIX, SOCK_STREAM, 0)) < 0) | |
165 { | |
166 fprintf (stderr, "%s: ", argv[0]); | |
167 perror ("socket"); | |
168 exit (1); | |
169 } | |
170 server.sun_family = AF_UNIX; | |
171 #ifndef SERVER_HOME_DIR | |
493 | 172 { |
173 struct stat statbfr; | |
174 | |
175 gethostname (system_name, sizeof (system_name)); | |
176 sprintf (server.sun_path, "/tmp/esrv%d-%s", geteuid (), system_name); | |
412 | 177 |
493 | 178 if (stat (server.sun_path, &statbfr) == -1) |
179 { | |
816 | 180 if (errno == ENOENT) |
181 fprintf (stderr, | |
11434
5f5dda37c82c
(main): Improve error handling.
Karl Heuer <kwzh@gnu.org>
parents:
11368
diff
changeset
|
182 "%s: can't find socket; have you started the server?\n", |
5f5dda37c82c
(main): Improve error handling.
Karl Heuer <kwzh@gnu.org>
parents:
11368
diff
changeset
|
183 argv[0]); |
816 | 184 else |
11434
5f5dda37c82c
(main): Improve error handling.
Karl Heuer <kwzh@gnu.org>
parents:
11368
diff
changeset
|
185 fprintf (stderr, "%s: can't stat %s: %s\n", |
5f5dda37c82c
(main): Improve error handling.
Karl Heuer <kwzh@gnu.org>
parents:
11368
diff
changeset
|
186 argv[0], server.sun_path, strerror (errno)); |
493 | 187 exit (1); |
188 } | |
10124
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
189 if (statbfr.st_uid != geteuid ()) |
493 | 190 { |
11434
5f5dda37c82c
(main): Improve error handling.
Karl Heuer <kwzh@gnu.org>
parents:
11368
diff
changeset
|
191 fprintf (stderr, "%s: Invalid socket owner\n", argv[0]); |
493 | 192 exit (1); |
193 } | |
194 } | |
412 | 195 #else |
196 if ((homedir = getenv ("HOME")) == NULL) | |
197 { | |
198 fprintf (stderr, "%s: No home directory\n", argv[0]); | |
199 exit (1); | |
200 } | |
201 strcpy (server.sun_path, homedir); | |
10124
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
202 strcat (server.sun_path, "/.emacs-server-"); |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
203 gethostname (system_name, sizeof (system_name)); |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
204 strcat (server.sun_path, system_name); |
412 | 205 #endif |
206 | |
3595
e10f7473d2e3
* emacsserver.c (main): When we're passing a `struct sockaddr_un'
Jim Blandy <jimb@redhat.com>
parents:
1031
diff
changeset
|
207 if (connect (s, (struct sockaddr *) &server, strlen (server.sun_path) + 2) |
e10f7473d2e3
* emacsserver.c (main): When we're passing a `struct sockaddr_un'
Jim Blandy <jimb@redhat.com>
parents:
1031
diff
changeset
|
208 < 0) |
412 | 209 { |
210 fprintf (stderr, "%s: ", argv[0]); | |
211 perror ("connect"); | |
212 exit (1); | |
213 } | |
15758
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
214 |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
215 /* We use the stream OUT to send our command to the server. */ |
412 | 216 if ((out = fdopen (s, "r+")) == NULL) |
217 { | |
218 fprintf (stderr, "%s: ", argv[0]); | |
219 perror ("fdopen"); | |
220 exit (1); | |
221 } | |
222 | |
15758
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
223 /* We use the stream IN to read the response. |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
224 We used to use just one stream for both output and input |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
225 on the socket, but reversing direction works nonportably: |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
226 on some systems, the output appears as the first input; |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
227 on other systems it does not. */ |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
228 if ((in = fdopen (s, "r+")) == NULL) |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
229 { |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
230 fprintf (stderr, "%s: ", argv[0]); |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
231 perror ("fdopen"); |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
232 exit (1); |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
233 } |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
234 |
11030
3345f6426f49
Use BSD sockets whenever available, even if HAVE_SYSVIPC.
Richard M. Stallman <rms@gnu.org>
parents:
10124
diff
changeset
|
235 #ifdef BSD |
412 | 236 cwd = getwd (string); |
11030
3345f6426f49
Use BSD sockets whenever available, even if HAVE_SYSVIPC.
Richard M. Stallman <rms@gnu.org>
parents:
10124
diff
changeset
|
237 #else |
3345f6426f49
Use BSD sockets whenever available, even if HAVE_SYSVIPC.
Richard M. Stallman <rms@gnu.org>
parents:
10124
diff
changeset
|
238 cwd = getcwd (string, sizeof string); |
3345f6426f49
Use BSD sockets whenever available, even if HAVE_SYSVIPC.
Richard M. Stallman <rms@gnu.org>
parents:
10124
diff
changeset
|
239 #endif |
412 | 240 if (cwd == 0) |
241 { | |
242 /* getwd puts message in STRING if it fails. */ | |
5522
64a936b21f74
Don't declare sys_errlist; declare strerror instead.
Roland McGrath <roland@gnu.org>
parents:
4696
diff
changeset
|
243 fprintf (stderr, "%s: %s (%s)\n", argv[0], string, strerror (errno)); |
412 | 244 exit (1); |
245 } | |
246 | |
247 for (i = 1; i < argc; i++) | |
248 { | |
15995
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
249 /* If -nowait or --nowait option is used, |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
250 report it to the server. */ |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
251 if (!strcmp (argv[i], "-nowait") |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
252 || (!strncmp (argv[i], "--nowait", strlen (argv[i])) |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
253 && strlen (argv[i]) >= 3)) |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
254 { |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
255 fprintf (out, "-nowait "); |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
256 nowait = 1; |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
257 continue; |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
258 } |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
259 |
412 | 260 if (*argv[i] == '+') |
261 { | |
262 char *p = argv[i] + 1; | |
263 while (*p >= '0' && *p <= '9') p++; | |
264 if (*p != 0) | |
265 fprintf (out, "%s/", cwd); | |
266 } | |
267 else if (*argv[i] != '/') | |
268 fprintf (out, "%s/", cwd); | |
269 fprintf (out, "%s ", argv[i]); | |
270 } | |
271 fprintf (out, "\n"); | |
272 fflush (out); | |
273 | |
15995
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
274 /* Maybe wait for an answer. */ |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
275 if (nowait) |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
276 return 0; |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
277 |
412 | 278 printf ("Waiting for Emacs..."); |
279 fflush (stdout); | |
280 | |
15758
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
281 /* Now, wait for an answer and print any messages. On some systems, |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
282 the first line we read will actually be the output we just sent. |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
283 We can't predict whether that will happen, so if it does, we |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
284 detect it by recognizing `Client: ' at the beginning. */ |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
285 |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
286 while (str = fgets (string, BUFSIZ, in)) |
7e712d42d371
(main) [HAVE_SOCKETS]: Use two separate stdio
Richard M. Stallman <rms@gnu.org>
parents:
14610
diff
changeset
|
287 printf ("%s", str); |
412 | 288 |
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
8360
diff
changeset
|
289 return 0; |
412 | 290 } |
291 | |
292 #else /* This is the SYSV IPC section */ | |
293 | |
294 #include <sys/types.h> | |
295 #include <sys/ipc.h> | |
296 #include <sys/msg.h> | |
10124
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
297 #include <sys/utsname.h> |
412 | 298 #include <stdio.h> |
299 | |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
300 char *getwd (), *getcwd (), *getenv (); |
10124
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
301 struct utsname system_name; |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
302 |
412 | 303 main (argc, argv) |
304 int argc; | |
305 char **argv; | |
306 { | |
307 int s; | |
308 key_t key; | |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
309 /* Size of text allocated in MSGP. */ |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
310 int size_allocated = BUFSIZ; |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
311 /* Amount of text used in MSGP. */ |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
312 int used; |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
313 struct msgbuf *msgp |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
314 = (struct msgbuf *) malloc (sizeof (struct msgbuf) + size_allocated); |
412 | 315 struct msqid_ds * msg_st; |
316 char *homedir, buf[BUFSIZ]; | |
317 char gwdirb[BUFSIZ]; | |
318 char *cwd; | |
319 char *temp; | |
16030
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
320 |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
321 progname = argv[0]; |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
322 |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
323 /* Process options. */ |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
324 args_left = decode_options (argc, argv); |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
325 |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
326 /* Advance argv and decrement argc for the options that were skipped. */ |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
327 argv += argc - args_left; |
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
328 argc = args_left; |
412 | 329 |
330 if (argc < 2) | |
16030
fb38057473c8
(decode_options): New function.
Richard M. Stallman <rms@gnu.org>
parents:
15995
diff
changeset
|
331 print_help_and_exit (); |
412 | 332 |
333 /* | |
10124
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
334 * Create a message queue using ~/.emacs-server as the path for ftok |
412 | 335 */ |
336 if ((homedir = getenv ("HOME")) == NULL) | |
337 { | |
338 fprintf (stderr, "%s: No home directory\n", argv[0]); | |
339 exit (1); | |
340 } | |
341 strcpy (buf, homedir); | |
10124
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
342 #ifndef HAVE_LONG_FILE_NAMES |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
343 /* If file names are short, we can't fit the host name. */ |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
344 strcat (buf, "/.emacs-server"); |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
345 #else |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
346 strcat (buf, "/.emacs-server-"); |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
347 uname (&system_name); |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
348 strcat (buf, system_name.nodename); |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
349 #endif |
412 | 350 creat (buf, 0600); |
351 key = ftok (buf, 1); /* unlikely to be anyone else using it */ | |
1031 | 352 s = msgget (key, 0600 | IPC_CREAT); |
412 | 353 if (s == -1) |
354 { | |
355 fprintf (stderr, "%s: ", argv[0]); | |
356 perror ("msgget"); | |
357 exit (1); | |
358 } | |
359 | |
360 /* Determine working dir, so we can prefix it to all the arguments. */ | |
361 #ifdef BSD | |
362 temp = getwd (gwdirb); | |
363 #else | |
364 temp = getcwd (gwdirb, sizeof gwdirb); | |
365 #endif | |
366 | |
367 cwd = gwdirb; | |
368 if (temp != 0) | |
369 { | |
370 /* On some systems, cwd can look like `@machine/...'; | |
371 ignore everything before the first slash in such a case. */ | |
372 while (*cwd && *cwd != '/') | |
373 cwd++; | |
374 strcat (cwd, "/"); | |
375 } | |
376 else | |
377 { | |
11486
fb7c3071c8f0
(main): Add argv[0] to an error message.
Richard M. Stallman <rms@gnu.org>
parents:
11434
diff
changeset
|
378 fprintf (stderr, "%s: %s\n", argv[0], cwd); |
412 | 379 exit (1); |
380 } | |
381 | |
382 msgp->mtext[0] = 0; | |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
383 used = 0; |
412 | 384 argc--; argv++; |
385 while (argc) | |
386 { | |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
387 int need_cwd = 0; |
8346
3f82ba603fa3
(main): Don't actually modify argv[0]. Modify a copy instead.
Richard M. Stallman <rms@gnu.org>
parents:
6213
diff
changeset
|
388 char *modified_arg = argv[0]; |
15995
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
389 |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
390 /* If -nowait or --nowait option is used, |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
391 report it to the server. */ |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
392 if (!strcmp (modified_arg, "-nowait") |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
393 || (!strncmp (modified_arg, "--nowait", strlen (modified_arg)) |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
394 && strlen (modified_arg) >= 3)) |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
395 { |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
396 modified_arg = "-nowait"; |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
397 nowait = 1; |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
398 } |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
399 else if (*modified_arg == '+') |
412 | 400 { |
8346
3f82ba603fa3
(main): Don't actually modify argv[0]. Modify a copy instead.
Richard M. Stallman <rms@gnu.org>
parents:
6213
diff
changeset
|
401 char *p = modified_arg + 1; |
412 | 402 while (*p >= '0' && *p <= '9') p++; |
403 if (*p != 0) | |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
404 need_cwd = 1; |
412 | 405 } |
8346
3f82ba603fa3
(main): Don't actually modify argv[0]. Modify a copy instead.
Richard M. Stallman <rms@gnu.org>
parents:
6213
diff
changeset
|
406 else if (*modified_arg != '/') |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
407 need_cwd = 1; |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
408 |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
409 if (need_cwd) |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
410 used += strlen (cwd); |
8346
3f82ba603fa3
(main): Don't actually modify argv[0]. Modify a copy instead.
Richard M. Stallman <rms@gnu.org>
parents:
6213
diff
changeset
|
411 used += strlen (modified_arg) + 1; |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
412 while (used + 2 > size_allocated) |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
413 { |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
414 size_allocated *= 2; |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
415 msgp = (struct msgbuf *) realloc (msgp, |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
416 (sizeof (struct msgbuf) |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
417 + size_allocated)); |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
418 } |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
419 |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
420 if (need_cwd) |
412 | 421 strcat (msgp->mtext, cwd); |
422 | |
8346
3f82ba603fa3
(main): Don't actually modify argv[0]. Modify a copy instead.
Richard M. Stallman <rms@gnu.org>
parents:
6213
diff
changeset
|
423 strcat (msgp->mtext, modified_arg); |
412 | 424 strcat (msgp->mtext, " "); |
425 argv++; argc--; | |
426 } | |
427 strcat (msgp->mtext, "\n"); | |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
428 #ifdef HPUX /* HPUX has a bug. */ |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
429 if (strlen (msgp->mtext) >= 512) |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
430 { |
11434
5f5dda37c82c
(main): Improve error handling.
Karl Heuer <kwzh@gnu.org>
parents:
11368
diff
changeset
|
431 fprintf (stderr, "%s: args too long for msgsnd\n", progname); |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
432 exit (1); |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
433 } |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
434 #endif |
412 | 435 msgp->mtype = 1; |
436 if (msgsnd (s, msgp, strlen (msgp->mtext)+1, 0) < 0) | |
437 { | |
8360
e1518247fd63
(main): New local var progname saves argv[0].
Richard M. Stallman <rms@gnu.org>
parents:
8346
diff
changeset
|
438 fprintf (stderr, "%s: ", progname); |
412 | 439 perror ("msgsnd"); |
440 exit (1); | |
441 } | |
15995
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
442 |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
443 /* Maybe wait for an answer. */ |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
444 if (nowait) |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
445 return 0; |
7284f973fc42
(both versions): Handle -nowait and --nowait by sending data to the server.
Richard M. Stallman <rms@gnu.org>
parents:
15758
diff
changeset
|
446 |
412 | 447 printf ("Waiting for Emacs..."); |
448 fflush (stdout); | |
449 | |
450 msgrcv (s, msgp, BUFSIZ, getpid (), 0); /* wait for anything back */ | |
451 strcpy (buf, msgp->mtext); | |
452 | |
14610
6c73b6046d21
(main, both definitions): Print a newline for normal termination.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
453 printf ("\n"); |
6c73b6046d21
(main, both definitions): Print a newline for normal termination.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
454 if (*buf) |
6c73b6046d21
(main, both definitions): Print a newline for normal termination.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
455 printf ("%s\n", buf); |
412 | 456 exit (0); |
457 } | |
458 | |
459 #endif /* HAVE_SYSVIPC */ | |
460 | |
461 #endif /* HAVE_SOCKETS or HAVE_SYSVIPC */ | |
5527
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
462 |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
463 #ifndef HAVE_STRERROR |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
464 char * |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
465 strerror (errnum) |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
466 int errnum; |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
467 { |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
468 extern char *sys_errlist[]; |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
469 extern int sys_nerr; |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
470 |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
471 if (errnum >= 0 && errnum < sys_nerr) |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
472 return sys_errlist[errnum]; |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
473 return (char *) "Unknown error"; |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
474 } |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
475 |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
476 #endif /* ! HAVE_STRERROR */ |