seccomp_32.h 375 B

1234567891011121314151617
  1. #ifndef ASM_X86__SECCOMP_32_H
  2. #define ASM_X86__SECCOMP_32_H
  3. #include <linux/thread_info.h>
  4. #ifdef TIF_32BIT
  5. #error "unexpected TIF_32BIT on i386"
  6. #endif
  7. #include <linux/unistd.h>
  8. #define __NR_seccomp_read __NR_read
  9. #define __NR_seccomp_write __NR_write
  10. #define __NR_seccomp_exit __NR_exit
  11. #define __NR_seccomp_sigreturn __NR_sigreturn
  12. #endif /* ASM_X86__SECCOMP_32_H */