mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
alpha: fix sa_flags type (BZ 16967)
This commit is contained in:
@ -1,5 +1,9 @@
|
|||||||
2014-05-20 Richard Henderson <rth@redhat.com>
|
2014-05-20 Richard Henderson <rth@redhat.com>
|
||||||
|
|
||||||
|
[BZ #16967]
|
||||||
|
* sysdeps/unix/sysv/linux/alpha/bits/sigaction.h (struct sigaction):
|
||||||
|
Change type of sa_flags from unsigned int to int.
|
||||||
|
|
||||||
[BZ #16966]
|
[BZ #16966]
|
||||||
* sysdeps/unix/sysv/linux/alpha/bits/siginfo.h: Remove file.
|
* sysdeps/unix/sysv/linux/alpha/bits/siginfo.h: Remove file.
|
||||||
|
|
||||||
|
2
NEWS
2
NEWS
@ -17,7 +17,7 @@ Version 2.20
|
|||||||
16712, 16713, 16714, 16731, 16739, 16740, 16743, 16754, 16758, 16759,
|
16712, 16713, 16714, 16731, 16739, 16740, 16743, 16754, 16758, 16759,
|
||||||
16760, 16770, 16786, 16789, 16791, 16799, 16800, 16815, 16823, 16824,
|
16760, 16770, 16786, 16789, 16791, 16799, 16800, 16815, 16823, 16824,
|
||||||
16831, 16838, 16849, 16854, 16876, 16877, 16885, 16888, 16890, 16912,
|
16831, 16838, 16849, 16854, 16876, 16877, 16885, 16888, 16890, 16912,
|
||||||
16916, 16917, 16922, 16927, 16928, 16932, 16943, 16958, 16966.
|
16916, 16917, 16922, 16927, 16928, 16932, 16943, 16958, 16966, 16967.
|
||||||
|
|
||||||
* The minimum Linux kernel version that this version of the GNU C Library
|
* The minimum Linux kernel version that this version of the GNU C Library
|
||||||
can be used with is 2.6.32.
|
can be used with is 2.6.32.
|
||||||
|
@ -43,7 +43,7 @@ struct sigaction
|
|||||||
__sigset_t sa_mask;
|
__sigset_t sa_mask;
|
||||||
|
|
||||||
/* Special flags. */
|
/* Special flags. */
|
||||||
unsigned int sa_flags;
|
int sa_flags;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Bits in `sa_flags'. */
|
/* Bits in `sa_flags'. */
|
||||||
|
Reference in New Issue
Block a user