1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

Declare kernel_sigset_t and use it.

Patch by Hiroyuki Machida <machida@sm.sony.co.jp>.
This commit is contained in:
Andreas Jaeger
2000-12-11 19:27:03 +00:00
parent 874b4dd5e8
commit 35d91e50cc

View File

@ -21,11 +21,20 @@ struct old_kernel_sigaction {
#endif #endif
}; };
#define _KERNEL_NSIG 128
#define _KERNEL_NSIG_BPW 32
#define _KERNEL_NSIG_WORDS (_KERNEL_NSIG / _KERNEL_NSIG_BPW)
typedef struct {
unsigned long sig[_KERNEL_NSIG_WORDS];
} kernel_sigset_t;
/* This is the sigaction structure from the Linux 2.1.68 kernel. */ /* This is the sigaction structure from the Linux 2.1.68 kernel. */
struct kernel_sigaction { struct kernel_sigaction {
unsigned int sa_flags; unsigned int sa_flags;
__sighandler_t k_sa_handler; __sighandler_t k_sa_handler;
sigset_t sa_mask; kernel_sigset_t sa_mask;
void (*sa_restorer)(void); void (*sa_restorer)(void);
int s_resv[1]; /* reserved */ int s_resv[1]; /* reserved */
}; };