xref: /linux/tools/bpf/bpftool/skeleton/pid_iter.h (revision ac8bf0de6ad7fa399d016d6dfc4b9c2f17625a8b)
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 
6 struct pid_iter_entry {
7 	__u32 id;
8 	int pid;
9 	char comm[16];
10 };
11 
12 #endif
13