summaryrefslogtreecommitdiff
path: root/src/mapi/mapi/u_current.c
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2010-12-02 17:27:05 +0000
committerJosé Fonseca <jfonseca@vmware.com>2010-12-02 17:35:03 +0000
commite3659329e0b91ea78afe32e231f2f75d3d728af9 (patch)
treeaeee753d498c148238dbfc9531255078eebbaf60 /src/mapi/mapi/u_current.c
parentaf4f75c8fe1c53b8def966f480e7fda8021f1b63 (diff)
WIN32_THREADS -> WIN32
Fixes nasty bug where some parts of the code didn't define WIN32_THREADS and were using the integer mutex implementation, causing even confusion to the debuggers. And there is little interest of other thread implemenation on Win32 besides Win32 threads.
Diffstat (limited to 'src/mapi/mapi/u_current.c')
-rw-r--r--src/mapi/mapi/u_current.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mapi/mapi/u_current.c b/src/mapi/mapi/u_current.c
index ed9ccfe229..77a593b330 100644
--- a/src/mapi/mapi/u_current.c
+++ b/src/mapi/mapi/u_current.c
@@ -128,7 +128,7 @@ static int ThreadSafe;
void
u_current_destroy(void)
{
-#if defined(THREADS) && defined(WIN32_THREADS)
+#if defined(THREADS) && defined(WIN32)
u_tsd_destroy(&u_current_table_tsd);
u_tsd_destroy(&u_current_user_tsd);
#endif
@@ -147,7 +147,7 @@ u_current_init_tsd(void)
/**
* Mutex for multithread check.
*/
-#ifdef WIN32_THREADS
+#ifdef WIN32
/* _glthread_DECLARE_STATIC_MUTEX is broken on windows. There will be race! */
#define CHECK_MULTITHREAD_LOCK()
#define CHECK_MULTITHREAD_UNLOCK()