|
@@ -1100,6 +1100,13 @@ signed long __sched schedule_timeout_interruptible(signed long timeout)
|
|
|
}
|
|
|
EXPORT_SYMBOL(schedule_timeout_interruptible);
|
|
|
|
|
|
+signed long __sched schedule_timeout_killable(signed long timeout)
|
|
|
+{
|
|
|
+ __set_current_state(TASK_KILLABLE);
|
|
|
+ return schedule_timeout(timeout);
|
|
|
+}
|
|
|
+EXPORT_SYMBOL(schedule_timeout_killable);
|
|
|
+
|
|
|
signed long __sched schedule_timeout_uninterruptible(signed long timeout)
|
|
|
{
|
|
|
__set_current_state(TASK_UNINTERRUPTIBLE);
|