Sign in
android-kvm
/
linux
/
51ceeb1a8142537b9f65aeaac6c301560a948197
/
.
/
tools
/
bpf
/
bpftool
/
skeleton
/
pid_iter.h
blob: bbb570d4cca696190dc5aaf06ce814097bd2af69 [
file
] [
log
] [
blame
]
/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
/* Copyright (c) 2020 Facebook */
#ifndef
__PID_ITER_H
#define
__PID_ITER_H
struct
pid_iter_entry
{
__u32 id
;
int
pid
;
__u64 bpf_cookie
;
bool
has_bpf_cookie
;
char
comm
[
16
];
};
#endif