From a5dcb6c6a203754a3cf56134cd828e28439698ff Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Wed, 9 Dec 2015 02:59:25 -0500 Subject: [PATCH] Potential debug tracing --- gc.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gc.c b/gc.c index 0bb61507..36f9d7b0 100644 --- a/gc.c +++ b/gc.c @@ -1035,6 +1035,10 @@ void gc_empty_collector_stack() // Mark stack is only used by the collector thread, so no sync needed while (mark_stack_i > 0) { // not empty mark_stack_i--; +//#if GC_DEBUG_VERBOSE +// fprintf(stderr, "gc_mark_black mark stack %p \n", +// mark_stack[mark_stack_i]); +//#endif gc_mark_black(mark_stack[mark_stack_i]); } }