comparison src/m/intel386.h @ 87730:91da483b3fa5

* movemail.c: * make-docfile.c: Remove reference to symbols defined by systems not supported anymore: MAC_OS8, XENIX and STRIDE. * (src/m/mips.h): * (src/m/intel386.h): * callproc.c: * config.in: * ecrt0.c: * emacs.c: * fileio.c: * frame.c: * getpagesize.h: * keyboard.c: * lread.c: * process.c: * puresize.h: * sysdep.c: * systty.h: * syswait.h: * unexec.c: * xdisp.c: * alloc.c: Remove code containing references to symbols defined by unsupported systems.
author Dan Nicolaescu <dann@ics.uci.edu>
date Sun, 13 Jan 2008 00:43:55 +0000
parents 107ccd98fa12
children 36e4ffad31fe
comparison
equal deleted inserted replaced
87729:47fbf21cf3d3 87730:91da483b3fa5
82 #define CRT0_DUMMIES bogus_fp, 82 #define CRT0_DUMMIES bogus_fp,
83 83
84 /* crt0.c should define a symbol `start' and do .globl with a dot. */ 84 /* crt0.c should define a symbol `start' and do .globl with a dot. */
85 85
86 #define DOT_GLOBAL_START 86 #define DOT_GLOBAL_START
87
88 #ifdef XENIX
89 /* Data type of load average, as read out of kmem. */
90 #define LOAD_AVE_TYPE short
91
92 /* Convert that into an integer that is 100 for a load average of 1.0 */
93 #define LOAD_AVE_CVT(x) (((double) (x)) * 100.0 / FSCALE)
94
95 #define FSCALE 256.0 /* determined by experimentation... */
96 #endif
97
98 87
99 #ifdef SOLARIS2 88 #ifdef SOLARIS2
100 /* Data type of load average, as read out of kmem. */ 89 /* Data type of load average, as read out of kmem. */
101 #define LOAD_AVE_TYPE long 90 #define LOAD_AVE_TYPE long
102 91