Changeset d0c2beb in mainline
- Timestamp:
- 2017-12-19T17:38:18Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 219c530
- Parents:
- 89ea2dc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ipc/sysipc_ops.h
r89ea2dc rd0c2beb 40 40 #define SYSIPC_OP(op, call, ...) \ 41 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; \ 42 sysipc_ops_t *ops = sysipc_ops_get((call)->request_method); \ 43 assert(ops->op); \ 44 ops->op((call), ##__VA_ARGS__); \ 49 45 }) 50 46
Note:
See TracChangeset
for help on using the changeset viewer.