idle percentage
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
Is there an API to know the current idle-status percentage of the cpu usage (like what is showed in the taskmanager)?
Russell
Idle is what's left when your subtract kernel time and user time from 100 :-) Get CPU Usage with GetSystemTimes Otherwise System.Diagnostics.Performance... will get you there. You can also query the WMI space directly. :laugh: Nice one here