comparison src/m/ibmrt-aix.h @ 446:76b7a95526d3

Initial revision
author Jim Blandy <jimb@redhat.com>
date Fri, 06 Dec 1991 07:16:11 +0000
parents
children 1ffd52c765c7
comparison
equal deleted inserted replaced
445:2a2230dd1b1c 446:76b7a95526d3
1 /* RTPC AIX machine/system dependent defines
2 Copyright (C) 1988 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 1, or (at your option)
9 any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20
21 /* The following line tells the configuration script what sort of
22 operating system this machine is likely to run.
23 USUAL-OPSYS="usg5-2-2" */
24
25 /* The following three symbols give information on
26 the size of various data types. */
27
28 #define SHORTBITS 16 /* Number of bits in a short */
29
30 #define INTBITS 32 /* Number of bits in an int */
31
32 #define LONGBITS 32 /* Number of bits in a long */
33
34 /* Define BIG_ENDIAN iff lowest-numbered byte in a word
35 is the most significant byte. */
36
37 #define BIG_ENDIAN
38
39 /* Define NO_ARG_ARRAY if you cannot take the address of the first of a
40 * group of arguments and treat it as an array of the arguments. */
41
42 #define NO_ARG_ARRAY
43
44 /* Define how to take a char and sign-extend into an int.
45 On machines where char is signed, this is a no-op. */
46
47 #define SIGN_EXTEND_CHAR(c) ((((int) (c)) << 24) >> 24)
48
49 /* Now define a symbol for the cpu type, if your compiler
50 does not define it automatically. */
51
52 #ifndef IBMAIX
53 #define IBMAIX
54 #endif
55
56 /* Use type int rather than a union, to represent Lisp_Object */
57 /* This is desirable for most machines. */
58
59 #define NO_UNION_TYPE
60
61 /* No load average information appears in the AIX kernel. VRM has this
62 info, and if anyone desires they should fix fns.c to get it out of VRM */
63
64 /* Define CANNOT_DUMP on machines where unexec does not work.
65 Then the function dump-emacs will not be defined
66 and temacs will do (load "loadup") automatically unless told otherwise. */
67
68 /* #define CANNOT_DUMP */
69
70 /* Define addresses, macros, change some setup for dump */
71
72 #undef COFF
73 #define NO_REMAP
74 #undef static
75 /* Since NO_REMAP, problem with statics doesn't exist */
76
77 #define TEXT_START 0x10000000
78 #define TEXT_END 0
79 #define DATA_START 0x20000000
80 #define DATA_END 0
81
82 /* The data segment in this machine always starts at address 0x20000000.
83 An address of data cannot be stored correctly in a Lisp object;
84 we always lose the high bits. We must tell XPNTR to add them back. */
85
86 #define DATA_SEG_BITS 0x20000000
87
88 #define N_BADMAG(x) BADMAG(x)
89 #define N_TXTOFF(x) A_TEXTPOS(x)
90 #define N_SYMOFF(x) A_SYMPOS(x)
91 #define A_TEXT_OFFSET(HDR) sizeof(HDR)
92 #define ADJUST_EXEC_HEADER \
93 unexec_text_start += sizeof(hdr); \
94 unexec_data_start = ohdr.a_dbase
95 #undef ADDR_CORRECT
96 #define ADDR_CORRECT(x) ((int)(x))
97
98 /* This is the offset of the executable's text, from the start of the file. */
99
100 #define A_TEXT_SEEK(HDR) (N_TXTOFF (hdr) + sizeof (hdr))
101
102 /* Define C_ALLOCA if this machine does not support a true alloca
103 and the one written in C should be used instead.
104 Define HAVE_ALLOCA to say that the system provides a properly
105 working alloca function and it should be used.
106 Define neither one if an assembler-language alloca
107 in the file alloca.s should be used. */
108
109 #define C_ALLOCA
110 #define STACK_DIRECTION -1 /* tell alloca.c which way it grows */
111
112 /* AIX has PTYs, so define here, along with macros needed to make them work. */
113
114 #define HAVE_PTYS
115 #define PTY_ITERATION for (i=0; i<256; i++)
116 #define PTY_NAME_SPRINTF sprintf (ptyname, "/dev/ptc%d", i);
117
118 #define PTY_TTY_NAME_SPRINTF \
119 { /* Check that server side not already open */ \
120 if ((ioctl (*ptyv, PTYSTATUS, 0) & 0xFFFF) != 0) \
121 { \
122 close (*ptyv); \
123 continue; \
124 } \
125 /* And finally to be sure we can open it later */ \
126 sprintf (ptyname, "/dev/pts%d", i); \
127 signal (SIGHUP,SIG_IGN); \
128 } /* ignore hangup at process end */
129
130 /* TIOCNOTTY doesn't occur on AIX, but the rest
131 of the conditionalized code in process.c does
132 the right thing if we fake this out. */
133 #define TIOCNOTTY IOCTYPE
134
135 /* AIX has IPC. It also has sockets, and either can be used for client/server.
136 I would suggest the client/server code be changed to use HAVE_SOCKETS rather
137 than BSD as the conditional if sockets provide any advantages. */
138
139 #define HAVE_SYSVIPC
140
141 /* AIX has sockets */
142
143 #define HAVE_SOCKETS
144 /* #define SKTPAIR */ /* SKTPAIR works, but what is advantage over pipes? */
145
146 /* Specify the font for X to use. */
147
148 #define X_DEFAULT_FONT "Rom14.500"
149
150 /* Here override various assumptions in ymakefile */
151
152 /* On AIX 2.2.1, use these definitions instead
153 #define C_SWITCH_MACHINE -I/usr/include -Nn2000
154 #define LIBS_MACHINE -lX -lrts
155 */
156
157 #define C_SWITCH_MACHINE -I/usr/include -I/usr/include/bsd -Nn2000
158 #define LIBS_MACHINE -lXMenu -lX -lsock -lbsd -lrts
159
160 #define OBJECTS_MACHINE hftctl.o
161 #define START_FILES /lib/crt0.o
162 /* -lXMenu, -lX must precede -lsock, -lbsd */
163 #define LD_SWITCH_MACHINE -n -T0x10000000 -K -e start
164
165 #if 0 /* I refuse to promulgate a recommendation that would make
166 users unable to debug - RMS. */
167 /* delete the following line to foil optimization, enable debugging */
168 #define C_DEBUG_SWITCH -O
169 #endif
170
171
172 /* Setup to do some things BSD way - these won't work previous to AIX 2.1.2 */
173
174 #include </usr/include/bsd/BSDtoAIX.h>
175 #define BSTRING
176 #define HAVE_DUP2
177 #define HAVE_GETTIMEOFDAY
178 #define HAVE_SELECT
179 #define HAVE_TIMEVAL
180 #define HAVE_VFORK
181
182 /* But don't use utimes() -- it causes SIGSEGV! Use utime() instead. */
183 #define USE_UTIME
184
185 /* AIX defines FIONREAD, but it does not work. */
186 #define BROKEN_FIONREAD