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.
This commit is contained in:
peter 2003-10-17 03:49:03 +00:00
parent 1d3178bbc0
commit c7a92905e0

View File

@ -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
}