aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2018-05-18 10:27:15 -0400
committerHelge Deller <deller@gmx.de>2018-06-28 11:10:58 -0400
commit704e38303153c797d66c41bbe8325202f549b53c (patch)
tree3512b589ded9839886964956631e7f613964bc27
parentf57494321cbf5b1e7769b6135407d2995a369e28 (diff)
parisc: Drop struct sigaction from not exported header file
This header file isn't exported to userspace, so there is no benefit in defining struct sigaction for userspace here. Signed-off-by: Helge Deller <deller@gmx.de>
-rw-r--r--arch/parisc/include/asm/signal.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/arch/parisc/include/asm/signal.h b/arch/parisc/include/asm/signal.h
index eeb5c8858663..715c96ba2ec8 100644
--- a/arch/parisc/include/asm/signal.h
+++ b/arch/parisc/include/asm/signal.h
@@ -21,14 +21,6 @@ typedef struct {
21 unsigned long sig[_NSIG_WORDS]; 21 unsigned long sig[_NSIG_WORDS];
22} sigset_t; 22} sigset_t;
23 23
24#ifndef __KERNEL__
25struct sigaction {
26 __sighandler_t sa_handler;
27 unsigned long sa_flags;
28 sigset_t sa_mask; /* mask last for extensibility */
29};
30#endif
31
32#include <asm/sigcontext.h> 24#include <asm/sigcontext.h>
33 25
34#endif /* !__ASSEMBLY */ 26#endif /* !__ASSEMBLY */