Coverity fixes
[sxemacs] / src / m / hp800.h
1 /* machine description file for hp9000 series 800 machines.
2    Copyright (C) 1987 Free Software Foundation, Inc.
3
4 This file is part of SXEmacs
5
6 SXEmacs 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 3 of the License, or
9 (at your option) any later version.
10
11 SXEmacs 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 this program.  If not, see <http://www.gnu.org/licenses/>. */
18
19
20 /* Synched up with: FSF 19.31. */
21
22 /* The following line tells the configuration script what sort of 
23    operating system this machine is likely to run.
24    USUAL-OPSYS="hpux"  */
25
26 /* Now define a symbol for the cpu type, if your compiler
27    does not define it automatically:
28    Ones defined so far include vax, m68000, ns16000, pyramid,
29    orion, tahoe, APOLLO and many others */
30 #ifndef hp9000s800
31 #       define hp9000s800
32 #endif
33 \f
34 #ifdef __hpux
35 /* Now define a symbol for the cpu type, if your compiler
36    does not define it automatically:
37    Ones defined so far include vax, m68000, ns16000, pyramid,
38    orion, tahoe, APOLLO and many others */
39 #ifndef hp9000s800
40 #     define hp9000s800
41 #endif
42
43 /* Data type of load average, as read out of kmem.  */
44
45 #define LOAD_AVE_TYPE double
46
47 /* Convert that into an integer that is 100 for a load average of 1.0  */
48
49 #define LOAD_AVE_CVT(x) ((int) (x * 100.0))
50
51 /* Define CANNOT_DUMP on machines where unexec does not work.
52    Then the function dump-emacs will not be defined
53    and temacs will do (load "loadup") automatically unless told otherwise.  */
54
55 #undef CANNOT_DUMP
56
57 /* Define C_ALLOCA if this machine does not support a true alloca
58    and the one written in C should be used instead.
59    Define HAVE_ALLOCA to say that the system provides a properly
60    working alloca function and it should be used.
61    Define neither one if an assembler-language alloca
62    in the file alloca.s should be used.  */
63
64 /* lemacs change:  define HAVE_ALLOCA if gcc is being used */
65 #ifdef __GNUC__
66 #define HAVE_ALLOCA
67 #else
68 #define C_ALLOCA
69 #endif
70 \f
71 /* the data segment on this machine always starts at address 0x40000000. */
72
73 #ifdef DATA_START
74 #undef DATA_START
75 #endif
76 #ifdef TEXT_START
77 #undef TEXT_START
78 #endif
79
80 #define DATA_START    0x40000000
81 #define TEXT_START    0x00000000
82
83 #define STACK_DIRECTION 1
84
85 /* Define NO_REMAP if memory segmentation makes it not work well
86    to change the boundary between the text section and data section
87    when Emacs is dumped.  If you define this, the preloaded Lisp
88    code will not be sharable; but that's better than failing completely.  */
89
90 #define NO_REMAP
91
92 /* This machine requires completely different unexec code
93    which lives in a separate file.  Specify the file name.  */
94
95 /* 
96  * everything is pdump now --SY
97  * #define UNEXEC "unexhp9k800.o"
98  */
99 #undef UNEXEC
100
101 #define LIBS_MACHINE
102 #define LIBS_DEBUG
103
104 /* Include the file bsdtty.h, since this machine has job control.  */
105 #define NEED_BSDTTY
106 \f
107 /* The symbol in the kernel where the load average is found
108    is named _avenrun.  At this time there are two major flavors
109    of hp-ux (there is the s800 and s300 (s200) flavors).  The
110    differences are thusly moved to the corresponding machine description file.
111 */
112
113 /* no underscore please */
114 #define LDAV_SYMBOL "avenrun"
115
116 #if 0                           /* Supposedly no longer true.  */
117 /* In hpux, for unknown reasons, S_IFLNK is defined even though
118    symbolic links do not exist.
119    Make sure our conditionals based on S_IFLNK are not confused.
120
121    Here we assume that stat.h is included before config.h
122    so that we can override it here.  */
123
124 #undef S_IFLNK
125 #endif
126
127 #endif                          /* __hpux */