Mercurial > emacs
annotate src/s/irix4-0.h @ 41109:0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Use defsubst rather than defalias, to get better doc strings.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 15 Nov 2001 23:57:43 +0000 |
parents | ddad63427df2 |
children | 4be8406ebef9 |
rev | line source |
---|---|
1493 | 1 #include "irix3-3.h" |
2 | |
3 #define USG5_3 | |
3305 | 4 #define IRIX4 |
18759
7b452f99a32f
(XPointer): Define XPointer.
Richard M. Stallman <rms@gnu.org>
parents:
18702
diff
changeset
|
5 /* XPointer is not defined in the older X headers -- JPff@maths.bath.ac.uk */ |
7b452f99a32f
(XPointer): Define XPointer.
Richard M. Stallman <rms@gnu.org>
parents:
18702
diff
changeset
|
6 #define XPointer caddr_t |
1493 | 7 |
8 #define HAVE_ALLOCA | |
3098
6aee2746a385
(C_ALLOCA, alloca): Definitions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
3026
diff
changeset
|
9 #ifndef NOT_C_CODE |
6aee2746a385
(C_ALLOCA, alloca): Definitions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
3026
diff
changeset
|
10 #include <alloca.h> |
6aee2746a385
(C_ALLOCA, alloca): Definitions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
3026
diff
changeset
|
11 #endif |
6aee2746a385
(C_ALLOCA, alloca): Definitions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
3026
diff
changeset
|
12 |
6aee2746a385
(C_ALLOCA, alloca): Definitions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
3026
diff
changeset
|
13 #undef NEED_SIOCTL |
1493 | 14 |
10077
ee5e9fbcd051
(NEED_UNISTD_H): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
8892
diff
changeset
|
15 /* Include unistd.h, even though we don't define POSIX. */ |
ee5e9fbcd051
(NEED_UNISTD_H): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
8892
diff
changeset
|
16 #define NEED_UNISTD_H |
ee5e9fbcd051
(NEED_UNISTD_H): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
8892
diff
changeset
|
17 |
3111
864024ebf526
(SIGNALS_VIA_CHARACTERS): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
3098
diff
changeset
|
18 /* Make process_send_signal work by "typing" a signal character on the pty. */ |
864024ebf526
(SIGNALS_VIA_CHARACTERS): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
3098
diff
changeset
|
19 #define SIGNALS_VIA_CHARACTERS |
864024ebf526
(SIGNALS_VIA_CHARACTERS): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
3098
diff
changeset
|
20 |
18702
df65a2e6eb4e
(C_SWITCH_SYSTEM): Add -Wf,-XNh option.
Richard M. Stallman <rms@gnu.org>
parents:
10077
diff
changeset
|
21 #ifndef __GNUC__ |
1493 | 22 /* use K&R C */ |
18702
df65a2e6eb4e
(C_SWITCH_SYSTEM): Add -Wf,-XNh option.
Richard M. Stallman <rms@gnu.org>
parents:
10077
diff
changeset
|
23 /* We need to increase the expression tree space with -Wf,-XNh |
df65a2e6eb4e
(C_SWITCH_SYSTEM): Add -Wf,-XNh option.
Richard M. Stallman <rms@gnu.org>
parents:
10077
diff
changeset
|
24 (ghazi@caip.rutgers.edu 7/8/97.) |
df65a2e6eb4e
(C_SWITCH_SYSTEM): Add -Wf,-XNh option.
Richard M. Stallman <rms@gnu.org>
parents:
10077
diff
changeset
|
25 */ |
23843
b250f3dae8d9
(C_SWITCH_SYSTEM) [!__GNUC__]: Increase space.
Karl Heuer <kwzh@gnu.org>
parents:
18759
diff
changeset
|
26 #define C_SWITCH_SYSTEM -cckr -Wf,-XNh4000 |
1856
c4768d9b6a2f
(C_SWITCH_MACHINE): Don't define if GCC.
Richard M. Stallman <rms@gnu.org>
parents:
1493
diff
changeset
|
27 #endif |
1493 | 28 |
29 /* SGI has all the fancy wait stuff, but we can't include sys/wait.h | |
30 because it defines BIG_ENDIAN and LITTLE_ENDIAN (ugh!.) Instead | |
31 we'll just define WNOHANG right here. | |
32 (An implicit decl is good enough for wait3.) */ | |
33 | |
34 #define WNOHANG 0x1 | |
35 | |
36 /* No need to use sprintf to get the tty name--we get that from _getpty. */ | |
2992
8c74c4712164
Changes for SGI from Matthew J Brown <mjb@doc.ic.ac.uk>.
Jim Blandy <jimb@redhat.com>
parents:
2223
diff
changeset
|
37 #undef PTY_TTY_NAME_SPRINTF |
1493 | 38 #define PTY_TTY_NAME_SPRINTF |
39 /* No need to get the pty name at all. */ | |
40 #define PTY_NAME_SPRINTF | |
41 /* We need only try once to open a pty. */ | |
42 #define PTY_ITERATION | |
43 /* Here is how to do it. */ | |
44 /* It is necessary to prevent SIGCHLD signals within _getpty. | |
45 So we block them. */ | |
46 #define PTY_OPEN \ | |
47 { \ | |
48 int mask = sigblock (sigmask (SIGCHLD)); \ | |
49 char *name = _getpty (&fd, O_RDWR | O_NDELAY, 0600, 0); \ | |
50 sigsetmask(mask); \ | |
51 if (name == 0) \ | |
52 return -1; \ | |
53 if (fd < 0) \ | |
54 return -1; \ | |
55 if (fstat (fd, &stb) < 0) \ | |
56 return -1; \ | |
57 strcpy (pty_name, name); \ | |
58 } |