From b6338e7753d0862276d7ed38eab2a19d8b6544b6 Mon Sep 17 00:00:00 2001 From: David Phillips Date: Tue, 1 Sep 2015 17:31:09 +1200 Subject: Removed old debug swarf --- getcore.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'getcore.c') diff --git a/getcore.c b/getcore.c index 9fb9600..2624c34 100644 --- a/getcore.c +++ b/getcore.c @@ -29,7 +29,6 @@ bool core_exists(unsigned int core) char* path; int result; asprintf(&path, "/sys/devices/system/cpu/cpu%d/cpufreq", core); - debug("Checking if core %d exists by opening '%s'\n",core,path); result = access(path, F_OK); free (path); return (result != -1); @@ -44,8 +43,6 @@ void gc_init() cores = 0; while(core_exists(cores)) cores++; - - debug("Found %d cores\n",cores); } -- cgit v1.1