Sign in
nest-open-source
/
manifest_repos
/
kernel
/
33ab6c4916103ccfc52b7a377dfb69d84cc98acc
/
.
/
tools
/
bpf
/
bpftool
/
skeleton
/
pid_iter.h
blob: 5692cf257adb914e7fdc996a2dce4be0b024aebb [
file
]
/* 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
;
char
comm
[
16
];
};
#endif