cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

target_signal.h (497B)


      1#ifndef S390X_TARGET_SIGNAL_H
      2#define S390X_TARGET_SIGNAL_H
      3
      4typedef struct target_sigaltstack {
      5    abi_ulong ss_sp;
      6    abi_int ss_flags;
      7    abi_ulong ss_size;
      8} target_stack_t;
      9
     10/*
     11 * sigaltstack controls
     12 */
     13#define TARGET_SS_ONSTACK      1
     14#define TARGET_SS_DISABLE      2
     15
     16#define TARGET_MINSIGSTKSZ     2048
     17#define TARGET_SIGSTKSZ        8192
     18
     19#include "../generic/signal.h"
     20
     21#define TARGET_ARCH_HAS_SETUP_FRAME
     22#define TARGET_ARCH_HAS_SIGTRAMP_PAGE 1
     23
     24#endif /* S390X_TARGET_SIGNAL_H */