sys_ni.c (6c0f568e84a3cfc775682311d65205462c3f3bc1) | sys_ni.c (5b25b13ab08f616efd566347d809b4ece54570d1) |
---|---|
1 2#include <linux/linkage.h> 3#include <linux/errno.h> 4 5#include <asm/unistd.h> 6 7/* we can't #include <linux/syscalls.h> here, 8 but tell gcc to not warn with -Wmissing-prototypes */ --- 231 unchanged lines hidden (view full) --- 240/* operate on Secure Computing state */ 241cond_syscall(sys_seccomp); 242 243/* access BPF programs and maps */ 244cond_syscall(sys_bpf); 245 246/* execveat */ 247cond_syscall(sys_execveat); | 1 2#include <linux/linkage.h> 3#include <linux/errno.h> 4 5#include <asm/unistd.h> 6 7/* we can't #include <linux/syscalls.h> here, 8 but tell gcc to not warn with -Wmissing-prototypes */ --- 231 unchanged lines hidden (view full) --- 240/* operate on Secure Computing state */ 241cond_syscall(sys_seccomp); 242 243/* access BPF programs and maps */ 244cond_syscall(sys_bpf); 245 246/* execveat */ 247cond_syscall(sys_execveat); |
248 249/* membarrier */ 250cond_syscall(sys_membarrier); |
|