| 2989 | RTM_EXPORT(rt_mb_recv_interruptible); |
| 2990 | |
| 2991 | rt_err_t rt_mb_recv_killable(rt_mailbox_t mb, rt_ubase_t *value, rt_int32_t timeout) |
| 2992 | { |
| 2993 | return _rt_mb_recv(mb, value, timeout, RT_KILLABLE); |
| 2994 | } |
| 2995 | RTM_EXPORT(rt_mb_recv_killable); |
| 2996 | |
| 2997 | /** |
nothing calls this directly
no test coverage detected