[svn:parrot] r43436 - trunk/src/pmc
plobsing at svn.parrot.org
plobsing at svn.parrot.org
Wed Jan 13 01:57:41 UTC 2010
Author: plobsing
Date: Wed Jan 13 01:57:40 2010
New Revision: 43436
URL: https://trac.parrot.org/parrot/changeset/43436
Log:
dissable GC when using threads - they don't play nice
Modified:
trunk/src/pmc/parrotthread.pmc
Modified: trunk/src/pmc/parrotthread.pmc
==============================================================================
--- trunk/src/pmc/parrotthread.pmc Wed Jan 13 01:47:48 2010 (r43435)
+++ trunk/src/pmc/parrotthread.pmc Wed Jan 13 01:57:40 2010 (r43436)
@@ -47,12 +47,10 @@
static void
stop_GC(Interp *parent, Interp *thread)
{
-#if 0
Parrot_block_GC_mark(parent);
Parrot_block_GC_mark(thread);
Parrot_block_GC_sweep(parent);
Parrot_block_GC_sweep(thread);
-#endif
}
/* XXX FIXME probably not the best interface [see also list post of
More information about the parrot-commits
mailing list