annotate src/m/ibm370aix.h @ 12419:818d7bcf63b0

[MACH]: Use built-in alloca, set START_FILES.
author Richard M. Stallman <rms@gnu.org>
date Thu, 29 Jun 1995 01:40:18 +0000
parents ee5e9fbcd051
children c8fb06423da0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4464
3fbda0e7f793 Total rewrite; includes ibmps2-aix.h.
Richard M. Stallman <rms@gnu.org>
parents: 3700
diff changeset
1 /* m/ file for IBM 370 running AIX. */
456
c0335c02f1d7 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2
4464
3fbda0e7f793 Total rewrite; includes ibmps2-aix.h.
Richard M. Stallman <rms@gnu.org>
parents: 3700
diff changeset
3 #include "ibmps2-aix.h"
456
c0335c02f1d7 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4
4464
3fbda0e7f793 Total rewrite; includes ibmps2-aix.h.
Richard M. Stallman <rms@gnu.org>
parents: 3700
diff changeset
5 #define AIX
456
c0335c02f1d7 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6
10077
ee5e9fbcd051 (NEED_UNISTD_H): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 9095
diff changeset
7 /* Include unistd.h, even though we don't define POSIX. */
ee5e9fbcd051 (NEED_UNISTD_H): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 9095
diff changeset
8 #define NEED_UNISTD_H
ee5e9fbcd051 (NEED_UNISTD_H): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 9095
diff changeset
9
4642
aceaf48ee60d (HAVE_VFORK, INTEL386, aix386): Add #undef.
Richard M. Stallman <rms@gnu.org>
parents: 4464
diff changeset
10 /* these were defined in "ibmps2-aix.h" */
aceaf48ee60d (HAVE_VFORK, INTEL386, aix386): Add #undef.
Richard M. Stallman <rms@gnu.org>
parents: 4464
diff changeset
11 #undef INTEL386
aceaf48ee60d (HAVE_VFORK, INTEL386, aix386): Add #undef.
Richard M. Stallman <rms@gnu.org>
parents: 4464
diff changeset
12 #undef aix386
aceaf48ee60d (HAVE_VFORK, INTEL386, aix386): Add #undef.
Richard M. Stallman <rms@gnu.org>
parents: 4464
diff changeset
13
9095
23f72b18b420 (WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents: 8892
diff changeset
14 /* 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
15 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
16
23f72b18b420 (WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents: 8892
diff changeset
17 #define WORDS_BIG_ENDIAN
23f72b18b420 (WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents: 8892
diff changeset
18
4464
3fbda0e7f793 Total rewrite; includes ibmps2-aix.h.
Richard M. Stallman <rms@gnu.org>
parents: 3700
diff changeset
19 #undef TEXT_START
3fbda0e7f793 Total rewrite; includes ibmps2-aix.h.
Richard M. Stallman <rms@gnu.org>
parents: 3700
diff changeset
20 #undef SEGMENT_MASK
3fbda0e7f793 Total rewrite; includes ibmps2-aix.h.
Richard M. Stallman <rms@gnu.org>
parents: 3700
diff changeset
21 #undef DATA_SECTION_ALIGNMENT
456
c0335c02f1d7 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
22
4464
3fbda0e7f793 Total rewrite; includes ibmps2-aix.h.
Richard M. Stallman <rms@gnu.org>
parents: 3700
diff changeset
23 #define TEXT_START 0
3fbda0e7f793 Total rewrite; includes ibmps2-aix.h.
Richard M. Stallman <rms@gnu.org>
parents: 3700
diff changeset
24 #define SEGMENT_MASK 0
3fbda0e7f793 Total rewrite; includes ibmps2-aix.h.
Richard M. Stallman <rms@gnu.org>
parents: 3700
diff changeset
25 #define DATA_SECTION_ALIGNMENT 0x00001000
456
c0335c02f1d7 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
26
4464
3fbda0e7f793 Total rewrite; includes ibmps2-aix.h.
Richard M. Stallman <rms@gnu.org>
parents: 3700
diff changeset
27 #undef LOAD_AVE_CVT
3fbda0e7f793 Total rewrite; includes ibmps2-aix.h.
Richard M. Stallman <rms@gnu.org>
parents: 3700
diff changeset
28 #undef LOAD_AVE_TYPE
456
c0335c02f1d7 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
29 /* Data type of load average, as read out of kmem. */
4464
3fbda0e7f793 Total rewrite; includes ibmps2-aix.h.
Richard M. Stallman <rms@gnu.org>
parents: 3700
diff changeset
30 #define LOAD_AVE_CVT(x) (int)(((double) (x)) * 100.0 / 1.0)
456
c0335c02f1d7 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
31 #define LOAD_AVE_TYPE double
c0335c02f1d7 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
32
4464
3fbda0e7f793 Total rewrite; includes ibmps2-aix.h.
Richard M. Stallman <rms@gnu.org>
parents: 3700
diff changeset
33 #undef LIBS_MACHINE
3fbda0e7f793 Total rewrite; includes ibmps2-aix.h.
Richard M. Stallman <rms@gnu.org>
parents: 3700
diff changeset
34 #define LIBS_MACHINE
4642
aceaf48ee60d (HAVE_VFORK, INTEL386, aix386): Add #undef.
Richard M. Stallman <rms@gnu.org>
parents: 4464
diff changeset
35 #undef HAVE_VFORK
456
c0335c02f1d7 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
36
4464
3fbda0e7f793 Total rewrite; includes ibmps2-aix.h.
Richard M. Stallman <rms@gnu.org>
parents: 3700
diff changeset
37 #undef LD_SWITCH_MACHINE
3fbda0e7f793 Total rewrite; includes ibmps2-aix.h.
Richard M. Stallman <rms@gnu.org>
parents: 3700
diff changeset
38 #define LD_SWITCH_MACHINE -xa