From edca776b428b31c7436a7f015ee1a201c14aedec Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 3 Mar 2016 20:48:14 -0500 Subject: [PATCH] Removed debug code --- gc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gc.c b/gc.c index 431c3f58..6ed6b8ae 100644 --- a/gc.c +++ b/gc.c @@ -21,7 +21,7 @@ #include "cyclone/types.h" #include #include -#define DEBUG_THREADS // Debugging!!! +//#define DEBUG_THREADS // Debugging!!! #ifdef DEBUG_THREADS #include /* Linux-only? */ #endif @@ -1241,7 +1241,7 @@ void *collector_main(void *arg) pthread_t tid = pthread_self(); int sid = syscall(SYS_gettid); printf("GC thread LWP id is %d\n", sid); - printf("GC thread POSIX thread id is %d\n", tid); + //printf("GC thread POSIX thread id is %d\n", tid); #endif tim.tv_sec = 0; //JAE TODO: this is still not good enough, seems memory grows still grows fast with this.