annotate src/s/irix4-0.h @ 185:3d6bfa290dbd r20-3b19

Import from CVS: tag r20-3b19
author cvs
date Mon, 13 Aug 2007 09:55:28 +0200
parents 2d532a89d707
children c5d627a313b1
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 #undef NEED_SIOCTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 /* Make process_send_signal work by "typing" a signal character on the pty. */
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 163
diff changeset
11 /* #define SIGNALS_VIA_CHARACTERS */ /* mrb */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 /* use K&R C */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 /* XEmacs change -- use ANSI, not K&R */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 #ifndef __GNUC__
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 149
diff changeset
16 #define C_SWITCH_SYSTEM "-xansi"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 /* 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
20 because it defines BIG_ENDIAN and LITTLE_ENDIAN (ugh!.) Instead
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 we'll just define WNOHANG right here.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 (An implicit decl is good enough for wait3.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 /* [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
24 to include wait.h. Should something change here?] */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 #define WNOHANG 0x1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 /* 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
29 #undef PTY_TTY_NAME_SPRINTF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #define PTY_TTY_NAME_SPRINTF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 /* No need to get the pty name at all. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #define PTY_NAME_SPRINTF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 /* We need only try once to open a pty. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #define PTY_ITERATION
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 /* Here is how to do it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 /* It is necessary to prevent SIGCHLD signals within _getpty.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 So we block them. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #define PTY_OPEN \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 char *name; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 EMACS_BLOCK_SIGCHLD; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 name = _getpty (&fd, O_RDWR | O_NDELAY, 0600, 0); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 EMACS_UNBLOCK_SIGCHLD; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 if (name == 0) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 return -1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 if (fd < 0) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 return -1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 if (fstat (fd, &stb) < 0) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 return -1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 strcpy (pty_name, name); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 /* jpff@maths.bath.ac.uk reports `struct exception' is not defined
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 on this system, so inhibit use of matherr. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 #define NO_MATHERR