mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
linux: Fix __NSIG_WORDS and add __NSIG_BYTES
The __NSIG_WORDS value is based on minimum number of words to hold the maximum number of signals supported by the architecture. This patch also adds __NSIG_BYTES, which is the number of bytes required to represent the supported number of signals. It is used in syscalls which takes a sigset_t. Checked on x86_64-linux-gnu and i686-linux-gnu. Tested-by: Carlos O'Donell <carlos@redhat.com> Reviewed-by: Carlos O'Donell <carlos@redhat.com>
This commit is contained in:
@ -26,7 +26,8 @@ __sigtimedwait (const sigset_t *set, siginfo_t *info,
|
||||
{
|
||||
/* XXX The size argument hopefully will have to be changed to the
|
||||
real size of the user-level sigset_t. */
|
||||
int result = SYSCALL_CANCEL (rt_sigtimedwait, set, info, timeout, _NSIG / 8);
|
||||
int result = SYSCALL_CANCEL (rt_sigtimedwait, set, info, timeout,
|
||||
__NSIG_BYTES);
|
||||
|
||||
/* The kernel generates a SI_TKILL code in si_code in case tkill is
|
||||
used. tkill is transparently used in raise(). Since having
|
||||
|
Reference in New Issue
Block a user