mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Fix sigaction conform test failures on sparc.
* sysdeps/unix/sysv/linux/sparc/bits/sigaction.h (struct sigaction): New struct member __glibc_reserved0, change type of sa_flags to int.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2014-04-22 David S. Miller <davem@davemloft.net>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/sparc/bits/sigaction.h
|
||||||
|
(struct sigaction): New struct member __glibc_reserved0, change
|
||||||
|
type of sa_flags to int.
|
||||||
|
|
||||||
2014-04-22 Yufeng Zhang <yufeng.zhang@arm.com>
|
2014-04-22 Yufeng Zhang <yufeng.zhang@arm.com>
|
||||||
|
|
||||||
* stdlib/longlong.h (count_leading_zeros, count_trailing_zeros)
|
* stdlib/longlong.h (count_leading_zeros, count_trailing_zeros)
|
||||||
|
@ -43,7 +43,8 @@ struct sigaction
|
|||||||
__sigset_t sa_mask;
|
__sigset_t sa_mask;
|
||||||
|
|
||||||
/* Special flags. */
|
/* Special flags. */
|
||||||
unsigned long sa_flags;
|
int __glibc_reserved0;
|
||||||
|
int sa_flags;
|
||||||
|
|
||||||
/* Not used by Linux/Sparc yet. */
|
/* Not used by Linux/Sparc yet. */
|
||||||
void (*sa_restorer) (void);
|
void (*sa_restorer) (void);
|
||||||
|
Reference in New Issue
Block a user