15 lines
252 B
C
Raw Normal View History

2026-01-21 18:59:54 +08:00
/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
/* Copyright (c) 2020 Facebook */
#ifndef __PID_ITER_H
#define __PID_ITER_H
struct pid_iter_entry {
__u32 id;
int pid;
2026-01-29 22:25:33 +08:00
__u64 bpf_cookie;
bool has_bpf_cookie;
2026-01-21 18:59:54 +08:00
char comm[16];
};
#endif