Changes in kernel/generic/src/ipc/ops/conctmeto.c [b7fd2a0:09d01f2] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/ops/conctmeto.c
rb7fd2a0 r09d01f2 40 40 #include <arch.h> 41 41 42 static errno_t request_preprocess(call_t *call, phone_t *phone)42 static int request_preprocess(call_t *call, phone_t *phone) 43 43 { 44 44 cap_handle_t phone_handle; 45 errno_t rc = phone_alloc(TASK, &phone_handle);45 int rc = phone_alloc(TASK, &phone_handle); 46 46 47 47 /* Remember the phone capability or that an error occured. */ … … 61 61 } 62 62 63 static errno_t request_forget(call_t *call)63 static int request_forget(call_t *call) 64 64 { 65 65 cap_handle_t phone_handle = (cap_handle_t) call->priv; … … 77 77 } 78 78 79 static errno_t answer_preprocess(call_t *answer, ipc_data_t *olddata)79 static int answer_preprocess(call_t *answer, ipc_data_t *olddata) 80 80 { 81 81 /* Hand over reference from ARG5 to phone */ … … 93 93 } 94 94 95 static errno_t answer_process(call_t *answer)95 static int answer_process(call_t *answer) 96 96 { 97 97 cap_handle_t phone_handle = (cap_handle_t) answer->priv;
Note:
See TracChangeset
for help on using the changeset viewer.