Blame view

include/asm-x86/seccomp_32.h 354 Bytes
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
  #ifndef _ASM_SECCOMP_H
83bea8e1f   Vegard Nossum   x86: fix incomple...
2
  #define _ASM_SECCOMP_H
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  
  #include <linux/thread_info.h>
  
  #ifdef TIF_32BIT
  #error "unexpected TIF_32BIT on i386"
  #endif
  
  #include <linux/unistd.h>
  
  #define __NR_seccomp_read __NR_read
  #define __NR_seccomp_write __NR_write
  #define __NR_seccomp_exit __NR_exit
  #define __NR_seccomp_sigreturn __NR_sigreturn
  
  #endif /* _ASM_SECCOMP_H */