* doc/README.ews4800: Fix typos ("32-bit", "64-bit").
* misc.c (GC_extend_size_map): Fix typo ("16-byte") in a comment.
-------------
1. About EWS4800
- EWS4800 is 32bit/64bit workstation.
+
+ EWS4800 is a 32/64-bit workstation.
Vendor: NEC Corporation
OS: UX/4800 R9.* - R13.* (SystemV R4.2)
2. Compiler
- 32bit:
+ 32-bit:
Use ANSI C compiler.
CC = /usr/abiccs/bin/cc
- 64bit:
- Use 64bit ANSI C compiler.
+ 64-bit:
+ Use the 64-bit ANSI C compiler.
CC = /usr/ccs64/bin/cc
AR = /usr/ccs64/bin/ar
3. ELF file format
*** Caution: The following information is empirical. ***
- 32bit:
+ 32-bit:
ELF file has an unique format. (See a.out(4) and end(3C).)
&_start
&edata and DATASTART2. The global symbol &_DYNAMIC_LINKING is used
for the detection.
- 64bit:
+ 64-bit:
ELF file has a simple format. (See end(3C).)
_ftext
if (granule_sz < orig_granule_sz) granule_sz = orig_granule_sz;
}
/* For these larger sizes, we use an even number of granules. */
- /* This makes it easier to, for example, construct a 16byte-aligned */
+ /* This makes it easier to, e.g., construct a 16-byte-aligned */
/* allocator even if GRANULE_BYTES is 8. */
granule_sz += 1;
granule_sz &= ~1;