You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gopsutil/load/load_windows.go

14 lines
194 B
Go

11 years ago
// +build windows
package load
11 years ago
import (
common "github.com/shirou/gopsutil/common"
)
func LoadAvg() (*LoadAvgStat, error) {
11 years ago
ret := LoadAvgStat{}
11 years ago
return &ret, common.NotImplementedError
11 years ago
}