* @brief Delays the execution of the current thread for the specified number of microseconds. * * @param usecs The number of microseconds to delay. */
| 51 | * @param usecs The number of microseconds to delay. |
| 52 | */ |
| 53 | void udelay(unsigned long usecs) |
| 54 | { |
| 55 | rt_hw_us_delay(usecs); |
| 56 | } |
| 57 | RTM_EXPORT(udelay); |
| 58 | |
| 59 | /** |
no test coverage detected