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

Function rt_mq_send_wait_killable

src/ipc.c:3592–3598  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3590RTM_EXPORT(rt_mq_send_wait_interruptible);
3591
3592rt_err_t rt_mq_send_wait_killable(rt_mq_t mq,
3593 const void *buffer,
3594 rt_size_t size,
3595 rt_int32_t timeout)
3596{
3597 return _rt_mq_send_wait(mq, buffer, size, 0, timeout, RT_KILLABLE);
3598}
3599RTM_EXPORT(rt_mq_send_wait_killable);
3600/**
3601 * @brief This function will send a message to the messagequeue object.

Callers 1

rt_mq_send_killableFunction · 0.85

Calls 1

_rt_mq_send_waitFunction · 0.85

Tested by

no test coverage detected