aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@gmail.com>2011-05-29 20:05:30 -0400
committerUlrich Drepper <drepper@gmail.com>2011-05-29 20:05:30 -0400
commitb1ebd700c5295a449f8d114740f0d1fb6e6b2eb5 (patch)
tree42d2ab766024dfbc29dff5158a1a4e6064c52338
parent8887a920a4b81a500f54893250085e0d1a52cf9a (diff)
downloadglibc-b1ebd700c5295a449f8d114740f0d1fb6e6b2eb5.tar
glibc-b1ebd700c5295a449f8d114740f0d1fb6e6b2eb5.tar.gz
glibc-b1ebd700c5295a449f8d114740f0d1fb6e6b2eb5.tar.bz2
glibc-b1ebd700c5295a449f8d114740f0d1fb6e6b2eb5.zip
Don't document si_code used for raise()
-rw-r--r--ChangeLog6
-rw-r--r--NEWS18
-rw-r--r--sysdeps/unix/sysv/linux/bits/siginfo.h4
3 files changed, 17 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index 6df2b0524a..0cac31fb67 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2011-05-29 Ulrich Drepper <drepper@gmail.com>
+
+ [BZ #11799]
+ * sysdeps/unix/sysv/linux/bits/siginfo.h (SI_USER): Don't mention
+ SI_USER in the comment.
+
2011-05-28 Ulrich Drepper <drepper@gmail.com>
[BZ #12811]
diff --git a/NEWS b/NEWS
index 333ecc66ea..7640467dec 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-GNU C Library NEWS -- history of user-visible changes. 2011-5-28
+GNU C Library NEWS -- history of user-visible changes. 2011-5-29
Copyright (C) 1992-2009, 2010, 2011 Free Software Foundation, Inc.
See the end for copying conditions.
@@ -10,14 +10,14 @@ Version 2.14
* The following bugs are resolved with this release:
386, 6420, 7101, 9730, 9732, 9809, 10138, 10149, 10157, 11257, 11258,
- 11487, 11532, 11578, 11653, 11668, 11697, 11724, 11820, 11837, 11857,
- 11869, 11892, 11895, 11901, 11945, 11947, 11952, 11987, 12052, 12083,
- 12158, 12178, 12200, 12346, 12393, 12420, 12432, 12445, 12449, 12453,
- 12454, 12460, 12469, 12489, 12509, 12510, 12511, 12518, 12527, 12541,
- 12545, 12551, 12582, 12583, 12587, 12597, 12601, 12611, 12625, 12626,
- 12631, 12650, 12653, 12655, 12660, 12671, 12681, 12685, 12711, 12713,
- 12714, 12717, 12723, 12724, 12734, 12738, 12746, 12766, 12775, 12777,
- 12782, 12788, 12792, 12795, 12811, 12813, 12814
+ 11487, 11532, 11578, 11653, 11668, 11697, 11724, 11799, 11820, 11837,
+ 11857, 11869, 11892, 11895, 11901, 11945, 11947, 11952, 11987, 12052,
+ 12083, 12158, 12178, 12200, 12346, 12393, 12420, 12432, 12445, 12449,
+ 12453, 12454, 12460, 12469, 12489, 12509, 12510, 12511, 12518, 12527,
+ 12541, 12545, 12551, 12582, 12583, 12587, 12597, 12601, 12611, 12625,
+ 12626, 12631, 12650, 12653, 12655, 12660, 12671, 12681, 12685, 12711,
+ 12713, 12714, 12717, 12723, 12724, 12734, 12738, 12746, 12766, 12775,
+ 12777, 12782, 12788, 12792, 12795, 12811, 12813, 12814
* The RPC implementation in libc is obsoleted. Old programs keep working
but new programs cannot be linked with the routines in libc anymore.
diff --git a/sysdeps/unix/sysv/linux/bits/siginfo.h b/sysdeps/unix/sysv/linux/bits/siginfo.h
index 4ce319dc97..d3dd4c21de 100644
--- a/sysdeps/unix/sysv/linux/bits/siginfo.h
+++ b/sysdeps/unix/sysv/linux/bits/siginfo.h
@@ -1,5 +1,5 @@
/* siginfo_t, sigevent and constants. Linux version.
- Copyright (C) 1997-2002, 2003 Free Software Foundation, Inc.
+ Copyright (C) 1997-2002, 2003, 2011 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -142,7 +142,7 @@ enum
# define SI_TIMER SI_TIMER
SI_QUEUE, /* Sent by sigqueue. */
# define SI_QUEUE SI_QUEUE
- SI_USER, /* Sent by kill, sigsend, raise. */
+ SI_USER, /* Sent by kill, sigsend. */
# define SI_USER SI_USER
SI_KERNEL = 0x80 /* Send by kernel. */
#define SI_KERNEL SI_KERNEL