Changeset 78d0da8 in mainline
- Timestamp:
- 2008-06-03T15:18:32Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7f880ee8
- Parents:
- 860271d4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/ipc.c
r860271d4 r78d0da8 574 574 printf("ABOX - CALLS:\n"); 575 575 for (tmp = task->answerbox.calls.next; tmp != &task->answerbox.calls; 576 576 tmp = tmp->next) { 577 577 call = list_get_instance(tmp, call_t, link); 578 578 printf("Callid: %p Srctask:%" PRIu64 " M:%" PRIun … … 587 587 printf("ABOX - DISPATCHED CALLS:\n"); 588 588 for (tmp = task->answerbox.dispatched_calls.next; 589 590 589 tmp != &task->answerbox.dispatched_calls; 590 tmp = tmp->next) { 591 591 call = list_get_instance(tmp, call_t, link); 592 592 printf("Callid: %p Srctask:%" PRIu64 " M:%" PRIun … … 601 601 printf("ABOX - ANSWERS:\n"); 602 602 for (tmp = task->answerbox.answers.next; tmp != &task->answerbox.answers; 603 603 tmp = tmp->next) { 604 604 call = list_get_instance(tmp, call_t, link); 605 605 printf("Callid:%p M:%" PRIun " A1:%" PRIun " A2:%" PRIun
Note:
See TracChangeset
for help on using the changeset viewer.