2016-11-22 06:18:52 +08:00
|
|
|
// +build !darwin,!linux,!freebsd,!openbsd,!windows
|
2016-08-23 06:31:26 +08:00
|
|
|
|
|
|
|
package cpu
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/shirou/gopsutil/internal/common"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Times(percpu bool) ([]TimesStat, error) {
|
|
|
|
return []TimesStat{}, common.ErrNotImplementedError
|
|
|
|
}
|
|
|
|
|
|
|
|
func Info() ([]InfoStat, error) {
|
|
|
|
return []InfoStat{}, common.ErrNotImplementedError
|
|
|
|
}
|
|
|
|
|
|
|
|
func Percent(interval time.Duration, percpu bool) ([]float64, error) {
|
|
|
|
return []float64{}, common.ErrNotImplementedError
|
|
|
|
}
|