Mercurial > emacs
changeset 41942:c22a32af6f1c
Split the __hpux conditional into the parts
that are right for GNU/Linux too and the parts that are not.
Use the former if GNU_LINUX.
(HAVE_ALLOCA, LOAD_AVE_TYPE, LOAD_AVE_CVT): New defs for GNU/Linux.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 11 Dec 2001 06:34:37 +0000 |
parents | c53c9038c6e2 |
children | 6250dd339aac |
files | src/m/hp800.h |
diffstat | 1 files changed, 43 insertions(+), 20 deletions(-) [+] |
line wrap: on
line diff
--- a/src/m/hp800.h Tue Dec 11 06:23:50 2001 +0000 +++ b/src/m/hp800.h Tue Dec 11 06:34:37 2001 +0000 @@ -85,7 +85,9 @@ #define bcmp memcmp #endif -#ifdef __hpux +/* Common definitions for HPUX and GNU/Linux. */ + +#if defined (__hpux) || defined (GNU_LINUX) /* Now define a symbol for the cpu type, if your compiler does not define it automatically: Ones defined so far include vax, m68000, ns16000, pyramid, @@ -94,21 +96,43 @@ # define hp9000s800 #endif -/* Data type of load average, as read out of kmem. */ - -#define LOAD_AVE_TYPE double - -/* Convert that into an integer that is 100 for a load average of 1.0 */ - -#define LOAD_AVE_CVT(x) ((int) (x * 100.0)) - - /* Define CANNOT_DUMP on machines where unexec does not work. Then the function dump-emacs will not be defined and temacs will do (load "loadup") automatically unless told otherwise. */ #undef CANNOT_DUMP +#define STACK_DIRECTION 1 + +/* Define NO_REMAP if memory segmentation makes it not work well + to change the boundary between the text section and data section + when Emacs is dumped. If you define this, the preloaded Lisp + code will not be sharable; but that's better than failing completely. */ + +#define NO_REMAP + +#endif /* __hpux or GNU_LINUX */ + +/* Stuff for just GNU/Linux. */ + +#ifdef GNU_LINUX + +#define HAVE_ALLOCA + +/* Data type of load average, as read out of kmem. */ + +#define LOAD_AVE_TYPE long + +/* Convert that into an integer that is 100 for a load average of 1.0 */ + +#define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE) + +#endif /* GNU_LINUX */ + +/* Stuff for just HPUX. */ + +#ifdef __hpux + /* Define VIRT_ADDR_VARIES if the virtual addresses of pure and impure space as loaded can vary, and even their relative order cannot be relied on. @@ -135,15 +159,6 @@ #define DATA_START 0x40000000 #define TEXT_START 0x00000000 -#define STACK_DIRECTION 1 - -/* Define NO_REMAP if memory segmentation makes it not work well - to change the boundary between the text section and data section - when Emacs is dumped. If you define this, the preloaded Lisp - code will not be sharable; but that's better than failing completely. */ - -#define NO_REMAP - /* This machine requires completely different unexec code which lives in a separate file. Specify the file name. */ @@ -154,7 +169,15 @@ /* Include the file bsdtty.h, since this machine has job control. */ #define NEED_BSDTTY - + +/* Data type of load average, as read out of kmem. */ + +#define LOAD_AVE_TYPE double + +/* Convert that into an integer that is 100 for a load average of 1.0 */ + +#define LOAD_AVE_CVT(x) ((int) (x * 100.0)) + /* The symbol in the kernel where the load average is found is named _avenrun. At this time there are two major flavors of hp-ux (there is the s800 and s300 (s200) flavors). The