sandbox/ebpf/hello.c

6 lines
85 B
C
Raw Normal View History

2019-09-17 20:53:44 +00:00
int kprobe__sys_clone(void *ctx)
{
bpf_trace_printk("Hello, world\n");
return 0;
}