(old_kernel_sigaction): Define.

(struct kernel_sigaction): Rename sa_handler to k_sa_handler.
This commit is contained in:
Ulrich Drepper 1998-11-28 21:00:37 +00:00
parent 598f68bf68
commit 35a72cb3b3

View File

@ -4,9 +4,12 @@
#define HAVE_SA_RESTORER
/* Linux/MIPS still uses the old sigaction structure in the kernel. */
#define old_kernel_sigaction kernel_sigaction
struct kernel_sigaction {
unsigned int sa_flags;
__sighandler_t sa_handler;
__sighandler_t k_sa_handler;
unsigned long sa_mask;
unsigned int __pad0[3]; /* reserved, keep size constant */