Changeset bbc28be in mainline for kernel/generic/src/proc/task.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/generic/src/proc/task.c
r2e15ac40 rbbc28be 478 478 #ifdef __32_BITS__ 479 479 if (*additional) 480 printf("%-8" PRIu64 " %9 lu %7lu", task->taskid,480 printf("%-8" PRIu64 " %9" PRIua " %7" PRIua, task->taskid, 481 481 atomic_get(&task->refcount), atomic_get(&task->active_calls)); 482 482 else … … 489 489 #ifdef __64_BITS__ 490 490 if (*additional) 491 printf("%-8" PRIu64 " %9" PRIu64 "%c %9" PRIu64 "%c %9lu %7lu", 491 printf("%-8" PRIu64 " %9" PRIu64 "%c %9" PRIu64 "%c " 492 "%9" PRIua " %7" PRIua, 492 493 task->taskid, ucycles, usuffix, kcycles, ksuffix, 493 494 atomic_get(&task->refcount), atomic_get(&task->active_calls)); … … 501 502 for (i = 0; i < IPC_MAX_PHONES; i++) { 502 503 if (task->phones[i].callee) 503 printf(" % " PRIs ":%p", i, task->phones[i].callee);504 printf(" %zu:%p", i, task->phones[i].callee); 504 505 } 505 506 printf("\n");
Note:
See TracChangeset
for help on using the changeset viewer.