From c8833dd28d1b06713e91f1f069e93f0fbfa6c971 Mon Sep 17 00:00:00 2001 From: dooglus Date: Sun, 24 Feb 2008 21:02:47 +0000 Subject: [PATCH 1/1] Using mutexes around accesses to refcounts seems to make the Windows build much less stable for some reason, so let's not do it for now, until we can find out why. git-svn-id: http://svn.voria.com/code@1815 1f10aa63-cdf2-0310-b900-c93c546f37ac --- ETL/trunk/ETL/handle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ETL/trunk/ETL/handle b/ETL/trunk/ETL/handle index 010f5c2..d957f76 100644 --- a/ETL/trunk/ETL/handle +++ b/ETL/trunk/ETL/handle @@ -31,7 +31,10 @@ #include "etl_config.h" // include the next line in an attempt to increase stability +// it seems to make things much *less* stable on MS Windows +#ifndef _WIN32 #define ETL_LOCK_REFCOUNTS +#endif #ifdef ETL_LOCK_REFCOUNTS # include "mutex" -- 2.7.4