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:
David S. Miller 2014-04-22 17:47:12 -07:00
parent ea6c92f3be
commit a059d359d8
2 changed files with 8 additions and 1 deletions

View File

@ -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>
* stdlib/longlong.h (count_leading_zeros, count_trailing_zeros)

View File

@ -43,7 +43,8 @@ struct sigaction
__sigset_t sa_mask;
/* Special flags. */
unsigned long sa_flags;
int __glibc_reserved0;
int sa_flags;
/* Not used by Linux/Sparc yet. */
void (*sa_restorer) (void);