blob: 42968b3bc2c9d1d4f4ab64f199baf80a3d9a549f [file] [log] [blame]
Serge Bazanskicc25bdf2018-10-25 14:02:58 +02001// +build windows
2
3package load
4
5import (
6 "context"
7
8 "github.com/shirou/gopsutil/internal/common"
9)
10
11func Avg() (*AvgStat, error) {
12 return AvgWithContext(context.Background())
13}
14
15func AvgWithContext(ctx context.Context) (*AvgStat, error) {
16 ret := AvgStat{}
17
18 return &ret, common.ErrNotImplementedError
19}
20
21func Misc() (*MiscStat, error) {
22 return MiscWithContext(context.Background())
23}
24
25func MiscWithContext(ctx context.Context) (*MiscStat, error) {
26 ret := MiscStat{}
27
28 return &ret, common.ErrNotImplementedError
29}