blob: dc9127bb318e5dfc307131fab9afcf668e2e214d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//go:build !linux
// +build !linux
package specgen
// FinishThrottleDevices cannot be called on non-linux OS' due to importing unix functions
func FinishThrottleDevices(s *SpecGenerator) error {
return nil
}
// WeightDevices cannot be called on non-linux OS' due to importing unix functions
func WeightDevices(s *SpecGenerator) error {
return nil
}
|