Skip to content

Commit

Permalink
sparc: bury the sys_sigpause() remains
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
  • Loading branch information
Al Viro committed Feb 3, 2013
1 parent 99b06fe commit c971625
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 18 deletions.
7 changes: 1 addition & 6 deletions arch/sparc/kernel/signal_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,18 +59,13 @@ struct rt_signal_frame {
#define SF_ALIGNEDSZ (((sizeof(struct signal_frame) + 7) & (~7)))
#define RT_ALIGNEDSZ (((sizeof(struct rt_signal_frame) + 7) & (~7)))

static int _sigpause_common(old_sigset_t set)
asmlinkage int sys_sigsuspend(old_sigset_t set)
{
sigset_t blocked;
siginitset(&blocked, set);
return sigsuspend(&blocked);
}

asmlinkage int sys_sigsuspend(old_sigset_t set)
{
return _sigpause_common(set);
}

asmlinkage void do_sigreturn(struct pt_regs *regs)
{
struct signal_frame __user *sf;
Expand Down
12 changes: 1 addition & 11 deletions arch/sparc/kernel/signal_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -236,23 +236,13 @@ struct rt_signal_frame {
__siginfo_rwin_t *rwin_save;
};

static long _sigpause_common(old_sigset_t set)
asmlinkage long sys_sigsuspend(old_sigset_t set)
{
sigset_t blocked;
siginitset(&blocked, set);
return sigsuspend(&blocked);
}

asmlinkage long sys_sigpause(unsigned int set)
{
return _sigpause_common(set);
}

asmlinkage long sys_sigsuspend(old_sigset_t set)
{
return _sigpause_common(set);
}

void do_rt_sigreturn(struct pt_regs *regs)
{
struct rt_signal_frame __user *sf;
Expand Down
1 change: 0 additions & 1 deletion arch/sparc/kernel/systbls.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ extern asmlinkage long sys_rt_sigaction(int sig,

extern asmlinkage void sparc64_set_context(struct pt_regs *regs);
extern asmlinkage void sparc64_get_context(struct pt_regs *regs);
extern asmlinkage long sys_sigpause(unsigned int set);
extern asmlinkage long sys_sigsuspend(old_sigset_t set);
extern void do_rt_sigreturn(struct pt_regs *regs);

Expand Down

0 comments on commit c971625

Please sign in to comment.