summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2001-11-16 12:14:09 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2001-11-16 12:14:09 +0000
commit5e098bc146b3887dee6aa8ab6dc77e2f14db9853 (patch)
treeead9b387fa423d1a09c8bf49a7e36b5d48a8af9d /CHANGES
parentab098def998cf419ac0ea4e416bfdebb1d575a72 (diff)
downloadlibapr-5e098bc146b3887dee6aa8ab6dc77e2f14db9853.tar.gz
Fix apr_setup_signal_thread() to grab the right error code from
a sigprocmask() failure. This only affects platforms that use sigprocmask() in lieu of pthread_sigmask(). sigprocmask() reports error codes via errno, not via the return code. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62517 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index ee0a32173..ab6d433db 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,9 @@
Changes with APR b1
+ *) Fix apr_setup_signal_thread() to grab the right error code from
+ a sigprocmask() failure. This only affects platforms that use
+ sigprocmask() in lieu of pthread_sigmask(). [Jeff Trawick]
+
*) Fix the Unix HAVE_POLL flavor of apr_poll_socket_mask() so that
it doesn't segfault. Avoid some wasted storage in a poll-related
APR structure. [INOUE Seiichiro <inoue@ariel-networks.com>]