annotate src/s/ptx.h @ 390:c6012109f545 r21-2-10

Import from CVS: tag r21-2-10
author cvs
date Mon, 13 Aug 2007 11:10:03 +0200
parents 6330739388db
children
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 /* Definitions file for GNU Emacs running on Sequent DYNIX/ptx 1.x/2.x
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1987, 1990 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 This file is part of GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 /* Synched up with: FSF 19.31. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 /* This file was written by Bill Burton <billb@progress.com>. Parts were
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 adapted from m-ptx1-2.h and process.c as distributed with the Emacs 18.57
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 on the Sequent Public software tape. Other parts were adapted from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 usg5-4.h. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 /* Use the SysVr3 file for base configuration even though much is changed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #define DONT_DEFINE_NO_REMAP /* `static' hack not needed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include "usg5-3.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 /* Undo these defines because they are incorrect or need to be changed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #undef USG_SHARED_LIBRARIES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 /* PTX has System V streams. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #define SYSV_STREAMS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 /* Leave out -lPW since it conflicts with term.o and because we're not sure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 if the alloca found there by autoconf should be trusted on PTX. */
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 0
diff changeset
40 #define LIB_STANDARD "-lc"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 #ifndef HAVE_SOCKETS /* determined by configure */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 #define NO_SUBPROCESSES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 #ifdef HAVE_X_WINDOWS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 /* This is also defined so that lib-src/profile can link. */
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 0
diff changeset
49 #define LIBS_SYSTEM "-lseq"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 #else /* ! HAVE_X_WINDOWS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 #ifdef HAVE_SOCKETS
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 0
diff changeset
54 #define LIBS_SYSTEM "-lsocket -linet -lnsl -lseq"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 #else
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 0
diff changeset
56 #define LIBS_SYSTEM "-lseq"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 #endif /* ! HAVE_X_WINDOWS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 /* No <sioctl.h> */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 #define NO_SIOCTL_H
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 /* If we have X windows, configure should find gettimeofday in -lX11.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 Since we emulate gettimeofday below, we really have it anyway. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 #ifndef HAVE_GETTIMEOFDAY
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 #define HAVE_GETTIMEOFDAY
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 #ifdef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 #include <sys/stropts.h> /* Support for pty's */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 #include <sys/conf.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 /*#define BROKEN_SIGIO*/ /* SIGIO is already undef'd elsewhere. PTX
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 has SIGIO, but it's just an alias for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 SIGPOLL. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 /* Emulate gettimeofday() except for the time zone information which Emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 doesn't use anyway. Get_process_stats() is in -lseq. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 #include <sys/procstats.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 #define gettimeofday(tp, tzp) get_process_stats (tp, PS_SELF, 0, 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 /* Define timezone since it's not in sys/time.h. Unfortunately, this causes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 trouble when building with X since this struct is defined in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 <X11/Xos.h>. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 struct timezone
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 int tz_minuteswest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 int tz_dsttime;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 /* Unfortunately, this define is not checked in all files including
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 <X11/Xos.h> so we can't use it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 /* #define XOS_NEEDS_TIME_H */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 /* In ptx/WINDOWS, this prevents problems with the timezone struct being
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 redefined in <X11/Xos.h>. It seems the necessary include files are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 included via systime.h so leaving them out here is not a problem. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 may not work in X11R5 or X11R6. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 #define __TIMEVAL__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 #endif /* emacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 /* PTX has termios */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 #undef BROKEN_TIOCGWINSZ
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 #undef BROKEN_TIOCGETC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 /* PTX has pty's but not like System V */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 #define HAVE_PTYS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 #undef SYSV_PTYS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 /* Provide pty support which is defined into process.c:allocate_pty.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 Basic ideas for handling getpseudotty were lifted from process.c in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 Emacs 18.57 included on the Sequent Public Software tape. However, this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 implementation bears almost no resemblance to the original and does not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 require that process.c be patched. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 #define PTY_ITERATION \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 char *mastername, *slavename; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 #define PTY_OPEN \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 if (failed_count++ >= 5) break; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 if ((fd = getpseudotty (&slavename, &mastername)) < 0) { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 error("Out of ptys."); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 continue; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 strcpy (pty_name, slavename);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 /* Define these to prevent the default logic in process.c:allocate_pty
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 from being used. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 #define PTY_NAME_SPRINTF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 #define PTY_TTY_NAME_SPRINTF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 /* PTX doesn't seem to have memmove. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 #define MEMMOVE_MISSING