1/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
2/* Copyright (c) 2020 Facebook */
3#ifndef __PID_ITER_H
4#define __PID_ITER_H
5
6struct pid_iter_entry {
7	__u32 id;
8	int pid;
9	__u64 bpf_cookie;
10	bool has_bpf_cookie;
11	char comm[16];
12};
13
14#endif
15