1 #ifndef _LINUX_SECCOMP_H
2 #define _LINUX_SECCOMP_H
7 #include <linux/thread_info.h>
8 #include <asm/seccomp.h>
10 typedef struct { int mode
; } seccomp_t
;
12 extern void __secure_computing(int);
13 static inline void secure_computing(int this_syscall
)
15 if (unlikely(test_thread_flag(TIF_SECCOMP
)))
16 __secure_computing(this_syscall
);
19 extern long prctl_get_seccomp(void);
20 extern long prctl_set_seccomp(unsigned long);
22 #else /* CONFIG_SECCOMP */
24 typedef struct { } seccomp_t
;
26 #define secure_computing(x) do { } while (0)
28 static inline long prctl_get_seccomp(void)
33 static inline long prctl_set_seccomp(unsigned long arg2
)
38 #endif /* CONFIG_SECCOMP */
40 #endif /* _LINUX_SECCOMP_H */