brianp 02/03/14 18:26:10
Modified: . CHANGES
Log:
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.)
Revision Changes Path
1.241 +3 -0 apr/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apr/CHANGES,v
retrieving revision 1.240
retrieving revision 1.241
diff -u -r1.240 -r1.241
--- CHANGES 14 Mar 2002 22:18:16 -0000 1.240
+++ CHANGES 15 Mar 2002 02:26:10 -0000 1.241
@@ -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]