repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
WIP FPC-III support
[linux/fpc-iii.git]
/
tools
/
bpf
/
bpftool
/
skeleton
/
pid_iter.h
blob
5692cf257adb914e7fdc996a2dce4be0b024aebb
1
/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
2
/* Copyright (c) 2020 Facebook */
3
#ifndef __PID_ITER_H
4
#define __PID_ITER_H
5
6
struct
pid_iter_entry
{
7
__u32 id
;
8
int
pid
;
9
char
comm
[
16
];
10
};
11
12
#endif