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

signal32.h (358B)


      1/* SPDX-License-Identifier: GPL-2.0-only */
      2
      3#ifndef __ASM_SIGNAL32_H
      4#define __ASM_SIGNAL32_H
      5
      6#if IS_ENABLED(CONFIG_COMPAT)
      7int compat_setup_rt_frame(struct ksignal *ksig, sigset_t *set,
      8			  struct pt_regs *regs);
      9#else
     10static inline
     11int compat_setup_rt_frame(struct ksignal *ksig, sigset_t *set,
     12			  struct pt_regs *regs)
     13{
     14	return -1;
     15}
     16#endif
     17
     18#endif