patch-2.1.106 linux/include/asm-m68k/signal.h
Next file: linux/include/asm-m68k/stat.h
Previous file: linux/include/asm-m68k/setup.h
Back to the patch index
Back to the overall index
- Lines: 20
- Date:
Sat Jun 13 13:14:33 1998
- Orig file:
v2.1.105/linux/include/asm-m68k/signal.h
- Orig date:
Thu Mar 26 15:57:05 1998
diff -u --recursive --new-file v2.1.105/linux/include/asm-m68k/signal.h linux/include/asm-m68k/signal.h
@@ -142,11 +142,18 @@
/* 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;
unsigned long sa_flags;
void (*sa_restorer)(void);
};
+
+#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