Mercurial > emacs
annotate src/s/irix4-0.h @ 16842:72276b334084 before-thomas-posix1996 glibc-2_0_2 libc-970108 libc-970109 libc-970110 libc-970111 libc-970112 libc-970113 libc-970114 libc-970115 libc-970116 libc-970117 libc-970118 libc-970119 libc-970120 libc-970121 libc-970122 libc-970123 libc-970124 libc-970125 libc-970126 libc-970127 libc-970128 libc-970129 libc-970130 libc-970131 libc-970201 libc-970202 libc-970203 libc-970204 libc-970205 libc-970206 libc-970207 libc-970208 libc-970209 libc-970210 libc-970211 libc-970212 libc-970213 libc-970214 libc-970215 libc-970216 libc-970217 libc-970218 libc-970219 libc-970220 libc-970221 libc-970222 libc-970223 libc-970224 libc-970225 libc-970226 libc-970227 libc-970228 libc-970301 libc-970302 libc-970303 libc-970304 libc-970305 libc-970306 libc-970307 libc-970308 libc-970309 libc-970310 libc-970311 libc-970312 libc-970313 libc-970314 libc-970315 libc-970316 libc-970317 libc-970318 libc-970319 libc-970320 libc-970321 libc-970322 libc-970323 libc-970324 libc20x-970306 libc20x-97031 libc20x-970316 libc20x-970318 libc20x-970319 libc20x-970404 root-libc-2_0_x-branch
Add hppa1.1-hitachi-hiuxmpp support, passed along by rms.
author | David J. MacKenzie <djm@gnu.org> |
---|---|
date | Tue, 07 Jan 1997 19:29:28 +0000 |
parents | ee5e9fbcd051 |
children | df65a2e6eb4e |
rev | line source |
---|---|
1493 | 1 #include "irix3-3.h" |
2 | |
3 #define USG5_3 | |
3305 | 4 #define IRIX4 |
1493 | 5 |
6 #define HAVE_ALLOCA | |
3098
6aee2746a385
(C_ALLOCA, alloca): Definitions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
3026
diff
changeset
|
7 #ifndef NOT_C_CODE |
6aee2746a385
(C_ALLOCA, alloca): Definitions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
3026
diff
changeset
|
8 #include <alloca.h> |
6aee2746a385
(C_ALLOCA, alloca): Definitions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
3026
diff
changeset
|
9 #endif |
6aee2746a385
(C_ALLOCA, alloca): Definitions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
3026
diff
changeset
|
10 |
6aee2746a385
(C_ALLOCA, alloca): Definitions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
3026
diff
changeset
|
11 #undef NEED_SIOCTL |
1493 | 12 |
10077
ee5e9fbcd051
(NEED_UNISTD_H): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
8892
diff
changeset
|
13 /* 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
|
14 #define NEED_UNISTD_H |
ee5e9fbcd051
(NEED_UNISTD_H): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
8892
diff
changeset
|
15 |
3111
864024ebf526
(SIGNALS_VIA_CHARACTERS): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
3098
diff
changeset
|
16 /* 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
|
17 #define SIGNALS_VIA_CHARACTERS |
864024ebf526
(SIGNALS_VIA_CHARACTERS): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
3098
diff
changeset
|
18 |
1493 | 19 /* use K&R C */ |
1856
c4768d9b6a2f
(C_SWITCH_MACHINE): Don't define if GCC.
Richard M. Stallman <rms@gnu.org>
parents:
1493
diff
changeset
|
20 #ifndef __GNUC__ |
1493 | 21 #define C_SWITCH_MACHINE -cckr |
1856
c4768d9b6a2f
(C_SWITCH_MACHINE): Don't define if GCC.
Richard M. Stallman <rms@gnu.org>
parents:
1493
diff
changeset
|
22 #endif |
1493 | 23 |
24 /* SGI has all the fancy wait stuff, but we can't include sys/wait.h | |
25 because it defines BIG_ENDIAN and LITTLE_ENDIAN (ugh!.) Instead | |
26 we'll just define WNOHANG right here. | |
27 (An implicit decl is good enough for wait3.) */ | |
28 | |
29 #define WNOHANG 0x1 | |
30 | |
31 /* 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
|
32 #undef PTY_TTY_NAME_SPRINTF |
1493 | 33 #define PTY_TTY_NAME_SPRINTF |
34 /* No need to get the pty name at all. */ | |
35 #define PTY_NAME_SPRINTF | |
36 /* We need only try once to open a pty. */ | |
37 #define PTY_ITERATION | |
38 /* Here is how to do it. */ | |
39 /* It is necessary to prevent SIGCHLD signals within _getpty. | |
40 So we block them. */ | |
41 #define PTY_OPEN \ | |
42 { \ | |
43 int mask = sigblock (sigmask (SIGCHLD)); \ | |
44 char *name = _getpty (&fd, O_RDWR | O_NDELAY, 0600, 0); \ | |
45 sigsetmask(mask); \ | |
46 if (name == 0) \ | |
47 return -1; \ | |
48 if (fd < 0) \ | |
49 return -1; \ | |
50 if (fstat (fd, &stb) < 0) \ | |
51 return -1; \ | |
52 strcpy (pty_name, name); \ | |
53 } | |
3026 | 54 |
55 /* jpff@maths.bath.ac.uk reports `struct exception' is not defined | |
56 on this system, so inhibit use of matherr. */ | |
57 #define NO_MATHERR |