Changeset e186eb5 in mainline for kernel/generic/src/ipc/ipc.c


Ignore:
Timestamp:
2011-01-08T22:21:06Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8983273
Parents:
fa581b3
git-author:
Vojtech Horky <> (2011-01-08 22:21:06)
git-committer:
Jakub Jermar <jakub@…> (2011-01-08 22:21:06)
Message:

For connected phones, print also the task ID of the target task.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/ipc/ipc.c

    rfa581b3 re186eb5  
    706706                                break;
    707707                        case IPC_PHONE_CONNECTED:
    708                                 printf("connected to: %p ",
    709                                     task->phones[i].callee);
     708                                printf("connected to: %p (%" PRIu64 ") ",
     709                                    task->phones[i].callee,
     710                                    task->phones[i].callee->task->taskid);
    710711                                break;
    711712                        case IPC_PHONE_SLAMMED:
Note: See TracChangeset for help on using the changeset viewer.