cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

pid_iter.h (252B)


      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