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

Function rt_mq_recv_killable

src/ipc.c:3945–3951  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3943RTM_EXPORT(rt_mq_recv_interruptible);
3944
3945rt_ssize_t rt_mq_recv_killable(rt_mq_t mq,
3946 void *buffer,
3947 rt_size_t size,
3948 rt_int32_t timeout)
3949{
3950 return _rt_mq_recv(mq, buffer, size, 0, timeout, RT_KILLABLE);
3951}
3952#ifdef RT_USING_MESSAGEQUEUE_PRIORITY
3953rt_err_t rt_mq_send_wait_prio(rt_mq_t mq,
3954 const void *buffer,

Callers

nothing calls this directly

Calls 1

_rt_mq_recvFunction · 0.85

Tested by

no test coverage detected