Commit 1ba3e7ef authored by Al Viro's avatar Al Viro

m68k: switch to generic old sigsuspend

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 08d4f653
...@@ -19,6 +19,7 @@ config M68K ...@@ -19,6 +19,7 @@ config M68K
select MODULES_USE_ELF_REL select MODULES_USE_ELF_REL
select MODULES_USE_ELF_RELA select MODULES_USE_ELF_RELA
select GENERIC_SIGALTSTACK select GENERIC_SIGALTSTACK
select OLD_SIGSUSPEND3
config RWSEM_GENERIC_SPINLOCK config RWSEM_GENERIC_SPINLOCK
bool bool
......
...@@ -224,17 +224,6 @@ static inline void push_cache(unsigned long vaddr) ...@@ -224,17 +224,6 @@ static inline void push_cache(unsigned long vaddr)
#endif /* CONFIG_MMU */ #endif /* CONFIG_MMU */
/*
* Atomically swap in the new signal mask, and wait for a signal.
*/
asmlinkage int
sys_sigsuspend(int unused0, int unused1, old_sigset_t mask)
{
sigset_t blocked;
siginitset(&blocked, mask);
return sigsuspend(&blocked);
}
asmlinkage int asmlinkage int
sys_sigaction(int sig, const struct old_sigaction __user *act, sys_sigaction(int sig, const struct old_sigaction __user *act,
struct old_sigaction __user *oact) struct old_sigaction __user *oact)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment