Changeset 466e95f7 in mainline for kernel/generic/include/ipc
- Timestamp:
- 2012-10-03T21:08:54Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- faa45c17
- Parents:
- 716185d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ipc/sysipc_ops.h
r716185d r466e95f7 37 37 38 38 #include <ipc/ipc.h> 39 40 #define SYSIPC_OP(op, call, ...) \ 41 ({ \ 42 int rc = EOK; \ 43 \ 44 sysipc_ops_t *ops; \ 45 ops = sysipc_ops_get((call)->request_method); \ 46 if (ops->op) \ 47 rc = ops->op((call), ##__VA_ARGS__); \ 48 rc; \ 49 }) 39 50 40 51 /** … … 95 106 * Invoked on: all forgotten calls 96 107 */ 97 void(* request_forget)(call_t *);108 int (* request_forget)(call_t *); 98 109 99 110 /** … … 116 127 * Invoked on: all forgotten calls 117 128 */ 118 void(* answer_cleanup)(call_t *, ipc_data_t *);129 int (* answer_cleanup)(call_t *, ipc_data_t *); 119 130 120 131 /** … … 143 154 144 155 extern int null_request_preprocess(call_t *, phone_t *); 145 extern voidnull_request_forget(call_t *);156 extern int null_request_forget(call_t *); 146 157 extern int null_request_process(call_t *, answerbox_t *); 147 extern voidnull_answer_cleanup(call_t *, ipc_data_t *);158 extern int null_answer_cleanup(call_t *, ipc_data_t *); 148 159 extern int null_answer_preprocess(call_t *, ipc_data_t *); 149 160 extern int null_answer_process(call_t *);
Note:
See TracChangeset
for help on using the changeset viewer.