summaryrefslogtreecommitdiff
path: root/tools/perf/util/bpf_skel/bench_uprobe.bpf.c
blob: 1365dcc5dddff5467fc1ae0ce44f967cf2757fb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
// Copyright (c) 2023 Red Hat
#include "vmlinux.h"
#include <bpf/bpf_tracing.h>

SEC("uprobe")
int BPF_UPROBE(empty)
{
       return 0;
}

char LICENSE[] SEC("license") = "Dual BSD/GPL";