Rev 3150 | Rev 3191 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3150 | Rev 3153 | ||
|---|---|---|---|
| Line 64... | Line 64... | ||
| 64 | * |
64 | * |
| 65 | * @param call Call structure to be initialized. |
65 | * @param call Call structure to be initialized. |
| 66 | */ |
66 | */ |
| 67 | static void _ipc_call_init(call_t *call) |
67 | static void _ipc_call_init(call_t *call) |
| 68 | { |
68 | { |
| 69 | memsetb((uintptr_t) call, sizeof(*call), 0); |
69 | memsetb(call, sizeof(*call), 0); |
| 70 | call->callerbox = &TASK->answerbox; |
70 | call->callerbox = &TASK->answerbox; |
| 71 | call->sender = TASK; |
71 | call->sender = TASK; |
| 72 | call->buffer = NULL; |
72 | call->buffer = NULL; |
| 73 | } |
73 | } |
| 74 | 74 | ||