mirror of
git://git.musl-libc.org/musl
synced 2024-12-14 18:55:23 +00:00
major bugfix for sigset_t (it was mistakenly 1024 bytes instead of bits)
note that object files using sigset_t (or struct sigaction) need to be recompiled to work correctly after this fix.
This commit is contained in:
parent
74eea628cf
commit
e8362c8b51
@ -96,7 +96,7 @@ TYPEDEF int timer_t;
|
||||
TYPEDEF int clockid_t;
|
||||
TYPEDEF unsigned long clock_t;
|
||||
|
||||
TYPEDEF struct { unsigned long __bits[1024/sizeof(long)]; } sigset_t;
|
||||
TYPEDEF struct { unsigned long __bits[128/sizeof(long)]; } sigset_t;
|
||||
TYPEDEF struct __siginfo siginfo_t;
|
||||
|
||||
TYPEDEF unsigned int socklen_t;
|
||||
|
@ -10,7 +10,7 @@ extern "C" {
|
||||
|
||||
#if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
|
||||
|| defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE)
|
||||
typedef unsigned long sigjmp_buf[(1024+sizeof(jmp_buf))/sizeof(long)];
|
||||
typedef unsigned long sigjmp_buf[(128+sizeof(jmp_buf))/sizeof(long)];
|
||||
#ifdef _GNU_SOURCE
|
||||
#define jmp_buf sigjmp_buf
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user