signal.h (cdd38c5f1ce4398ec58fec95904b75824daab7b5) signal.h (72113d0a7d90d950c7c9a87ab905bffb6bc5752d)
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2#ifndef _UAPI_ASM_POWERPC_SIGNAL_H
3#define _UAPI_ASM_POWERPC_SIGNAL_H
4
5#include <linux/types.h>
6
7#define _NSIG 64
8#ifdef __powerpc64__

--- 72 unchanged lines hidden (view full) ---

81 __sigrestore_t sa_restorer;
82 sigset_t sa_mask; /* mask last for extensibility */
83};
84#endif
85
86typedef struct sigaltstack {
87 void __user *ss_sp;
88 int ss_flags;
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2#ifndef _UAPI_ASM_POWERPC_SIGNAL_H
3#define _UAPI_ASM_POWERPC_SIGNAL_H
4
5#include <linux/types.h>
6
7#define _NSIG 64
8#ifdef __powerpc64__

--- 72 unchanged lines hidden (view full) ---

81 __sigrestore_t sa_restorer;
82 sigset_t sa_mask; /* mask last for extensibility */
83};
84#endif
85
86typedef struct sigaltstack {
87 void __user *ss_sp;
88 int ss_flags;
89 size_t ss_size;
89 __kernel_size_t ss_size;
90} stack_t;
91
92
93#ifndef __powerpc64__
94/*
95 * These are parameters to dbg_sigreturn syscall. They enable or
96 * disable certain debugging things that can be done from signal
97 * handlers. The dbg_sigreturn syscall *must* be called from a

--- 17 unchanged lines hidden ---
90} stack_t;
91
92
93#ifndef __powerpc64__
94/*
95 * These are parameters to dbg_sigreturn syscall. They enable or
96 * disable certain debugging things that can be done from signal
97 * handlers. The dbg_sigreturn syscall *must* be called from a

--- 17 unchanged lines hidden ---