Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
acme
/
linux
/
10ef3e8880952eec8083ce03e6695406e9ca1e18
/
.
/
tools
/
perf
/
util
/
bpf_skel
/
bench_uprobe.bpf.c
blob: 1365dcc5dddff5467fc1ae0ce44f967cf2757fb9 [
file
] [
log
] [
blame
]
// 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"
;