2004-08-17 Zoltan Varga <vargaz@freemail.hu>
authorZoltan Varga <vargaz@gmail.com>
Tue, 17 Aug 2004 19:11:49 +0000 (19:11 -0000)
committerZoltan Varga <vargaz@gmail.com>
Tue, 17 Aug 2004 19:11:49 +0000 (19:11 -0000)
* mono/os/gc_wrapper.h: Only use thread local alloc if using the included libgc, since the stock one has broken headers.

svn path=/trunk/mono/; revision=32451

ChangeLog
mono/os/gc_wrapper.h

index 45e026116934513faf4003986ca7c1c4e2117da8..0658aed2a18bc1f7d27dd216f4c521710e620da4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2004-08-17  Zoltan Varga  <vargaz@freemail.hu>
 
+       * mono/os/gc_wrapper.h: Only use thread local alloc if using the included libgc, since the
+       stock one has broken headers.
+
        * configure.in (PLATFORM_WIN32): Make the included libgc the default on windows.
 
 2004-08-17  Dick Porter  <dick@ximian.com>
index a9efab6dfa4c2f937d48ddcf56c144b92a5c2266..bbc3e03e6e920766da160a32ddec0c71a2cec039 100644 (file)
@@ -15,7 +15,7 @@
         * it if it is the included one.
         */
        
-#      if defined(HAVE_KW_THREAD) || defined(USE_INCLUDED_LIBGC)  
+#      if defined(HAVE_KW_THREAD) && defined(USE_INCLUDED_LIBGC)  
 #              define GC_REDIRECT_TO_LOCAL
 #      endif