aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/compat.h4
-rw-r--r--include/linux/signal.h1
2 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/compat.h b/include/linux/compat.h
index 9d3c2a98d537..75548a43a1c5 100644
--- a/include/linux/compat.h
+++ b/include/linux/compat.h
@@ -598,6 +598,10 @@ asmlinkage long compat_sys_rt_sigprocmask(int how, compat_sigset_t __user *set,
598 compat_sigset_t __user *oset, 598 compat_sigset_t __user *oset,
599 compat_size_t sigsetsize); 599 compat_size_t sigsetsize);
600#endif 600#endif
601#ifdef CONFIG_GENERIC_COMPAT_RT_SIGPENDING
602asmlinkage long compat_sys_rt_sigpending(compat_sigset_t __user *uset,
603 compat_size_t sigsetsize);
604#endif
601asmlinkage long compat_sys_sysinfo(struct compat_sysinfo __user *info); 605asmlinkage long compat_sys_sysinfo(struct compat_sysinfo __user *info);
602asmlinkage long compat_sys_ioctl(unsigned int fd, unsigned int cmd, 606asmlinkage long compat_sys_ioctl(unsigned int fd, unsigned int cmd,
603 unsigned long arg); 607 unsigned long arg);
diff --git a/include/linux/signal.h b/include/linux/signal.h
index 0a89ffc48466..786bd99fde65 100644
--- a/include/linux/signal.h
+++ b/include/linux/signal.h
@@ -243,7 +243,6 @@ extern int group_send_sig_info(int sig, struct siginfo *info, struct task_struct
243extern int __group_send_sig_info(int, struct siginfo *, struct task_struct *); 243extern int __group_send_sig_info(int, struct siginfo *, struct task_struct *);
244extern long do_rt_tgsigqueueinfo(pid_t tgid, pid_t pid, int sig, 244extern long do_rt_tgsigqueueinfo(pid_t tgid, pid_t pid, int sig,
245 siginfo_t *info); 245 siginfo_t *info);
246extern long do_sigpending(void __user *, unsigned long);
247extern int do_sigtimedwait(const sigset_t *, siginfo_t *, 246extern int do_sigtimedwait(const sigset_t *, siginfo_t *,
248 const struct timespec *); 247 const struct timespec *);
249extern int sigprocmask(int, sigset_t *, sigset_t *); 248extern int sigprocmask(int, sigset_t *, sigset_t *);