Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
0002 /* Copyright (c) 2020 Facebook */
0003 #ifndef __PID_ITER_H
0004 #define __PID_ITER_H
0005 
0006 struct pid_iter_entry {
0007     __u32 id;
0008     int pid;
0009     __u64 bpf_cookie;
0010     bool has_bpf_cookie;
0011     char comm[16];
0012 };
0013 
0014 #endif