diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2010-06-07 08:48:13 -0400 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2010-06-07 09:29:59 -0400 |
commit | 139ef32b0e6b88b00b5e3e74d052d938f178dc9b (patch) | |
tree | 0d3af3832ada74f2dae87de971bbd46fcbabf106 /include | |
parent | cc44826a26b12b2489bc7dbb597fcdf107f2cc01 (diff) |
Revert adding some arch-specific signal syscalls to <linux/syscalls.h>.
It turns out there is some variance on the calling conventions for
these syscalls, and <asm-generic/syscalls.h> is already the mechanism
used to handle this. Switch arch/tile over to using that mechanism and
tweak the calling conventions for a couple of tile syscalls to match
<asm-generic/syscalls.h>.
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/syscalls.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h index 1e3cd5fec7ed..7f614ce274a9 100644 --- a/include/linux/syscalls.h +++ b/include/linux/syscalls.h | |||
@@ -364,13 +364,9 @@ asmlinkage long sys_init_module(void __user *umod, unsigned long len, | |||
364 | asmlinkage long sys_delete_module(const char __user *name_user, | 364 | asmlinkage long sys_delete_module(const char __user *name_user, |
365 | unsigned int flags); | 365 | unsigned int flags); |
366 | 366 | ||
367 | asmlinkage long sys_rt_sigaction(int sig, const struct sigaction __user *act, | ||
368 | struct sigaction __user *oact, | ||
369 | size_t sigsetsize); | ||
370 | asmlinkage long sys_rt_sigprocmask(int how, sigset_t __user *set, | 367 | asmlinkage long sys_rt_sigprocmask(int how, sigset_t __user *set, |
371 | sigset_t __user *oset, size_t sigsetsize); | 368 | sigset_t __user *oset, size_t sigsetsize); |
372 | asmlinkage long sys_rt_sigpending(sigset_t __user *set, size_t sigsetsize); | 369 | asmlinkage long sys_rt_sigpending(sigset_t __user *set, size_t sigsetsize); |
373 | asmlinkage long sys_rt_sigsuspend(sigset_t __user *unewset, size_t sigsetsize); | ||
374 | asmlinkage long sys_rt_sigtimedwait(const sigset_t __user *uthese, | 370 | asmlinkage long sys_rt_sigtimedwait(const sigset_t __user *uthese, |
375 | siginfo_t __user *uinfo, | 371 | siginfo_t __user *uinfo, |
376 | const struct timespec __user *uts, | 372 | const struct timespec __user *uts, |