Combined should not include wait time

This commit is contained in:
Doug MacEachern 2005-05-12 02:43:46 +00:00
parent 87d6159c65
commit b5b16908a3
1 changed files with 4 additions and 1 deletions

View File

@ -60,8 +60,11 @@ public class CpuPerc {
return this.wait;
}
/**
* @return Sum of User + Sys + Nice
*/
public double getCombined() {
return this.user + this.sys + this.nice + this.wait;
return this.user + this.sys + this.nice;
}
public static String format(double val) {