]> Git Repo - linux.git/blob - tools/bpf/bpftool/skeleton/pid_iter.h
Linux 6.14-rc3
[linux.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         __u64 bpf_cookie;
10         bool has_bpf_cookie;
11         char comm[16];
12 };
13
14 #endif
This page took 0.030805 seconds and 4 git commands to generate.