Merge tag 'pwm/for-5.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/thierry...
[linux-2.6-microblaze.git] / tools / bpf / bpftool / skeleton / pid_iter.h
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