同一进程内线程的CPU占用

public ArrayList ShowProcessThreadList(Process pID)
{
ArrayList List = new ArrayList();
ProcessThreadCollection tList;
tList = pID.Threads;
TimeSpan totalThreads = new TimeSpan();
foreach (ProcessThread tID in tList)
{
totalThreads = totalThreads + tID.TotalProcessorTime;
}
foreach (ProcessThread tID in tList)
{
double CpuTime = (double)tID.TotalProcessorTime.Ticks / (double)totalThreads.Ticks * 100;
List.Add(tID.Id.ToString() + "|" + CpuTime.ToString());
}

return List;

}
返回的arraylist 是 "ThreadID | cpu占用比" 的一个string

因为只是为了调试程序用 一般人估计用不到去考虑线程的cpu占用情况 没有把实际进程在系统内cpu占用乘进去 所以只是体现那个线程CPU占用过高可能产生问题而编写
由于进程的代码运行时间内考虑和线程切换的时间 进程时间并不等于进程内所有线程总时间量和 所以采用了先遍历一次线程把总时间量的和计算出来 再算百分比

你可能感兴趣的:(cpu)