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

Function rt_mq_send_killable

src/ipc.c:3634–3637  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3632RTM_EXPORT(rt_mq_send_interruptible);
3633
3634rt_err_t rt_mq_send_killable(rt_mq_t mq, const void *buffer, rt_size_t size)
3635{
3636 return rt_mq_send_wait_killable(mq, buffer, size, 0);
3637}
3638RTM_EXPORT(rt_mq_send_killable);
3639/**
3640 * @brief This function will send an urgent message to the messagequeue object.

Callers

nothing calls this directly

Calls 1

rt_mq_send_wait_killableFunction · 0.85

Tested by

no test coverage detected