Changeset 07640dfd in mainline for kernel/generic/src/proc/task.c
- Timestamp:
- 2010-03-29T16:21:29Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ea55bc4
- Parents:
- a2a00e8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/proc/task.c
ra2a00e8 r07640dfd 427 427 428 428 #ifdef __32_BITS__ 429 printf("%-6" PRIu64 " %-12s %-3" PRIu32 " %10p %10p %9" PRIu64 "%c %9" PRIu64 "%c %9"430 PRIu64 "%c %7ld %6ld", t->taskid, t->name, t->context, t, t->as, cycles, suffix,429 printf("%-6" PRIu64 " %-12s %-3" PRIu32 " %10p %10p %9" PRIu64 "%c %9" 430 PRIu64 "%c %7ld %6ld", t->taskid, t->name, t->context, t, t->as, 431 431 ucycles, usuffix, kcycles, ksuffix, atomic_get(&t->refcount), 432 432 atomic_get(&t->active_calls)); … … 434 434 435 435 #ifdef __64_BITS__ 436 printf("%-6" PRIu64 " %-12s %-3" PRIu32 " %18p %18p %9" PRIu64 "%c %9" PRIu64 "%c %9"437 PRIu64 "%c %7ld %6ld", t->taskid, t->name, t->context, t, t->as, cycles, suffix,436 printf("%-6" PRIu64 " %-12s %-3" PRIu32 " %18p %18p %9" PRIu64 "%c %9" 437 PRIu64 "%c %7ld %6ld", t->taskid, t->name, t->context, t, t->as, 438 438 ucycles, usuffix, kcycles, ksuffix, atomic_get(&t->refcount), 439 439 atomic_get(&t->active_calls)); … … 461 461 #ifdef __32_BITS__ 462 462 printf("taskid name ctx address as " 463 " cyclesucycles kcycles threads calls callee\n");463 " ucycles kcycles threads calls callee\n"); 464 464 printf("------ ------------ --- ---------- ----------" 465 " ---------- ---------- ------- --- ------------- ------>\n");465 " ---------- ---------- ------- ------ ------>\n"); 466 466 #endif 467 467 468 468 #ifdef __64_BITS__ 469 469 printf("taskid name ctx address as " 470 " cyclesucycles kcycles threads calls callee\n");470 " ucycles kcycles threads calls callee\n"); 471 471 printf("------ ------------ --- ------------------ ------------------" 472 " ---------- ---------- ---------- ------- --- ------------- ------>\n");472 " ---------- ---------- ---------- ------- ------ ------>\n"); 473 473 #endif 474 474
Note:
See TracChangeset
for help on using the changeset viewer.