From: jzhou <jzhou>
Date: Tue, 27 Oct 2009 20:30:35 +0000 (+0000)
Subject: close some debug info
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=03f051d2e4804b0ff7fdcbcaa330ac8414e20fdc;p=IRC.git

close some debug info
---

diff --git a/Robust/src/Runtime/multicoregarbage.c b/Robust/src/Runtime/multicoregarbage.c
index 78b3cf1d..d514567b 100644
--- a/Robust/src/Runtime/multicoregarbage.c
+++ b/Robust/src/Runtime/multicoregarbage.c
@@ -2286,7 +2286,7 @@ inline void gc(struct garbagelist * stackptr) {
 
 #ifdef GC_DEBUG
 		tprintf("start gc! \n");
-		dumpSMem();
+		//dumpSMem();
 #endif
 
 		gcprocessing = true;
@@ -2419,14 +2419,14 @@ inline void gc(struct garbagelist * stackptr) {
 		bool localcompact = true;
 		while((COMPACTPHASE == gcphase) || (SUBTLECOMPACTPHASE == gcphase)) {
 			if((!finishcompact) && iscontinue) {
-#ifdef GC_DEBUG
+#ifdef DEBUG
 				BAMBOO_DEBUGPRINT(0xe001);
 				BAMBOO_DEBUGPRINT_REG(numpbc);
 				BAMBOO_DEBUGPRINT_REG(gcblock2fill);
 #endif
 				finishcompact = compacthelper(orig, to, &filledblocks, 
 						                          &heaptopptr, &localcompact);
-#ifdef GC_DEBUG
+#ifdef DEBUG
 				BAMBOO_DEBUGPRINT(0xe002);
 				BAMBOO_DEBUGPRINT_REG(finishcompact);
 				BAMBOO_DEBUGPRINT_REG(gctomove);
@@ -2535,7 +2535,7 @@ inline void gc(struct garbagelist * stackptr) {
 		}
 #ifdef GC_DEBUG
 		tprintf("gc finished \n");
-		dumpSMem();
+		//dumpSMem();
 #endif
 	} else {
 		gcprocessing = true;