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