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
1 changed files with 10 additions and 1 deletions

View File

@ -21,11 +21,20 @@ struct old_kernel_sigaction {
#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. */
struct kernel_sigaction {
unsigned int sa_flags;
__sighandler_t k_sa_handler;
sigset_t sa_mask;
kernel_sigset_t sa_mask;
void (*sa_restorer)(void);
int s_resv[1]; /* reserved */
};