Sign in
android-kvm
/
linux
/
60ceafd151d62eba6c19c27e617269567082a17d
/
.
/
tools
/
perf
/
include
/
bpf
/
unistd.h
blob: d1a35b6c649dc7b860ccb661f3e71ba0b595ce69 [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: LGPL-2.1
#include
<bpf/bpf.h>
static
int
(*
bpf_get_current_pid_tgid
)(
void
)
=
(
void
*)
BPF_FUNC_get_current_pid_tgid
;
static
pid_t
getpid
(
void
)
{
return
bpf_get_current_pid_tgid
();
}