MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / rt_event_recv_killable

Function rt_event_recv_killable

src/ipc.c:2245–2252  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2243RTM_EXPORT(rt_event_recv_interruptible);
2244
2245rt_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}
2253RTM_EXPORT(rt_event_recv_killable);
2254/**
2255 * @brief This function will set some extra attributions of an event object.

Callers

nothing calls this directly

Calls 1

_rt_event_recvFunction · 0.85

Tested by

no test coverage detected