aboutsummaryrefslogtreecommitdiffstats
path: root/tools/bpf/bpftool/skeleton/pid_iter.h
blob: 5692cf257adb914e7fdc996a2dce4be0b024aebb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/* 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;
	char comm[16];
};

#endif