Mercurial > emacs
annotate lib-src/emacsclient.c @ 11424:29493ce2d1ca
(make-help-screen): Explicitly translate key thru function-key-map.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 13 Apr 1995 17:07:03 +0000 |
parents | 91abe61bb495 |
children | 5f5dda37c82c |
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 | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
21 #define NO_SHORTNAMES | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
3595
diff
changeset
|
22 #include <../src/config.h> |
412 | 23 #undef read |
24 #undef write | |
25 #undef open | |
26 #undef close | |
3595
e10f7473d2e3
* emacsserver.c (main): When we're passing a `struct sockaddr_un'
Jim Blandy <jimb@redhat.com>
parents:
1031
diff
changeset
|
27 #undef signal |
412 | 28 |
29 | |
10124
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
30 #if !defined (HAVE_SOCKETS) && !defined (HAVE_SYSVIPC) |
412 | 31 #include <stdio.h> |
32 | |
33 main (argc, argv) | |
34 int argc; | |
35 char **argv; | |
36 { | |
37 fprintf (stderr, "%s: Sorry, the Emacs server is supported only\n", | |
38 argv[0]); | |
39 fprintf (stderr, "on systems with Berkeley sockets or System V IPC.\n"); | |
40 exit (1); | |
41 } | |
42 | |
43 #else /* HAVE_SOCKETS or HAVE_SYSVIPC */ | |
44 | |
11368
91abe61bb495
Test NO_SOCKETS_IN_FILE_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
11232
diff
changeset
|
45 #if defined (HAVE_SOCKETS) && ! defined (NO_SOCKETS_IN_FILE_SYSTEM) |
412 | 46 /* BSD code is very different from SYSV IPC code */ |
47 | |
48 #include <sys/types.h> | |
49 #include <sys/socket.h> | |
50 #include <sys/un.h> | |
493 | 51 #include <sys/stat.h> |
412 | 52 #include <stdio.h> |
53 #include <errno.h> | |
54 | |
5522
64a936b21f74
Don't declare sys_errlist; declare strerror instead.
Roland McGrath <roland@gnu.org>
parents:
4696
diff
changeset
|
55 extern char *strerror (); |
412 | 56 extern int errno; |
57 | |
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
8360
diff
changeset
|
58 int |
412 | 59 main (argc, argv) |
60 int argc; | |
61 char **argv; | |
62 { | |
63 char system_name[32]; | |
64 int s, i; | |
65 FILE *out; | |
66 struct sockaddr_un server; | |
67 char *homedir, *cwd, *str; | |
68 char string[BUFSIZ]; | |
69 | |
70 char *getenv (), *getwd (); | |
11232
c203fc1363d4
[Berkeley sockets version] (main): Declare getcwd.
Richard M. Stallman <rms@gnu.org>
parents:
11030
diff
changeset
|
71 char *getcwd (); |
412 | 72 int geteuid (); |
73 | |
74 if (argc < 2) | |
75 { | |
76 fprintf (stderr, "Usage: %s [+linenumber] filename\n", argv[0]); | |
77 exit (1); | |
78 } | |
79 | |
80 /* | |
81 * Open up an AF_UNIX socket in this person's home directory | |
82 */ | |
83 | |
84 if ((s = socket (AF_UNIX, SOCK_STREAM, 0)) < 0) | |
85 { | |
86 fprintf (stderr, "%s: ", argv[0]); | |
87 perror ("socket"); | |
88 exit (1); | |
89 } | |
90 server.sun_family = AF_UNIX; | |
91 #ifndef SERVER_HOME_DIR | |
493 | 92 { |
93 struct stat statbfr; | |
94 | |
95 gethostname (system_name, sizeof (system_name)); | |
96 sprintf (server.sun_path, "/tmp/esrv%d-%s", geteuid (), system_name); | |
412 | 97 |
493 | 98 if (stat (server.sun_path, &statbfr) == -1) |
99 { | |
816 | 100 if (errno == ENOENT) |
101 fprintf (stderr, | |
102 "Can't find socket; have you started the server?\n"); | |
103 else | |
104 perror ("stat"); | |
493 | 105 exit (1); |
106 } | |
10124
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
107 if (statbfr.st_uid != geteuid ()) |
493 | 108 { |
10124
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
109 fprintf (stderr, "Invalid socket owner\n"); |
493 | 110 exit (1); |
111 } | |
112 } | |
412 | 113 #else |
114 if ((homedir = getenv ("HOME")) == NULL) | |
115 { | |
116 fprintf (stderr, "%s: No home directory\n", argv[0]); | |
117 exit (1); | |
118 } | |
119 strcpy (server.sun_path, homedir); | |
10124
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
120 strcat (server.sun_path, "/.emacs-server-"); |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
121 gethostname (system_name, sizeof (system_name)); |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
122 strcat (server.sun_path, system_name); |
412 | 123 #endif |
124 | |
3595
e10f7473d2e3
* emacsserver.c (main): When we're passing a `struct sockaddr_un'
Jim Blandy <jimb@redhat.com>
parents:
1031
diff
changeset
|
125 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
|
126 < 0) |
412 | 127 { |
128 fprintf (stderr, "%s: ", argv[0]); | |
129 perror ("connect"); | |
130 exit (1); | |
131 } | |
132 if ((out = fdopen (s, "r+")) == NULL) | |
133 { | |
134 fprintf (stderr, "%s: ", argv[0]); | |
135 perror ("fdopen"); | |
136 exit (1); | |
137 } | |
138 | |
11030
3345f6426f49
Use BSD sockets whenever available, even if HAVE_SYSVIPC.
Richard M. Stallman <rms@gnu.org>
parents:
10124
diff
changeset
|
139 #ifdef BSD |
412 | 140 cwd = getwd (string); |
11030
3345f6426f49
Use BSD sockets whenever available, even if HAVE_SYSVIPC.
Richard M. Stallman <rms@gnu.org>
parents:
10124
diff
changeset
|
141 #else |
3345f6426f49
Use BSD sockets whenever available, even if HAVE_SYSVIPC.
Richard M. Stallman <rms@gnu.org>
parents:
10124
diff
changeset
|
142 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
|
143 #endif |
412 | 144 if (cwd == 0) |
145 { | |
146 /* 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
|
147 fprintf (stderr, "%s: %s (%s)\n", argv[0], string, strerror (errno)); |
412 | 148 exit (1); |
149 } | |
150 | |
151 for (i = 1; i < argc; i++) | |
152 { | |
153 if (*argv[i] == '+') | |
154 { | |
155 char *p = argv[i] + 1; | |
156 while (*p >= '0' && *p <= '9') p++; | |
157 if (*p != 0) | |
158 fprintf (out, "%s/", cwd); | |
159 } | |
160 else if (*argv[i] != '/') | |
161 fprintf (out, "%s/", cwd); | |
162 fprintf (out, "%s ", argv[i]); | |
163 } | |
164 fprintf (out, "\n"); | |
165 fflush (out); | |
166 | |
167 printf ("Waiting for Emacs..."); | |
168 fflush (stdout); | |
169 | |
170 rewind (out); /* re-read the output */ | |
171 str = fgets (string, BUFSIZ, out); | |
172 | |
173 /* Now, wait for an answer and print any messages. */ | |
174 | |
175 while (str = fgets (string, BUFSIZ, out)) | |
176 printf ("%s", str); | |
177 | |
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
8360
diff
changeset
|
178 return 0; |
412 | 179 } |
180 | |
181 #else /* This is the SYSV IPC section */ | |
182 | |
183 #include <sys/types.h> | |
184 #include <sys/ipc.h> | |
185 #include <sys/msg.h> | |
10124
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
186 #include <sys/utsname.h> |
412 | 187 #include <stdio.h> |
188 | |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
189 char *getwd (), *getcwd (), *getenv (); |
10124
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
190 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
|
191 |
412 | 192 main (argc, argv) |
193 int argc; | |
194 char **argv; | |
195 { | |
196 int s; | |
197 key_t key; | |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
198 /* 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
|
199 int size_allocated = BUFSIZ; |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
200 /* 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
|
201 int used; |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
202 struct msgbuf *msgp |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
203 = (struct msgbuf *) malloc (sizeof (struct msgbuf) + size_allocated); |
412 | 204 struct msqid_ds * msg_st; |
205 char *homedir, buf[BUFSIZ]; | |
206 char gwdirb[BUFSIZ]; | |
207 char *cwd; | |
208 char *temp; | |
8360
e1518247fd63
(main): New local var progname saves argv[0].
Richard M. Stallman <rms@gnu.org>
parents:
8346
diff
changeset
|
209 char *progname = argv[0]; |
412 | 210 |
211 if (argc < 2) | |
212 { | |
213 fprintf (stderr, "Usage: %s [+linenumber] filename\n", argv[0]); | |
214 exit (1); | |
215 } | |
216 | |
217 /* | |
10124
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
218 * Create a message queue using ~/.emacs-server as the path for ftok |
412 | 219 */ |
220 if ((homedir = getenv ("HOME")) == NULL) | |
221 { | |
222 fprintf (stderr, "%s: No home directory\n", argv[0]); | |
223 exit (1); | |
224 } | |
225 strcpy (buf, homedir); | |
10124
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
226 #ifndef HAVE_LONG_FILE_NAMES |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
227 /* 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
|
228 strcat (buf, "/.emacs-server"); |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
229 #else |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
230 strcat (buf, "/.emacs-server-"); |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
231 uname (&system_name); |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
232 strcat (buf, system_name.nodename); |
baab57e76991
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
233 #endif |
412 | 234 creat (buf, 0600); |
235 key = ftok (buf, 1); /* unlikely to be anyone else using it */ | |
1031 | 236 s = msgget (key, 0600 | IPC_CREAT); |
412 | 237 if (s == -1) |
238 { | |
239 fprintf (stderr, "%s: ", argv[0]); | |
240 perror ("msgget"); | |
241 exit (1); | |
242 } | |
243 | |
244 /* Determine working dir, so we can prefix it to all the arguments. */ | |
245 #ifdef BSD | |
246 temp = getwd (gwdirb); | |
247 #else | |
248 temp = getcwd (gwdirb, sizeof gwdirb); | |
249 #endif | |
250 | |
251 cwd = gwdirb; | |
252 if (temp != 0) | |
253 { | |
254 /* On some systems, cwd can look like `@machine/...'; | |
255 ignore everything before the first slash in such a case. */ | |
256 while (*cwd && *cwd != '/') | |
257 cwd++; | |
258 strcat (cwd, "/"); | |
259 } | |
260 else | |
261 { | |
262 fprintf (stderr, cwd); | |
263 exit (1); | |
264 } | |
265 | |
266 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
|
267 used = 0; |
412 | 268 argc--; argv++; |
269 while (argc) | |
270 { | |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
271 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
|
272 char *modified_arg = argv[0]; |
3f82ba603fa3
(main): Don't actually modify argv[0]. Modify a copy instead.
Richard M. Stallman <rms@gnu.org>
parents:
6213
diff
changeset
|
273 if (*modified_arg == '+') |
412 | 274 { |
8346
3f82ba603fa3
(main): Don't actually modify argv[0]. Modify a copy instead.
Richard M. Stallman <rms@gnu.org>
parents:
6213
diff
changeset
|
275 char *p = modified_arg + 1; |
412 | 276 while (*p >= '0' && *p <= '9') p++; |
277 if (*p != 0) | |
6213
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
278 need_cwd = 1; |
412 | 279 } |
8346
3f82ba603fa3
(main): Don't actually modify argv[0]. Modify a copy instead.
Richard M. Stallman <rms@gnu.org>
parents:
6213
diff
changeset
|
280 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
|
281 need_cwd = 1; |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
282 |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
283 if (need_cwd) |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
284 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
|
285 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
|
286 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
|
287 { |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
288 size_allocated *= 2; |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
289 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
|
290 (sizeof (struct msgbuf) |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
291 + size_allocated)); |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
292 } |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
293 |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
294 if (need_cwd) |
412 | 295 strcat (msgp->mtext, cwd); |
296 | |
8346
3f82ba603fa3
(main): Don't actually modify argv[0]. Modify a copy instead.
Richard M. Stallman <rms@gnu.org>
parents:
6213
diff
changeset
|
297 strcat (msgp->mtext, modified_arg); |
412 | 298 strcat (msgp->mtext, " "); |
299 argv++; argc--; | |
300 } | |
301 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
|
302 #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
|
303 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
|
304 { |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
305 fprintf (stderr, "emacsclient: args too long for msgsnd\n"); |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
306 exit (1); |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
307 } |
7eefa1bd1478
(main) [HAVE_SYSVIPC]: Make msgp->mtext longer if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
5527
diff
changeset
|
308 #endif |
412 | 309 msgp->mtype = 1; |
310 if (msgsnd (s, msgp, strlen (msgp->mtext)+1, 0) < 0) | |
311 { | |
8360
e1518247fd63
(main): New local var progname saves argv[0].
Richard M. Stallman <rms@gnu.org>
parents:
8346
diff
changeset
|
312 fprintf (stderr, "%s: ", progname); |
412 | 313 perror ("msgsnd"); |
314 exit (1); | |
315 } | |
316 /* | |
317 * Now, wait for an answer | |
318 */ | |
319 printf ("Waiting for Emacs..."); | |
320 fflush (stdout); | |
321 | |
322 msgrcv (s, msgp, BUFSIZ, getpid (), 0); /* wait for anything back */ | |
323 strcpy (buf, msgp->mtext); | |
324 | |
325 printf ("\n%s\n", buf); | |
326 exit (0); | |
327 } | |
328 | |
329 #endif /* HAVE_SYSVIPC */ | |
330 | |
331 #endif /* HAVE_SOCKETS or HAVE_SYSVIPC */ | |
5527
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
332 |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
333 #ifndef HAVE_STRERROR |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
334 char * |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
335 strerror (errnum) |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
336 int errnum; |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
337 { |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
338 extern char *sys_errlist[]; |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
339 extern int sys_nerr; |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
340 |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
341 if (errnum >= 0 && errnum < sys_nerr) |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
342 return sys_errlist[errnum]; |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
343 return (char *) "Unknown error"; |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
344 } |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
345 |
51451a050975
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5522
diff
changeset
|
346 #endif /* ! HAVE_STRERROR */ |