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:
@ -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 */
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user