1
0
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:
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

@ -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);