mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
11 lines
209 B
C
11 lines
209 B
C
![]() |
// SPDX-License-Identifier: LGPL-2.1
|
||
|
|
||
|
#include <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();
|
||
|
}
|