Mercurial > emacs
annotate src/m/tek4300.h @ 13950:e9615c5f477a
(sendmail-sync-aliases): Renamed from sendmail-synch-aliases.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Thu, 04 Jan 1996 23:10:07 +0000 |
parents | 1d4654a97585 |
children | ee40177f6c68 |
rev | line source |
---|---|
456 | 1 /* machine description file for tek4300. |
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 | |
3699 | 8 the Free Software Foundation; either version 2, or (at your option) |
456 | 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="bsd4-3" */ | |
24 | |
9095
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
25 /* 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
|
26 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
|
27 |
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
28 #define WORDS_BIG_ENDIAN |
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
29 |
456 | 30 /* Define NO_ARG_ARRAY if you cannot take the address of the first of a |
31 * group of arguments and treat it as an array of the arguments. */ | |
32 | |
33 #undef NO_ARG_ARRAY | |
34 | |
35 /* Define WORD_MACHINE if addresses and such have | |
36 * to be corrected before they can be used as byte counts. */ | |
37 | |
38 #undef WORD_MACHINE | |
39 | |
40 /* Now define a symbol for the cpu type, if your compiler | |
41 does not define it automatically. */ | |
42 | |
8340
d1ea9505eab3
(tek4300): Don't define if already defined.
Richard M. Stallman <rms@gnu.org>
parents:
8338
diff
changeset
|
43 #ifndef tek4300 |
456 | 44 #define tek4300 |
8340
d1ea9505eab3
(tek4300): Don't define if already defined.
Richard M. Stallman <rms@gnu.org>
parents:
8338
diff
changeset
|
45 #endif |
456 | 46 |
47 /* Use type int rather than a union, to represent Lisp_Object */ | |
48 | |
49 #define NO_UNION_TYPE | |
50 | |
51 /* Data type of load average, as read out of kmem. */ | |
52 | |
53 #define LOAD_AVE_TYPE long | |
54 | |
55 /* Convert that into an integer that is 100 for a load average of 1.0 */ | |
56 | |
57 #define LOAD_AVE_CVT(x) (x) | |
58 | |
59 /* Define NO_REMAP if memory segmentation makes it not work well | |
60 to change the boundary between the text section and data section | |
61 when Emacs is dumped. If you define this, the preloaded Lisp | |
62 code will not be sharable; but that's better than failing completely. */ | |
63 | |
64 #define NO_REMAP | |
65 | |
66 /* Define C_ALLOCA if this machine does not support a true alloca | |
67 and the one written in C should be used instead. */ | |
68 | |
69 #define C_ALLOCA | |
70 | |
71 /* setjmp and longjmp can safely replace _setjmp and _longjmp, */ | |
72 | |
73 #define _longjmp longjmp | |
74 #define _setjmp setjmp | |
75 | |
76 /* The text segment always starts at a fixed address. | |
77 This way we don't need to have a label _start defined. */ | |
78 | |
79 #define TEXT_START 0 | |
80 | |
81 /* The Tektronix exec struct for ZMAGIC files is struct zexec */ | |
82 | |
83 #define EXEC_HDR_TYPE struct zexec | |
84 | |
85 /* The entry-point label (start of text segment) is `start', not `__start'. */ | |
86 | |
87 #define DEFAULT_ENTRY_ADDRESS start | |
4609
a48508d05cce
(C_DEBUG_SWITCH, SYSTEM_MALLOC): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4546
diff
changeset
|
88 |
a48508d05cce
(C_DEBUG_SWITCH, SYSTEM_MALLOC): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4546
diff
changeset
|
89 /* Use the system's malloc calls, gmalloc.c won't work for us. */ |
a48508d05cce
(C_DEBUG_SWITCH, SYSTEM_MALLOC): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4546
diff
changeset
|
90 |
a48508d05cce
(C_DEBUG_SWITCH, SYSTEM_MALLOC): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4546
diff
changeset
|
91 #define SYSTEM_MALLOC |
a48508d05cce
(C_DEBUG_SWITCH, SYSTEM_MALLOC): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4546
diff
changeset
|
92 |
a48508d05cce
(C_DEBUG_SWITCH, SYSTEM_MALLOC): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4546
diff
changeset
|
93 /* In building xmakefile, "cc -E -g" forcibly reads from stdin. Since we |
a48508d05cce
(C_DEBUG_SWITCH, SYSTEM_MALLOC): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4546
diff
changeset
|
94 can't remove the CFLAGS from that "cc -E" invocation, make sure we |
a48508d05cce
(C_DEBUG_SWITCH, SYSTEM_MALLOC): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4546
diff
changeset
|
95 never pass -g. If you want to debug, remove the following, and fix |
a48508d05cce
(C_DEBUG_SWITCH, SYSTEM_MALLOC): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4546
diff
changeset
|
96 src/Makefile.in so it doesn't pass ${CFLAGS} when creating xmakefile. */ |
a48508d05cce
(C_DEBUG_SWITCH, SYSTEM_MALLOC): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4546
diff
changeset
|
97 |
a48508d05cce
(C_DEBUG_SWITCH, SYSTEM_MALLOC): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4546
diff
changeset
|
98 #define C_DEBUG_SWITCH |
5205 | 99 |
100 /* eirik@elf.ithaca.ny.us said this was needed in 19.22. */ | |
101 #define NO_MODE_T | |
8338 | 102 |
103 /* Process groups work in the traditional BSD manner. */ | |
104 | |
105 #define BSD_PGRPS |