code style scripts/checkpatch.pl (linux-3.9-rc1) formatting
[linux-2.6.34.14-moxart.git] / include / linux / seccomp.h
blob167c33361d9cbe00be54a0a3c56732ce7f310620
1 #ifndef _LINUX_SECCOMP_H
2 #define _LINUX_SECCOMP_H
5 #ifdef CONFIG_SECCOMP
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 #include <linux/errno.h>
26 typedef struct { } seccomp_t;
28 #define secure_computing(x) do { } while (0)
30 static inline long prctl_get_seccomp(void)
32 return -EINVAL;
35 static inline long prctl_set_seccomp(unsigned long arg2)
37 return -EINVAL;
40 #endif /* CONFIG_SECCOMP */
42 #endif /* _LINUX_SECCOMP_H */