Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
lima-vm
GitHub Repository: lima-vm/lima
Path: blob/master/pkg/imgutil/nativeimgutil/asifutil/asif_others.go
2678 views
1
//go:build !darwin
2
3
// SPDX-FileCopyrightText: Copyright The Lima Authors
4
// SPDX-License-Identifier: Apache-2.0
5
6
package asifutil
7
8
import (
9
"errors"
10
"os"
11
)
12
13
var ErrASIFNotSupported = errors.New("ASIF is only supported on macOS")
14
15
func NewAttachedASIF(_ string, _ int64) (string, *os.File, error) {
16
return "", nil, ErrASIFNotSupported
17
}
18
19
func DetachASIF(_ string) error {
20
return ErrASIFNotSupported
21
}
22
23
func ResizeASIF(_ string, _ int64) error {
24
return ErrASIFNotSupported
25
}
26
27