| 2712 | RTM_EXPORT(rt_mb_send_wait_interruptible); |
| 2713 | |
| 2714 | rt_err_t rt_mb_send_wait_killable(rt_mailbox_t mb, |
| 2715 | rt_ubase_t value, |
| 2716 | rt_int32_t timeout) |
| 2717 | { |
| 2718 | return _rt_mb_send_wait(mb, value, timeout, RT_KILLABLE); |
| 2719 | } |
| 2720 | RTM_EXPORT(rt_mb_send_wait_killable); |
| 2721 | /** |
| 2722 | * @brief This function will send an mail to the mailbox object. If there is a thread suspended on the mailbox, |
no test coverage detected