comparison src/m/powermac.h @ 96578:33a3f6f34c1d

Remove boilerplate comments. (NO_REMAP): Remove unused definition.
author Dan Nicolaescu <dann@ics.uci.edu>
date Thu, 10 Jul 2008 02:23:34 +0000
parents 7e5b32f86a4c
children
comparison
equal deleted inserted replaced
96577:08b55730ca2d 96578:33a3f6f34c1d
45 /* Use type int rather than a union, to represent Lisp_Object */ 45 /* Use type int rather than a union, to represent Lisp_Object */
46 /* This is desirable for most machines. */ 46 /* This is desirable for most machines. */
47 47
48 #define NO_UNION_TYPE 48 #define NO_UNION_TYPE
49 49
50 /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend
51 the 24-bit bit field into an int. In other words, if bit fields
52 are always unsigned.
53
54 If you use NO_UNION_TYPE, this flag does not matter. */
55
56 /* #define EXPLICIT_SIGN_EXTEND */
57
58 /* Data type of load average, as read out of kmem. */ 50 /* Data type of load average, as read out of kmem. */
59 51
60 #define LOAD_AVE_TYPE long 52 #define LOAD_AVE_TYPE long
61 53
62 /* Convert that into an integer that is 100 for a load average of 1.0 */ 54 /* Convert that into an integer that is 100 for a load average of 1.0 */
63 55
64 #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE) 56 #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE)
65
66 /* Define CANNOT_DUMP on machines where unexec does not work.
67 Then the function dump-emacs will not be defined
68 and temacs will do (load "loadup") automatically unless told otherwise. */
69
70 /* #define CANNOT_DUMP */
71
72 /* Define VIRT_ADDR_VARIES if the virtual addresses of
73 pure and impure space as loaded can vary, and even their
74 relative order cannot be relied on.
75
76 Otherwise Emacs assumes that text space precedes data space,
77 numerically. */
78
79 /* #define VIRT_ADDR_VARIES * */
80
81 /* Define NO_REMAP if memory segmentation makes it not work well
82 to change the boundary between the text section and data section
83 when Emacs is dumped. If you define this, the preloaded Lisp
84 code will not be sharable; but that's better than failing completely. */
85
86 #define NO_REMAP
87 57
88 /* Some really obscure 4.2-based systems (like Sequent DYNIX) 58 /* Some really obscure 4.2-based systems (like Sequent DYNIX)
89 * do not support asynchronous I/O (using SIGIO) on sockets, 59 * do not support asynchronous I/O (using SIGIO) on sockets,
90 * even though it works fine on tty's. If you have one of 60 * even though it works fine on tty's. If you have one of
91 * these systems, define the following, and then use it in 61 * these systems, define the following, and then use it in
97 * file. 67 * file.
98 */ 68 */
99 69
100 /* #define NO_SOCK_SIGIO */ 70 /* #define NO_SOCK_SIGIO */
101 71
102
103 /* After adding support for a new system, modify the large case
104 statement in the `configure' script to recognize reasonable
105 configuration names, and add a description of the system to
106 `etc/MACHINES'.
107
108 If you've just fixed a problem in an existing configuration file,
109 you should also check `etc/MACHINES' to make sure its descriptions
110 of known problems in that configuration should be updated. */
111
112 /* arch-tag: d8af08a6-48b3-4c8a-94a0-0b4acae5e1f0 72 /* arch-tag: d8af08a6-48b3-4c8a-94a0-0b4acae5e1f0
113 (do not change this comment) */ 73 (do not change this comment) */