Changeset fcfa926b in mainline
- Timestamp:
- 2012-09-02T20:41:59Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f9841e69
- Parents:
- 95a3082
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/sysipc.c
r95a3082 rfcfa926b 420 420 phone_t *phone; 421 421 if (phone_get(phoneid, &phone) != EOK) { 422 IPC_SET_RETVAL(call->data, EFORWARD);423 422 rc = ENOENT; 424 423 goto error; … … 426 425 427 426 if (!method_is_forwardable(IPC_GET_IMETHOD(call->data))) { 428 IPC_SET_RETVAL(call->data, EFORWARD);429 427 rc = EPERM; 430 428 goto error; … … 476 474 old = call->data; 477 475 476 IPC_SET_RETVAL(call->data, EFORWARD); 478 477 answer_preprocess(call, need_old ? &old : NULL); 479 478 ipc_answer(&TASK->answerbox, call);
Note:
See TracChangeset
for help on using the changeset viewer.