linuxdebug/tools/bpf/bpftool/skeleton/pid_iter.h
2024-07-16 15:50:57 +02:00

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