Rev 1364 | Rev 1413 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1364 | Rev 1396 | ||
---|---|---|---|
Line 511... | Line 511... | ||
511 | if (process_request(&TASK->answerbox, call)) |
511 | if (process_request(&TASK->answerbox, call)) |
512 | goto restart; |
512 | goto restart; |
513 | 513 | ||
514 | /* Include phone address('id') of the caller in the request, |
514 | /* Include phone address('id') of the caller in the request, |
515 | * copy whole call->data, not only call->data.args */ |
515 | * copy whole call->data, not only call->data.args */ |
516 | STRUCT_TO_USPACE(calldata, &call->data); |
516 | if (STRUCT_TO_USPACE(calldata, &call->data)) { |
- | 517 | return 0; |
|
- | 518 | } |
|
517 | return (__native)call; |
519 | return (__native)call; |
518 | } |
520 | } |
519 | 521 | ||
520 | /** Connect irq handler to task */ |
522 | /** Connect irq handler to task */ |
521 | __native sys_ipc_register_irq(__native irq, irq_code_t *ucode) |
523 | __native sys_ipc_register_irq(__native irq, irq_code_t *ucode) |