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

20 lines
293 B
Go

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