shirou_gopsutil/load/load_windows.go

20 lines
293 B
Go
Raw Normal View History

2014-04-18 20:28:00 +08:00
// +build windows
2014-12-30 21:09:05 +08:00
package load
2014-04-18 20:28:00 +08:00
import (
2015-10-19 23:04:57 +08:00
"github.com/shirou/gopsutil/internal/common"
)
func LoadAvg() (*LoadAvgStat, error) {
2014-04-22 20:39:18 +08:00
ret := LoadAvgStat{}
2014-04-18 20:28:00 +08:00
return &ret, common.NotImplementedError
2014-04-18 20:28:00 +08:00
}
func Misc() (*MiscStat, error) {
ret := MiscStat{}
return &ret, common.NotImplementedError
}