Linux Audio

Check our new training course

Loading...
v5.4
1#include <bpf.h>
 
 
2
3license(GPL);
 
 
 
 
 
 
 
v6.2
 1// SPDX-License-Identifier: GPL-2.0
 2#include <linux/bpf.h>
 3#include <bpf/bpf_helpers.h>
 4
 5struct syscall_enter_args;
 6
 7SEC("raw_syscalls:sys_enter")
 8int sys_enter(struct syscall_enter_args *args)
 9{
10	return 0;
11}
12char _license[] SEC("license") = "GPL";