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