DEBSOURCES
Skip Quicknav
sources / linux / 6.1.8-1 / tools / perf / examples / bpf / hello.c
123456789
#include <stdio.h> int syscall_enter(openat)(void *args) { puts("Hello, world\n"); return 0; } license(GPL);