From c9c373b0938d2d65339b61feef5c5e159b255a56 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Fri, 17 Oct 2003 03:49:03 +0000 Subject: [PATCH] Halt the cpu on amd64 as well. For some strange reason, this makes a fair bit of difference to the power consumption and lets my cpu cool down enough for the temperature sensitive fan controller to completely stop the cpu fan at times. --- sys/kern/kern_idle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/kern_idle.c b/sys/kern/kern_idle.c index 10219653d189..224ba6391e7c 100644 --- a/sys/kern/kern_idle.c +++ b/sys/kern/kern_idle.c @@ -112,7 +112,7 @@ idle_proc(void *dummy) " for a process"); #endif -#if defined(__i386__) || defined(__ia64__) +#if defined(__i386__) || defined(__amd64__) || defined(__ia64__) cpu_idle(); #endif }