Changeset bbc28be in mainline for kernel/test/mm/falloc2.c
- Timestamp:
- 2010-12-03T12:59:13Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 70c85211
- Parents:
- 2e15ac40 (diff), da55d5b (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/test/mm/falloc2.c
r2e15ac40 rbbc28be 85 85 for (k = 0; k <= (((size_t) FRAME_SIZE << order) - 1); k++) { 86 86 if (((uint8_t *) frames[i])[k] != val) { 87 TPRINTF("Thread #%" PRIu64 " (cpu%u): Unexpected data (%c) in block %p offset %#" PRIs "\n", THREAD->tid, CPU->id, ((char *) frames[i])[k], frames[i], k); 87 TPRINTF("Thread #%" PRIu64 " (cpu%u): Unexpected data (%c) in block %p offset %zu\n", 88 THREAD->tid, CPU->id, ((char *) frames[i])[k], frames[i], k); 88 89 atomic_inc(&thread_fail); 89 90 goto cleanup; … … 121 122 122 123 while (atomic_get(&thread_count) > 0) { 123 TPRINTF("Threads left: % ld\n", atomic_get(&thread_count));124 TPRINTF("Threads left: %" PRIua "\n", atomic_get(&thread_count)); 124 125 thread_sleep(1); 125 126 }
Note:
See TracChangeset
for help on using the changeset viewer.