Changeset be06914 in mainline for kernel/generic/src/proc/task.c
- Timestamp:
- 2010-06-11T12:41:35Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b3b7e14a
- Parents:
- 48dcc69
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/proc/task.c
r48dcc69 rbe06914 197 197 198 198 task->ipc_info.call_sent = 0; 199 task->ipc_info.call_rec ieved = 0;199 task->ipc_info.call_received = 0; 200 200 task->ipc_info.answer_sent = 0; 201 task->ipc_info.answer_rec ieved = 0;202 task->ipc_info.irq_notif_rec ieved = 0;201 task->ipc_info.answer_received = 0; 202 task->ipc_info.irq_notif_received = 0; 203 203 task->ipc_info.forwarded = 0; 204 204 … … 478 478 #ifdef __32_BITS__ 479 479 if (*additional) 480 printf("%-8" PRIu64 " %9l d %7ld", task->taskid,480 printf("%-8" PRIu64 " %9lu %7lu", 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 %9l d %7ld",491 printf("%-8" PRIu64 " %9" PRIu64 "%c %9" PRIu64 "%c %9lu %7lu", 492 492 task->taskid, ucycles, usuffix, kcycles, ksuffix, 493 493 atomic_get(&task->refcount), atomic_get(&task->active_calls)); … … 530 530 #ifdef __64_BITS__ 531 531 if (additional) 532 printf("[ taskid] [ucycles ] [kcycles ] [threads] [calls]"532 printf("[id ] [ucycles ] [kcycles ] [threads] [calls]" 533 533 " [callee\n"); 534 534 else 535 printf("[ taskid] [name ] [ctx] [address ]"535 printf("[id ] [name ] [ctx] [address ]" 536 536 " [as ]\n"); 537 537 #endif
Note:
See TracChangeset
for help on using the changeset viewer.