signal.h 506 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _ASM_POWERPC_SIGNAL_H
  3. #define _ASM_POWERPC_SIGNAL_H
  4. #define __ARCH_HAS_SA_RESTORER
  5. #include <uapi/asm/signal.h>
  6. #include <uapi/asm/ptrace.h>
  7. struct pt_regs;
  8. void do_notify_resume(struct pt_regs *regs, unsigned long thread_info_flags);
  9. unsigned long get_min_sigframe_size_32(void);
  10. unsigned long get_min_sigframe_size_64(void);
  11. unsigned long get_min_sigframe_size(void);
  12. unsigned long get_min_sigframe_size_compat(void);
  13. #endif /* _ASM_POWERPC_SIGNAL_H */