428
|
1 /* alliant.h Alliant machine running system version 2 or 3.
|
|
2 Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc.
|
|
3 Note that for version 1 of the Alliant system
|
|
4 you should use alliant1.h instead of this file.
|
|
5 Use alliant4.h for version 4.
|
|
6
|
|
7 This file is part of GNU Emacs.
|
|
8
|
|
9 GNU Emacs is free software; you can redistribute it and/or modify
|
|
10 it under the terms of the GNU General Public License as published by
|
|
11 the Free Software Foundation; either version 2, or (at your option)
|
|
12 any later version.
|
|
13
|
|
14 GNU Emacs is distributed in the hope that it will be useful,
|
|
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17 GNU General Public License for more details.
|
|
18
|
|
19 You should have received a copy of the GNU General Public License
|
|
20 along with XEmacs; see the file COPYING. If not, write to
|
|
21 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
22 Boston, MA 02111-1307, USA. */
|
|
23
|
|
24 /* Synched up with: FSF 19.31. */
|
|
25
|
|
26 /* The following line tells the configuration script what sort of
|
|
27 operating system this machine is likely to run.
|
|
28 USUAL-OPSYS="bsd4-2" */
|
|
29
|
|
30 /* Now define a symbol for the cpu type, if your compiler
|
|
31 does not define it automatically:
|
|
32 vax, m68000, ns16000, pyramid, orion, tahoe and APOLLO
|
|
33 are the ones defined so far. */
|
|
34
|
|
35 #define ALLIANT
|
|
36
|
|
37 /* No load average information available for Alliants. */
|
|
38
|
|
39 #undef LOAD_AVE_TYPE
|
|
40 #undef LOAD_AVE_CVT
|
|
41
|
|
42 /* Define CANNOT_DUMP on machines where unexec does not work.
|
|
43 Then the function dump-emacs will not be defined
|
|
44 and temacs will do (load "loadup") automatically unless told otherwise. */
|
|
45
|
|
46 #undef CANNOT_DUMP
|
|
47
|
|
48 /* Define C_ALLOCA if this machine does not support a true alloca
|
|
49 and the one written in C should be used instead.
|
|
50 Define HAVE_ALLOCA to say that the system provides a properly
|
|
51 working alloca function and it should be used.
|
|
52 Define neither one if an assembler-language alloca
|
|
53 in the file alloca.s should be used. */
|
|
54
|
|
55 #undef C_ALLOCA
|
|
56 #define HAVE_ALLOCA
|
|
57
|
|
58 #ifdef ALLIANT_1
|
|
59 #define C_ALLOCA
|
|
60 #undef HAVE_ALLOCA
|
|
61 #endif /* ALLIANT_1 */
|
|
62
|
|
63 /* Define NO_REMAP if memory segmentation makes it not work well
|
|
64 to change the boundary between the text section and data section
|
|
65 when Emacs is dumped. If you define this, the preloaded Lisp
|
|
66 code will not be sharable; but that's better than failing completely. */
|
|
67 /* Actually, Alliant CONCENTRIX does paging "right":
|
|
68 data pages are copy-on-write, which means that the pure data areas
|
|
69 are shared automatically and remapping is not necessary. */
|
|
70
|
|
71 #define NO_REMAP
|
|
72
|
|
73 /* Alliant needs special crt0.o because system version is not reentrant */
|
|
74
|
|
75 #define START_FILES "crt0.o"
|
|
76
|
|
77 /* Alliant dependent code for dumping executing image.
|
|
78 See crt0.c code for alliant. */
|
|
79
|
|
80 #define ADJUST_EXEC_HEADER {\
|
|
81 extern int _curbrk, _setbrk;\
|
|
82 _setbrk = _curbrk;\
|
|
83 hdr.a_bss_addr = bss_start;\
|
|
84 unexec_text_start = hdr.a_text_addr;}
|
|
85
|
|
86 /* cc screws up on long names. Try making cpp replace them. */
|
|
87
|
|
88 #ifdef ALLIANT_1
|
|
89 #define Finsert_abbrev_table_description Finsert_abbrev_table_descrip
|
|
90 #define internal_with_output_to_temp_buffer internal_with_output_to_tem
|
|
91 #endif
|
|
92
|
|
93 /* "vector" is a typedef in /usr/include/machine/reg.h, so its use as
|
|
94 a variable name causes errors when compiling under ANSI C. */
|
|
95
|
|
96 #define vector xxvector
|