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

ucontext.h (360B)


      1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
      2#ifndef _ASM_IA64_UCONTEXT_H
      3#define _ASM_IA64_UCONTEXT_H
      4
      5struct ucontext {
      6	struct sigcontext uc_mcontext;
      7};
      8
      9#define uc_link		uc_mcontext.sc_gr[0]	/* wrong type; nobody cares */
     10#define uc_sigmask	uc_mcontext.sc_sigmask
     11#define uc_stack	uc_mcontext.sc_stack
     12
     13#endif /* _ASM_IA64_UCONTEXT_H */