S390: Correct type of sa_flags in struct sigaction for POSIX conformance

(BZ #16713).
This commit is contained in:
Stefan Liebler 2014-03-24 16:34:49 +01:00 committed by Andreas Krebbel
parent 78b6eebcf1
commit a2d86bf1ec
2 changed files with 9 additions and 1 deletions

View File

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

View File

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