mirror of
https://github.com/ukui/kernel.git
synced 2026-03-09 10:07:04 -07:00
Pull signal handling cleanups from Al Viro: "sigaltstack infrastructure + conversion for x86, alpha and um, COMPAT_SYSCALL_DEFINE infrastructure. Note that there are several conflicts between "unify SS_ONSTACK/SS_DISABLE definitions" and UAPI patches in mainline; resolution is trivial - just remove definitions of SS_ONSTACK and SS_DISABLED from arch/*/uapi/asm/signal.h; they are all identical and include/uapi/linux/signal.h contains the unified variant." Fixed up conflicts as per Al. * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/signal: alpha: switch to generic sigaltstack new helpers: __save_altstack/__compat_save_altstack, switch x86 and um to those generic compat_sys_sigaltstack() introduce generic sys_sigaltstack(), switch x86 and um to it new helper: compat_user_stack_pointer() new helper: restore_altstack() unify SS_ONSTACK/SS_DISABLE definitions new helper: current_user_stack_pointer() missing user_stack_pointer() instances Bury the conditionals from kernel_thread/kernel_execve series COMPAT_SYSCALL_DEFINE: infrastructure
35 lines
1.0 KiB
C
35 lines
1.0 KiB
C
#ifndef _ALPHA_UNISTD_H
|
|
#define _ALPHA_UNISTD_H
|
|
|
|
#include <uapi/asm/unistd.h>
|
|
|
|
|
|
#define NR_SYSCALLS 506
|
|
|
|
#define __ARCH_WANT_OLD_READDIR
|
|
#define __ARCH_WANT_STAT64
|
|
#define __ARCH_WANT_SYS_GETHOSTNAME
|
|
#define __ARCH_WANT_SYS_FADVISE64
|
|
#define __ARCH_WANT_SYS_GETPGRP
|
|
#define __ARCH_WANT_SYS_OLD_GETRLIMIT
|
|
#define __ARCH_WANT_SYS_OLDUMOUNT
|
|
#define __ARCH_WANT_SYS_SIGPENDING
|
|
#define __ARCH_WANT_SYS_RT_SIGSUSPEND
|
|
#define __ARCH_WANT_SYS_FORK
|
|
#define __ARCH_WANT_SYS_VFORK
|
|
#define __ARCH_WANT_SYS_CLONE
|
|
|
|
/* "Conditional" syscalls. What we want is
|
|
|
|
__attribute__((weak,alias("sys_ni_syscall")))
|
|
|
|
but that raises the problem of what type to give the symbol. If we use
|
|
a prototype, it'll conflict with the definition given in this file and
|
|
others. If we use __typeof, we discover that not all symbols actually
|
|
have declarations. If we use no prototype, then we get warnings from
|
|
-Wstrict-prototypes. Ho hum. */
|
|
|
|
#define cond_syscall(x) asm(".weak\t" #x "\n" #x " = sys_ni_syscall")
|
|
|
|
#endif /* _ALPHA_UNISTD_H */
|