15 lines
252 B
C
15 lines
252 B
C
/* 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;
|
|
__u64 bpf_cookie;
|
|
bool has_bpf_cookie;
|
|
char comm[16];
|
|
};
|
|
|
|
#endif
|