diff options
author | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2010-01-27 12:12:37 +0300 |
---|---|---|
committer | Martin Schwidefsky <sky@mschwide.boeblingen.de.ibm.com> | 2010-01-27 12:12:49 +0300 |
commit | 0b4d78903bf48fe6b125c4c9f0755437a4f21d47 (patch) | |
tree | 1f95868d2b642809703272825a30cfdfeb1bcb82 /arch/s390 | |
parent | 428aecf67cf673d546627b2813bd4acabd20e3a9 (diff) | |
download | linux-0b4d78903bf48fe6b125c4c9f0755437a4f21d47.tar.xz |
[S390] use set_current_state in sigsuspend
Use set_current_state instead of a direct assignment to set the
task state of the current process.
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390')
-rw-r--r-- | arch/s390/kernel/signal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/kernel/signal.c b/arch/s390/kernel/signal.c index 1675c48b9145..6289945562b0 100644 --- a/arch/s390/kernel/signal.c +++ b/arch/s390/kernel/signal.c @@ -64,7 +64,7 @@ SYSCALL_DEFINE3(sigsuspend, int, history0, int, history1, old_sigset_t, mask) recalc_sigpending(); spin_unlock_irq(¤t->sighand->siglock); - current->state = TASK_INTERRUPTIBLE; + set_current_state(TASK_INTERRUPTIBLE); schedule(); set_thread_flag(TIF_RESTORE_SIGMASK); |