Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 #include <linux/bpf.h>
0003 #include <bpf/bpf_helpers.h>
0004 #include <bpf/bpf_tracing.h>
0005 
0006 char _license[] SEC("license") = "GPL";
0007 
0008 SEC("kprobe.multi/")
0009 int test_kprobe_empty(struct pt_regs *ctx)
0010 {
0011     return 0;
0012 }