sandbox/ebpf/hello.c

6 lines
85 B
C

int kprobe__sys_clone(void *ctx)
{
bpf_trace_printk("Hello, world\n");
return 0;
}