* @brief Delays the execution of the current thread for the specified number of milliseconds. * * @param msecs The number of milliseconds to sleep. */
| 18 | * @param msecs The number of milliseconds to sleep. |
| 19 | */ |
| 20 | void msleep(unsigned int msecs) |
| 21 | { |
| 22 | rt_thread_mdelay(msecs); |
| 23 | } |
| 24 | RTM_EXPORT(msleep); |
| 25 | |
| 26 | /** |
no test coverage detected