[svn:parrot] r41144 - trunk/src/gc

whiteknight at svn.parrot.org whiteknight at svn.parrot.org
Tue Sep 8 00:02:37 UTC 2009


Author: whiteknight
Date: Tue Sep  8 00:02:36 2009
New Revision: 41144
URL: https://trac.parrot.org/parrot/changeset/41144

Log:
[gc] remove the #ifdefs that specially handle the fixed-size allocator on Windows. It's been working on that platform for a while now. This commit resolves TT #940

Modified:
   trunk/src/gc/gc_private.h

Modified: trunk/src/gc/gc_private.h
==============================================================================
--- trunk/src/gc/gc_private.h	Mon Sep  7 23:56:34 2009	(r41143)
+++ trunk/src/gc/gc_private.h	Tue Sep  8 00:02:36 2009	(r41144)
@@ -72,12 +72,7 @@
 
 /* Set to 1 if we want to use the fixed-size allocator. Set to 0 if we want
    to allocate these things using mem_sys_allocate instead */
-/* Had seen errors on Windows. Appears to be fixed now. TT #940 */
-#if defined(_WIN32) || defined(_WIN64)
-#  define GC_USE_FIXED_SIZE_ALLOCATOR 1
-#else
-#  define GC_USE_FIXED_SIZE_ALLOCATOR 1
-#endif
+#define GC_USE_FIXED_SIZE_ALLOCATOR 1
 
 /* We're using this here to add an additional pointer to a PObj without
    having to actually add an entire pointer to every PObj-alike structure


More information about the parrot-commits mailing list