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

signal.h (209B)


      1#include <asm/ucontext.h>
      2
      3struct sigframe {
      4	struct ucontext uc;
      5	unsigned long retcode[4];
      6};
      7
      8struct rt_sigframe {
      9	struct siginfo info;
     10	struct sigframe sig;
     11};
     12
     13extern struct page *get_signal_page(void);