| 2243 | RTM_EXPORT(rt_event_recv_interruptible); |
| 2244 | |
| 2245 | rt_err_t rt_event_recv_killable(rt_event_t event, |
| 2246 | rt_uint32_t set, |
| 2247 | rt_uint8_t option, |
| 2248 | rt_int32_t timeout, |
| 2249 | rt_uint32_t *recved) |
| 2250 | { |
| 2251 | return _rt_event_recv(event, set, option, timeout, recved, RT_KILLABLE); |
| 2252 | } |
| 2253 | RTM_EXPORT(rt_event_recv_killable); |
| 2254 | /** |
| 2255 | * @brief This function will set some extra attributions of an event object. |
nothing calls this directly
no test coverage detected