mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 00:15:44 +00:00
13 lines
337 B
Go
13 lines
337 B
Go
//go:build !linux
|
|
|
|
package specgen
|
|
|
|
// FinishThrottleDevices cannot be called on non-linux OS' due to importing unix functions
|
|
func FinishThrottleDevices(_ *SpecGenerator) error {
|
|
return nil
|
|
}
|
|
|
|
// WeightDevices cannot be called on non-linux OS' due to importing unix functions
|
|
func WeightDevices(_ *SpecGenerator) error {
|
|
return nil
|
|
}
|