mirror of https://github.com/cjbassi/gotop.git
26 lines
513 B
Go
26 lines
513 B
Go
// +build !darwin,!linux,!freebsd,!openbsd,!windows
|
|
|
|
package load
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/shirou/gopsutil/internal/common"
|
|
)
|
|
|
|
func Avg() (*AvgStat, error) {
|
|
return AvgWithContext(context.Background())
|
|
}
|
|
|
|
func AvgWithContext(ctx context.Context) (*AvgStat, error) {
|
|
return nil, common.ErrNotImplementedError
|
|
}
|
|
|
|
func Misc() (*MiscStat, error) {
|
|
return MiscWithContext(context.Background())
|
|
}
|
|
|
|
func MiscWithContext(ctx context.Context) (*MiscStat, error) {
|
|
return nil, common.ErrNotImplementedError
|
|
}
|