Changes in kernel/generic/src/ipc/ops/concttome.c [b7fd2a0:48bcf49] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/ops/concttome.c
rb7fd2a0 r48bcf49 42 42 static int request_process(call_t *call, answerbox_t *box) 43 43 { 44 cap_handle_t phone_handle; 45 errno_t rc = phone_alloc(TASK, &phone_handle); 46 IPC_SET_ARG5(call->data, (rc == EOK) ? phone_handle : -1); 47 return 0; 44 cap_handle_t phone_handle = phone_alloc(TASK); 45 46 IPC_SET_ARG5(call->data, phone_handle); 47 48 return EOK; 48 49 } 49 50 50 static errno_t answer_cleanup(call_t *answer, ipc_data_t *olddata)51 static int answer_cleanup(call_t *answer, ipc_data_t *olddata) 51 52 { 52 53 cap_handle_t phone_handle = (cap_handle_t) IPC_GET_ARG5(*olddata); … … 58 59 } 59 60 60 static errno_t answer_preprocess(call_t *answer, ipc_data_t *olddata)61 static int answer_preprocess(call_t *answer, ipc_data_t *olddata) 61 62 { 62 63 cap_handle_t phone_handle = (cap_handle_t) IPC_GET_ARG5(*olddata);
Note:
See TracChangeset
for help on using the changeset viewer.