btfdump 0.0.4

BTF introspection tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
typedef int (*fnproto)();

static fnproto v = 0;

int func() {
	return 0;
}

int func_with_args(int a, int b) {
	return (int)v;
}