repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git]
/
tools
/
perf
/
include
/
bpf
/
unistd.h
blob
d1a35b6c649dc7b860ccb661f3e71ba0b595ce69
1
// SPDX-License-Identifier: LGPL-2.1
2
3
#include <bpf/bpf.h>
4
5
static int
(*
bpf_get_current_pid_tgid
)(
void
) = (
void
*)
BPF_FUNC_get_current_pid_tgid
;
6
7
static
pid_t
getpid
(
void
)
8
{
9
return
bpf_get_current_pid_tgid
();
10
}