Changes in kernel/generic/src/ipc/sysipc_ops.c [37e8c4a:b7fd2a0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/sysipc_ops.c
r37e8c4a rb7fd2a0 69 69 }; 70 70 71 int null_request_preprocess(call_t *call, phone_t *phone)71 errno_t null_request_preprocess(call_t *call, phone_t *phone) 72 72 { 73 73 return EOK; 74 74 } 75 75 76 int null_request_forget(call_t *call)76 errno_t null_request_forget(call_t *call) 77 77 { 78 78 return EOK; … … 81 81 int null_request_process(call_t *call, answerbox_t *box) 82 82 { 83 return EOK;83 return 0; 84 84 } 85 85 86 int null_answer_cleanup(call_t *call, ipc_data_t *data)86 errno_t null_answer_cleanup(call_t *call, ipc_data_t *data) 87 87 { 88 88 return EOK; 89 89 } 90 90 91 int null_answer_preprocess(call_t *call, ipc_data_t *data)91 errno_t null_answer_preprocess(call_t *call, ipc_data_t *data) 92 92 { 93 93 return EOK; 94 94 } 95 95 96 int null_answer_process(call_t *call)96 errno_t null_answer_process(call_t *call) 97 97 { 98 98 return EOK;
Note:
See TracChangeset
for help on using the changeset viewer.