diff options
author | Helge Deller <deller@gmx.de> | 2018-01-13 19:32:43 -0600 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2018-04-11 11:40:35 +0200 |
commit | 75abf64287cab73546382a4fa7fa2f4e3516efeb (patch) | |
tree | 48c47c25880b404b21f2dcf05594858d766be48e /arch/x86 | |
parent | b284d4d5a6785f8cd07eda2646a95782373cd01e (diff) |
parisc/signal: Add FPE_CONDTRAP for conditional trap handling
Posix and common sense requires that SI_USER not be a signal specific
si_code. Thus add a new FPE_CONDTRAP si_code for conditional traps.
Signed-off-by: Helge Deller <deller@gmx.de>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/signal_compat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/signal_compat.c b/arch/x86/kernel/signal_compat.c index df92605d8724..14c057f29979 100644 --- a/arch/x86/kernel/signal_compat.c +++ b/arch/x86/kernel/signal_compat.c @@ -26,7 +26,7 @@ static inline void signal_compat_build_tests(void) * new fields are handled in copy_siginfo_to_user32()! */ BUILD_BUG_ON(NSIGILL != 11); - BUILD_BUG_ON(NSIGFPE != 14); + BUILD_BUG_ON(NSIGFPE != 15); BUILD_BUG_ON(NSIGSEGV != 7); BUILD_BUG_ON(NSIGBUS != 5); BUILD_BUG_ON(NSIGTRAP != 4); |