Changeset 33dac7d in mainline
- Timestamp:
- 2010-06-27T23:03:44Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a1f60f3
- Parents:
- 2ddcc7b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/src/mm/frame.c
r2ddcc7b r33dac7d 165 165 { 166 166 unsigned int i; 167 const char *name;167 printf("[base ] [size ] [name ]\n"); 168 168 169 printf("[base ] [size ] [name\n");170 171 169 for (i = 0; i < e820counter; i++) { 170 const char *name; 171 172 172 if (e820table[i].type <= MEMMAP_MEMORY_UNUSABLE) 173 173 name = e820names[e820table[i].type]; … … 175 175 name = "invalid"; 176 176 177 printf("%# 18llx %#18llx%s\n", e820table[i].base_address,177 printf("%#018" PRIx64 " %#018" PRIx64" %s\n", e820table[i].base_address, 178 178 e820table[i].size, name); 179 179 } … … 193 193 hardcoded_unmapped_kdata_size)); 194 194 #endif 195 195 196 196 init_e820_memory(minconf); 197 197
Note:
See TracChangeset
for help on using the changeset viewer.