diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-07-05 14:53:27 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-07-05 14:53:27 +0000 |
commit | a9469098cae65bade0a752593ca7c8770347ce69 (patch) | |
tree | 2784f80c6a82b2b54ef4c09a2ca39cd9147d8235 | |
parent | 5c9c4201110bd37316ec0a96a4f16d93aba34768 (diff) | |
download | tor-a9469098cae65bade0a752593ca7c8770347ce69.tar.gz tor-a9469098cae65bade0a752593ca7c8770347ce69.zip |
r13596@kushana: nickm | 2007-07-05 10:53:22 -0400
Argh, re-enable CRITICAL_SECTION code in win32.
svn:r10741
-rw-r--r-- | src/common/compat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/compat.c b/src/common/compat.c index 0772f4ff91..62749a4e5f 100644 --- a/src/common/compat.c +++ b/src/common/compat.c @@ -1439,7 +1439,7 @@ tor_gmtime_r(const time_t *timep, struct tm *result) #endif #endif -#ifdef USE_WIN32_THREADS +#if defined(USE_WIN32_THREADS) && 0 /** A generic lock structure for multithreaded builds. */ struct tor_mutex_t { HANDLE handle; |