From: Tomas Hruby Date: Sun, 19 Sep 2010 15:54:31 +0000 (+0000) Subject: fix - forgotten debug print X-Git-Tag: v3.2.0~829 X-Git-Url: http://zhaoyanbai.com/repos/Bv9ARM.ch08.html?a=commitdiff_plain;h=e9ecba9fc73ca4adbab653e52206e90e8a6e28e4;p=minix.git fix - forgotten debug print --- diff --git a/kernel/arch/i386/arch_clock.c b/kernel/arch/i386/arch_clock.c index db5b65c9a..59d06652a 100644 --- a/kernel/arch/i386/arch_clock.c +++ b/kernel/arch/i386/arch_clock.c @@ -309,7 +309,6 @@ PUBLIC short cpu_load(void) busy = sub64(tsc_delta, idle_delta); busy = mul64(busy, make64(100, 0)); load = div64(busy, tsc_delta).lo; - printf("CPULOAD %d\n", load); if (load > 100) load = 100;