mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 10:50:07 +00:00
S390: Correct type of sa_flags in struct sigaction for POSIX conformance
(BZ #16713).
This commit is contained in:
parent
78b6eebcf1
commit
a2d86bf1ec
@ -1,3 +1,10 @@
|
||||
2014-03-24 Stefan Liebler <stli@linux.vnet.ibm.com>
|
||||
|
||||
[BZ #16713]
|
||||
* sysdeps/unix/sysv/linux/s390/bits/sigaction.h
|
||||
(__glibc_reserved0): New variable.
|
||||
(sa_flags): Change type to int.
|
||||
|
||||
2014-03-24 Stefan Liebler <stli@linux.vnet.ibm.com>
|
||||
|
||||
* posix/Makefile (before-compile): Use += before-compile instead
|
||||
|
@ -43,7 +43,8 @@ struct sigaction
|
||||
#endif
|
||||
|
||||
/* Special flags. */
|
||||
unsigned long int sa_flags;
|
||||
int __glibc_reserved0;
|
||||
int sa_flags;
|
||||
|
||||
/* Restore handler. */
|
||||
void (*sa_restorer) (void);
|
||||
|
Loading…
Reference in New Issue
Block a user