Files
podman/pkg/specgen/utils.go
Matt Souza 090304a054 lint: reenable revive unused-parameter check
Signed-off-by: Matt Souza <medsouz99@gmail.com>
2025-10-01 10:42:08 -04:00

14 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
}