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

runqslower.h (239B)


      1/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
      2#ifndef __RUNQSLOWER_H
      3#define __RUNQSLOWER_H
      4
      5#define TASK_COMM_LEN 16
      6
      7struct runq_event {
      8	char task[TASK_COMM_LEN];
      9	__u64 delta_us;
     10	pid_t pid;
     11};
     12
     13#endif /* __RUNQSLOWER_H */