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 Wemm 2003-10-17 03:49:03 +00:00
parent b0f865c1f3
commit c9c373b093
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=121149

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
}