brintos

brintos / linux-shallow public Read only

0
0
Text · 289 B · 5367f61 Raw
16 lines · c
1// SPDX-License-Identifier: GPL-2.02#include <linux/bpf.h>3#include <bpf/bpf_helpers.h>4#include <bpf/bpf_tracing.h>5 6char _license[] SEC("license") = "GPL";7 8int count;9 10SEC("uprobe.multi/./uprobe_multi:uprobe_multi_func_*")11int uprobe_bench(struct pt_regs *ctx)12{13	count++;14	return 0;15}16