Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/ipc/sysipc_ops.h

    rd0c2beb r466e95f7  
    4040#define SYSIPC_OP(op, call, ...) \
    4141        ({ \
    42                 sysipc_ops_t *ops = sysipc_ops_get((call)->request_method); \
    43                 assert(ops->op); \
    44                 ops->op((call), ##__VA_ARGS__); \
     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; \
    4549        })
    4650
Note: See TracChangeset for help on using the changeset viewer.