Skip to content

Commit

Permalink
S390: Correct type of sa_flags in struct sigaction for POSIX conformance
Browse files Browse the repository at this point in the history
(BZ #16713).
  • Loading branch information
Stefan Liebler authored and Andreas Krebbel committed Mar 24, 2014
1 parent 78b6eeb commit a2d86bf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion sysdeps/unix/sysv/linux/s390/bits/sigaction.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit a2d86bf

Please sign in to comment.