Skip to content
Snippets Groups Projects
Commit 0d959c26 authored by Ralf Baechle's avatar Ralf Baechle
Browse files

IRIX: Use schedule_timeout_interruptible.

    
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent a0f08209
No related branches found
No related tags found
No related merge requests found
...@@ -502,8 +502,7 @@ asmlinkage int irix_sigpoll_sys(unsigned long __user *set, ...@@ -502,8 +502,7 @@ asmlinkage int irix_sigpoll_sys(unsigned long __user *set,
while(1) { while(1) {
long tmp = 0; long tmp = 0;
current->state = TASK_INTERRUPTIBLE; expire = schedule_timeout_interruptible(expire);
expire = schedule_timeout(expire);
for (i=0; i<=4; i++) for (i=0; i<=4; i++)
tmp |= (current->pending.signal.sig[i] & kset.sig[i]); tmp |= (current->pending.signal.sig[i] & kset.sig[i]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment