Changeset 7f1c620 in mainline for arch/ia32/include/boot/memmap.h
- Timestamp:
- 2006-07-04T17:17:56Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0ffa3ef5
- Parents:
- 991779c5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/include/boot/memmap.h
r991779c5 r7f1c620 59 59 60 60 struct e820memmap_ { 61 __u64base_address;62 __u64size;63 __u32type;61 uint64_t base_address; 62 uint64_t size; 63 uint32_t type; 64 64 } __attribute__ ((packed)); 65 65 66 66 extern struct e820memmap_ e820table[MEMMAP_E820_MAX_RECORDS]; 67 67 68 extern __u8e820counter;68 extern uint8_t e820counter; 69 69 70 extern __u32e801memorysize; /**< Size of available memory in KB. */70 extern uint32_t e801memorysize; /**< Size of available memory in KB. */ 71 71 72 72 #endif
Note:
See TracChangeset
for help on using the changeset viewer.