--- ./include/linux/delay.h.ssleep 2005-10-26 11:03:07.000000000 +0400 +++ ./include/linux/delay.h 2005-10-26 12:45:44.926451160 +0400 @@ -41,4 +41,9 @@ extern unsigned long loops_per_jiffy; void msleep(unsigned int msecs); unsigned long msleep_interruptible(unsigned int msecs); +static inline void ssleep(unsigned int seconds) +{ + msleep(seconds * 1000); +} + #endif /* defined(_LINUX_DELAY_H) */