summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/bpf/progs/tracing_multi_bench.c
blob: beae946cb8c4c2c68e38ef6e7767ed04420602f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: GPL-2.0
#include <vmlinux.h>
#include <bpf/bpf_helpers.h>
#include <bpf/bpf_tracing.h>

char _license[] SEC("license") = "GPL";

SEC("fentry.multi")
int BPF_PROG(bench)
{
	return 0;
}