* @brief Submit a work item to the system work queue without delay. This work item will be executed after the current work item. * * @param work is a pointer to the work item object. * * @return RT_EOK Success. */
| 436 | * @return RT_EOK Success. |
| 437 | */ |
| 438 | rt_err_t rt_work_urgent(struct rt_work *work) |
| 439 | { |
| 440 | return rt_workqueue_urgent_work(sys_workq, work); |
| 441 | } |
| 442 | |
| 443 | /** |
| 444 | * @brief Cancel a work item in the system work queue. |
nothing calls this directly
no test coverage detected