Changeset cefb126 in mainline for kernel/generic/src/mm/frame.c
- Timestamp:
- 2010-07-02T14:19:30Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 89c57b6
- Parents:
- fe7abd0 (diff), e3ee9b9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/mm/frame.c
rfe7abd0 rcefb126 1234 1234 { 1235 1235 #ifdef __32_BITS__ 1236 printf("# base address frames flags free frames busy frames\n"); 1237 printf("-- ------------ ------------ -------- ------------ ------------\n"); 1236 printf("[nr] [base addr] [frames ] [flags ] [free frames ] [busy frames ]\n"); 1238 1237 #endif 1239 1238 1240 1239 #ifdef __64_BITS__ 1241 printf("# base address frames flags free frames busy frames\n"); 1242 printf("-- -------------------- ------------ -------- ------------ ------------\n"); 1240 printf("[nr] [base address ] [frames ] [flags ] [free frames ] [busy frames ]\n"); 1243 1241 #endif 1244 1242 … … 1273 1271 bool available = zone_flags_available(flags); 1274 1272 1275 printf("%- 2" PRIs, i);1273 printf("%-4" PRIs, i); 1276 1274 1277 1275 #ifdef __32_BITS__ 1278 printf(" 1276 printf(" %10p", base); 1279 1277 #endif 1280 1278 1281 1279 #ifdef __64_BITS__ 1282 printf(" 1280 printf(" %18p", base); 1283 1281 #endif 1284 1282 … … 1289 1287 1290 1288 if (available) 1291 printf("%1 2" PRIs " %12" PRIs,1289 printf("%14" PRIs " %14" PRIs, 1292 1290 free_count, busy_count); 1293 1291
Note:
See TracChangeset
for help on using the changeset viewer.