Merge pull request #342 from jgillich/patch-1

clarify return value of cpu.Percent()
pull/346/head
shirou 8 years ago committed by GitHub
commit a00fdd2cc0

@ -132,6 +132,7 @@ func calculateAllBusy(t1, t2 []TimesStat) ([]float64, error) {
// Percent calculates the percentage of cpu used either per CPU or combined. // Percent calculates the percentage of cpu used either per CPU or combined.
// If an interval of 0 is given it will compare the current cpu times against the last call. // If an interval of 0 is given it will compare the current cpu times against the last call.
// Returns one value per cpu, or a single value if percpu is set to false.
func Percent(interval time.Duration, percpu bool) ([]float64, error) { func Percent(interval time.Duration, percpu bool) ([]float64, error) {
if interval <= 0 { if interval <= 0 {
return percentUsedFromLastCall(percpu) return percentUsedFromLastCall(percpu)

Loading…
Cancel
Save