vserver 1.9.3
[linux-2.6.git] / include / linux / delay.h
index f561091..5c43c33 100644 (file)
@@ -39,5 +39,11 @@ extern unsigned long loops_per_jiffy;
 #endif
 
 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) */