From 9d8cbe12179cf122c5250d9a7e75a0c3552ff09b Mon Sep 17 00:00:00 2001 From: Douglas Katzman Date: Wed, 5 Nov 2014 16:35:33 -0500 Subject: [PATCH] Disable gencgc wipe feature on account of lp#1389866 --- src/runtime/gencgc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/gencgc.c b/src/runtime/gencgc.c index e929da7b4..347efb437 100644 --- a/src/runtime/gencgc.c +++ b/src/runtime/gencgc.c @@ -186,7 +186,7 @@ struct page *page_table; * dwords in there that are not used, so that they do not act as false * root to other things in the heap from then on? This is a new feature * but in testing it is both reliable and no noticeable slowdown. */ -int do_wipe_p = 1; +int do_wipe_p = 0; /* a value that we use to wipe out unused words in GC cards that * live alongside conservatively to pointed words. */ -- 2.11.4.GIT