xref: /linux/arch/x86/include/asm/seccomp.h (revision 44f57d78)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_X86_SECCOMP_H
3 #define _ASM_X86_SECCOMP_H
4 
5 #include <asm/unistd.h>
6 
7 #ifdef CONFIG_X86_32
8 #define __NR_seccomp_sigreturn		__NR_sigreturn
9 #endif
10 
11 #ifdef CONFIG_COMPAT
12 #include <asm/ia32_unistd.h>
13 #define __NR_seccomp_read_32		__NR_ia32_read
14 #define __NR_seccomp_write_32		__NR_ia32_write
15 #define __NR_seccomp_exit_32		__NR_ia32_exit
16 #define __NR_seccomp_sigreturn_32	__NR_ia32_sigreturn
17 #endif
18 
19 #include <asm-generic/seccomp.h>
20 
21 #endif /* _ASM_X86_SECCOMP_H */
22