diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-04-27 20:09:19 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-06-01 18:58:51 +0200 |
commit | 17440f171e28e86cc21a4c8fd1fa3c561503f80e (patch) | |
tree | 0962e102694fec3a97b5d2454b3ad9cc4b29ac4d /arch/powerpc/kernel/signal.c | |
parent | most of set_current_blocked() callers want SIGKILL/SIGSTOP removed from set (diff) | |
download | linux-17440f171e28e86cc21a4c8fd1fa3c561503f80e.tar.xz linux-17440f171e28e86cc21a4c8fd1fa3c561503f80e.zip |
powerpc: get rid of restore_sigmask()
... it's just a call of set_current_blocked() now
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/powerpc/kernel/signal.c')
-rw-r--r-- | arch/powerpc/kernel/signal.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/arch/powerpc/kernel/signal.c b/arch/powerpc/kernel/signal.c index 3a3413c049c3..129bdffc6daf 100644 --- a/arch/powerpc/kernel/signal.c +++ b/arch/powerpc/kernel/signal.c @@ -51,15 +51,6 @@ void __user * get_sigframe(struct k_sigaction *ka, struct pt_regs *regs, return (void __user *)newsp; } - -/* - * Restore the user process's signal mask - */ -void restore_sigmask(sigset_t *set) -{ - set_current_blocked(set); -} - static void check_syscall_restart(struct pt_regs *regs, struct k_sigaction *ka, int has_handler) { |