Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * S390 version |
| 4 | * |
| 5 | * Derived from "include/asm-i386/signal.h" |
| 6 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | #ifndef _ASMS390_SIGNAL_H |
| 8 | #define _ASMS390_SIGNAL_H |
| 9 | |
David Howells | 9807f75 | 2012-10-09 09:47:31 +0100 | [diff] [blame] | 10 | #include <uapi/asm/signal.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | /* Most things should be clean enough to redefine this at will, if care |
| 13 | is taken to make libc match. */ |
| 14 | #include <asm/sigcontext.h> |
| 15 | #define _NSIG _SIGCONTEXT_NSIG |
| 16 | #define _NSIG_BPW _SIGCONTEXT_NSIG_BPW |
| 17 | #define _NSIG_WORDS _SIGCONTEXT_NSIG_WORDS |
| 18 | |
| 19 | typedef unsigned long old_sigset_t; /* at least 32 bits */ |
| 20 | |
| 21 | typedef struct { |
| 22 | unsigned long sig[_NSIG_WORDS]; |
| 23 | } sigset_t; |
| 24 | |
Al Viro | 574c486 | 2012-11-25 22:24:19 -0500 | [diff] [blame] | 25 | #define __ARCH_HAS_SA_RESTORER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #endif |