annotate src/s/irix4-0.h @ 122:d2f30a177268 r20-1b14

Import from CVS: tag r20-1b14
author cvs
date Mon, 13 Aug 2007 09:26:03 +0200
parents 376386a54a3c
children 538048ae2ab8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Synched up with: FSF 19.31. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 #include "irix3-3.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 #define USG5_3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 #define IRIX4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 #define HAVE_ALLOCA
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 #ifndef NOT_C_CODE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 #include <alloca.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 #undef NEED_SIOCTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 /* Make process_send_signal work by "typing" a signal character on the pty. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 #define SIGNALS_VIA_CHARACTERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 /* use K&R C */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 /* XEmacs change -- use ANSI, not K&R */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 #ifndef __GNUC__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 #define C_SWITCH_SYSTEM -xansi
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 /* SGI has all the fancy wait stuff, but we can't include sys/wait.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 because it defines BIG_ENDIAN and LITTLE_ENDIAN (ugh!.) Instead
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 we'll just define WNOHANG right here.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 (An implicit decl is good enough for wait3.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 /* [XEmacs: Now that we don't use BIG_ENDIAN/LITTLE_ENDIAN, it's safe
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 to include wait.h. Should something change here?] */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #define WNOHANG 0x1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 /* No need to use sprintf to get the tty name--we get that from _getpty. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #undef PTY_TTY_NAME_SPRINTF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #define PTY_TTY_NAME_SPRINTF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 /* No need to get the pty name at all. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #define PTY_NAME_SPRINTF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 /* We need only try once to open a pty. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 #define PTY_ITERATION
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 /* Here is how to do it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 /* It is necessary to prevent SIGCHLD signals within _getpty.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 So we block them. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 #define PTY_OPEN \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 char *name; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 EMACS_BLOCK_SIGCHLD; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 name = _getpty (&fd, O_RDWR | O_NDELAY, 0600, 0); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 EMACS_UNBLOCK_SIGCHLD; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 if (name == 0) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 return -1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 if (fd < 0) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 return -1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 if (fstat (fd, &stb) < 0) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 return -1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 strcpy (pty_name, name); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 /* jpff@maths.bath.ac.uk reports `struct exception' is not defined
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 on this system, so inhibit use of matherr. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 #define NO_MATHERR