* @brief Delays the execution of the current thread for the specified number of seconds. * * @param seconds The number of seconds to sleep. */
| 29 | * @param seconds The number of seconds to sleep. |
| 30 | */ |
| 31 | void ssleep(unsigned int seconds) |
| 32 | { |
| 33 | msleep(seconds * 1000); |
| 34 | } |
| 35 | RTM_EXPORT(ssleep); |
| 36 | |
| 37 | /** |