summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2002-05-09 18:56:43 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2002-05-09 18:56:43 +0000
commitcc470704f31a83ed42bb1b550fc8872a33c8180d (patch)
tree5f6a97db2fc0f8c73cab710b014b53224f76b049 /CHANGES
parent8411aca0f9fe26bac16f13eb84f4ab6c2bbc2844 (diff)
downloadlibapr-cc470704f31a83ed42bb1b550fc8872a33c8180d.tar.gz
Fix a problem with global mutexes on OS/390 when something other
than the default mechanism (fcntl) was used. The mutexes didn't necessarily block out other threads in the same process. This commit also adds the infrastructure to allow any individual process mutex mechanism to be declared as global for a platform so that APR doesn't wastefully use an extra thread mutex for any operations on a global mutex based on that process mutex mechanism. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63376 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES5
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 1dd98a685..71e894988 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,10 @@
Changes with APR b1
+ *) Fix a problem with global mutexes on OS/390 when something other
+ than the default mechanism (fcntl) was used. The mutexes didn't
+ necessarily block out other threads in the same process.
+ [Jeff Trawick]
+
*) Fixed apr_strfsize formatting of values over 1 gig
[Matsuzaki Yoshinobu <maz@iij.ad.jp>]