mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 00:15:44 +00:00
17 lines
256 B
Go
17 lines
256 B
Go
//go:build !linux
|
|
|
|
package criu
|
|
|
|
import "fmt"
|
|
|
|
func CheckForCriu(_ int) error {
|
|
return fmt.Errorf("CheckForCriu not supported on this platform")
|
|
}
|
|
|
|
func MemTrack() bool {
|
|
return false
|
|
}
|
|
|
|
func GetCriuVersion() (int, error) {
|
|
return MinCriuVersion, nil
|
|
}
|