include nice and wait times in Combined

This commit is contained in:
Doug MacEachern 2005-05-06 17:16:24 +00:00
parent d272ec6aca
commit 10a438d4e0
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ public class CpuPerc {
}
public double getCombined() {
return this.user + this.sys;
return this.user + this.sys + this.nice + this.wait;
}
public static String format(double val) {