github.com/inspektor-gadget/inspektor-gadget@v0.28.1/pkg/gadgets/top/ebpf/piditer/bpf/pid_iter.h (about) 1 /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */ 2 /* Copyright (c) 2020 Facebook, (c) 2022 The Inspektor Gadget authors */ 3 #ifndef __PID_ITER_H 4 #define __PID_ITER_H 5 6 struct pid_iter_entry { 7 __u32 id; 8 __u32 pid; 9 __u8 comm[16]; 10 }; 11 12 #endif