summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2007-07-05 14:51:01 +0000
committerNick Mathewson <nickm@torproject.org>2007-07-05 14:51:01 +0000
commitae4ab0f617bd6d9f544193f2fb7edfa1c7169056 (patch)
tree2784f80c6a82b2b54ef4c09a2ca39cd9147d8235 /ChangeLog
parent04c9ae8164cff586c11a5097899c58bfc8f41c38 (diff)
downloadtor-ae4ab0f617bd6d9f544193f2fb7edfa1c7169056.tar.gz
tor-ae4ab0f617bd6d9f544193f2fb7edfa1c7169056.zip
r13454@kushana: nickm | 2007-06-20 14:22:44 -0400
Switch windows locking implementation to CRITICAL_SECTION, not Mutex: Mutex is heavier-weight, and meant for multi-process situations. svn:r10739
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index ef69fd97a5..196474e731 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -16,6 +16,11 @@ Changes in version 0.2.0.3-alpha - 2007-??-??
- Report address and port correctly on connections to DNSPort. (Patch
from Robert Hogan.)
+ o Performance improvements (win32):
+ - Use Critical Sections rather than Mutexes for synchronizing threads
+ on win32; Mutexes are heavier-weight, and designed for synchronizing
+ between processes.
+
o Deprecated features:
- RedirectExits is now deprecated.