patch-2.1.86 linux/include/asm-alpha/signal.h
Next file: linux/include/asm-alpha/unistd.h
Previous file: linux/include/asm-alpha/processor.h
Back to the patch index
Back to the overall index
- Lines: 19
- Date:
Fri Feb 6 10:06:55 1998
- Orig file:
v2.1.85/linux/include/asm-alpha/signal.h
- Orig date:
Tue Dec 9 09:31:19 1997
diff -u --recursive --new-file v2.1.85/linux/include/asm-alpha/signal.h linux/include/asm-alpha/signal.h
@@ -145,10 +145,17 @@
/* Here we must cater to libcs that poke about in kernel headers. */
struct sigaction {
- __sighandler_t sa_handler;
+ union {
+ __sighandler_t _sa_handler;
+ void (*_sa_sigaction)(int, struct siginfo *, void *);
+ } _u;
sigset_t sa_mask;
int sa_flags;
};
+
+#define sa_handler _u._sa_handler
+#define sa_sigaction _u._sa_sigaction
+
#endif /* __KERNEL__ */
typedef struct sigaltstack {
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov