Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.7 14 lines 252 B view raw
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 6struct pid_iter_entry { 7 __u32 id; 8 int pid; 9 __u64 bpf_cookie; 10 bool has_bpf_cookie; 11 char comm[16]; 12}; 13 14#endif