Mercurial > emacs
annotate src/m/gould.h @ 13396:b44cc5a62941
[!MULTI_FRAME] (Fmodify_frame_parameters): Add missing
declaration and initialization.
[MULTI_FRAME] (choose_minibuf_frame): Moved to minibuf.c; now
unconditional.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Sat, 04 Nov 1995 00:19:00 +0000 |
parents | 1d4654a97585 |
children | ee40177f6c68 |
rev | line source |
---|---|
456 | 1 /* machine description file for Gould PowerNodes with UTX/32 2.0 and 2.1. |
2 (See MACHINES for older versions.) | |
3 | |
4 * NOTE: If you are running a pre-release of UTX/32 2.1 you should #define | |
5 * RELEASE2_1 in config.h. This may also be necessary with un-updated | |
6 * official releases of 2.1 | |
7 | |
8 Copyright (C) 1986 Free Software Foundation, Inc. | |
9 | |
10 This file is part of GNU Emacs. | |
11 | |
12 GNU Emacs is free software; you can redistribute it and/or modify | |
13 it under the terms of the GNU General Public License as published by | |
3699 | 14 the Free Software Foundation; either version 2, or (at your option) |
456 | 15 any later version. |
16 | |
17 GNU Emacs is distributed in the hope that it will be useful, | |
18 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 GNU General Public License for more details. | |
21 | |
22 You should have received a copy of the GNU General Public License | |
23 along with GNU Emacs; see the file COPYING. If not, write to | |
24 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
25 | |
26 | |
27 /* The following line tells the configuration script what sort of | |
28 operating system this machine is likely to run. | |
29 USUAL-OPSYS="note" | |
30 | |
31 NOTE-START | |
32 Gould Power Node (-machine=gould -opsystem=bsd4-2 or bsd4-3) | |
33 (gould.h; s-bsd4-2.h or s-bsd4-3.h) | |
34 | |
35 18.36 worked on versions 1.2 and 2.0 of the operating system. | |
36 | |
37 On UTX/32 2.0, use -opsystem=bsd4-3 | |
38 | |
39 On UTX/32 1.2 and UTX/32S 1.0, use -opsystem=bsd4-2 and note that compiling | |
40 lib-src/sorted-doc tickles a compiler bug: remove the -g flag to cc in the | |
41 makefile. | |
42 | |
43 UTX/32 1.3 has a bug in the bcopy library routine. Fix it by | |
44 #undef BSTRING in gould.h. | |
45 | |
46 Version 19 incorporates support for releases 2.1 and later of UTX/32. | |
47 A site running a pre-release of 2.1 should #define RELEASE2_1 in config.h. | |
48 NOTE-END */ | |
49 | |
9095
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
50 /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word |
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
51 is the most significant byte. */ |
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
52 |
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
53 #define WORDS_BIG_ENDIAN |
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
54 |
456 | 55 /* Define NO_ARG_ARRAY if you cannot take the address of the first of a |
56 * group of arguments and treat it as an array of the arguments. */ | |
57 | |
58 #define NO_ARG_ARRAY | |
59 | |
60 /* Define WORD_MACHINE if addresses and such have | |
61 * to be corrected before they can be used as byte counts. */ | |
62 | |
63 /* #define WORD_MACHINE */ | |
64 | |
65 /* Now define a symbol for the cpu type, if your compiler | |
66 does not define it automatically */ | |
67 | |
68 #ifndef GOULD | |
69 #define GOULD | |
70 #endif | |
71 | |
72 /* sel is an old preprocessor name on gould machines | |
73 - it is no longer needed and interferes with a variable in xmenu.c */ | |
74 #undef sel | |
75 | |
76 /* Use type int rather than a union, to represent Lisp_Object */ | |
77 /* This is desirable for most machines. */ | |
78 | |
79 #define NO_UNION_TYPE | |
80 | |
81 /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend | |
82 the 24-bit bit field into an int. In other words, if bit fields | |
83 are always unsigned. | |
84 | |
85 If you use NO_UNION_TYPE, this flag does not matter. */ | |
86 | |
87 #define EXPLICIT_SIGN_EXTEND | |
88 | |
89 /* Data type of load average, as read out of kmem. */ | |
90 | |
91 #define LOAD_AVE_TYPE double | |
92 | |
93 /* Convert that into an integer that is 100 for a load average of 1.0 */ | |
94 | |
95 #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0) | |
96 | |
97 /* Define CANNOT_DUMP on machines where unexec does not work. | |
98 Then the function dump-emacs will not be defined | |
99 and temacs will do (load "loadup") automatically unless told otherwise. */ | |
100 | |
101 /* #define CANNOT_DUMP */ | |
102 | |
103 /* Define VIRT_ADDR_VARIES if the virtual addresses of | |
104 pure and impure space as loaded can vary, and even their | |
105 relative order cannot be relied on. | |
106 | |
107 Otherwise Emacs assumes that text space precedes data space, | |
108 numerically. */ | |
109 | |
110 #define VIRT_ADDR_VARIES | |
111 | |
112 /* Define C_ALLOCA if this machine does not support a true alloca | |
113 and the one written in C should be used instead. | |
114 Define HAVE_ALLOCA to say that the system provides a properly | |
115 working alloca function and it should be used. | |
116 Define neither one if an assembler-language alloca | |
117 in the file alloca.s should be used. */ | |
118 | |
119 #define C_ALLOCA | |
120 #define STACK_DIRECTION -1 /* grows towards lower addresses on Gould UTX/32 */ | |
121 | |
122 /* No need to extend the user stack. */ | |
123 | |
124 /* If this is a 2.1 system, COFF will be predefined by cpp. If it's */ | |
125 /* pre-2.1 COFF won't be defined, which is as it should be. */ | |
126 | |
127 #ifdef COFF | |
128 | |
129 #define HEADER_INCL_IN_TEXT | |
130 #define COFF_BSD_SYMBOLS | |
131 | |
132 /* Seems to be necessary with coff */ | |
133 #define NO_REMAP | |
134 | |
135 #ifndef GOULD_NP1 | |
136 /* gould-np1.h includes this file */ | |
137 /* keep the old value - don't skip over the headers */ | |
138 #define KEEP_OLD_TEXT_SCNPTR | |
139 #define KEEP_OLD_PADDR | |
140 #ifndef RELEASE2_1 | |
141 #define ADJUST_TEXTBASE | |
142 #endif /*RELEASE2_1*/ | |
143 #endif /* GOULD_NP1 */ | |
144 | |
145 #ifdef IN_UNEXEC | |
146 /* make Gould NP and PN COFF look like USG COFF */ | |
147 /* PN COFF */ | |
148 #define aouthdr old_exec | |
149 /* PN COFF doesn't have a data_start or a_dtbase field in its */ | |
150 /* optional header, so substitute a junk field */ | |
151 #define a_dtbase a_ccvers | |
152 /* Gould COFF */ | |
153 #define magic a_magic | |
154 #define tsize a_text | |
155 #define dsize a_data | |
156 #define bsize a_bss | |
157 #define entry a_entry | |
158 #define text_start a_txbase | |
159 #define data_start a_dtbase | |
160 #endif /* IN_UNEXEC */ | |
161 | |
162 /* Define how to search all pty names. | |
163 * This is for UTX 2.1 and greater on PN and all NP versions. It is only | |
164 * accident that this happens to correspond to the same versions of UTX | |
165 * as COFF does, but we'll take advantage of that here. | |
166 */ | |
167 | |
168 /*#define USE_PTY_PAIR*/ | |
169 | |
170 #endif /* COFF */ | |
171 | |
172 /* -g is sometimes broken on the Gould. */ | |
173 | |
174 #define C_DEBUG_SWITCH | |
175 | |
176 /* Comparing pointers as unsigned ints tickles a bug in older compilers. */ | |
177 | |
178 #define PNTR_COMPARISON_TYPE int | |
179 | |
180 /* The GOULD machine counts the a.out file header as part of the text. */ | |
181 | |
182 #define A_TEXT_OFFSET(HDR) sizeof (HDR) | |
183 | |
184 /* Machine-dependent action when about to dump an executable file. */ | |
185 | |
186 #ifndef COFF | |
187 #define ADJUST_EXEC_HEADER \ | |
188 unexec_text_start = hdr.a_txbase + sizeof (hdr); | |
189 #endif | |
190 | |
191 /* We use the system's crt0.o. Somehow it avoids losing | |
192 with `environ' the way most standard crt0.o's do. */ | |
193 | |
194 #define START_FILES pre-crt0.o /lib/crt0.o |