summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorbrianp <brianp@13f79535-47bb-0310-9956-ffa450edef68>2002-03-15 02:26:10 +0000
committerbrianp <brianp@13f79535-47bb-0310-9956-ffa450edef68>2002-03-15 02:26:10 +0000
commit6841e94f530de59c4e4c16dae4780128b37ab33a (patch)
tree7475ded1fc38a9bc9ca58a0e00c65d43d56e7139 /CHANGES
parent6f5af07bec3dc44e37674fd8f4d1a77eede75601 (diff)
downloadlibapr-6841e94f530de59c4e4c16dae4780128b37ab33a.tar.gz
Only create a thread mutex with apr_file_open if the flags
include APR_XTHREAD. (This keeps us from doing a mutex lock/unlock on every read/write of a buffered file that's only used by a single thread.) git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63134 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES3
1 files changed, 3 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index cacf0a91d..41da02bb6 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,8 @@
Changes with APR b1
+ *) When opening a file, only create an internal thread mutex
+ if APR_XTHREAD is set. [Brian Pane]
+
*) Move the kill_conditions enum in apr_thread_proc.h into the
APR namespace. kill_after_timeout et al have been renamed
appropriately (e.g., APR_KILL_AFTER_TIMEOUT). [Jeff Trawick]