Changeset 132ab5d1 in mainline for kernel/generic/include/ipc/sysipc_ops.h
- Timestamp:
- 2018-01-30T03:20:45Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5a6cc679
- Parents:
- 8bfb163 (diff), 6a5d05b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
kernel/generic/include/ipc/sysipc_ops.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ipc/sysipc_ops.h
r8bfb163 r132ab5d1 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.
