2019-04-26 03:39:49 +08:00
|
|
|
// +build !linux,!darwin
|
|
|
|
|
|
|
|
package parse
|
|
|
|
|
2019-09-13 05:44:50 +08:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/opencontainers/runc/libcontainer/configs"
|
|
|
|
)
|
|
|
|
|
2019-04-26 03:39:49 +08:00
|
|
|
func getDefaultProcessLimits() []string {
|
|
|
|
return []string{}
|
|
|
|
}
|
2019-09-13 05:44:50 +08:00
|
|
|
|
|
|
|
func DeviceFromPath(device string) (configs.Device, error) {
|
|
|
|
return configs.Device{}, fmt.Errorf("devices not supported")
|
|
|
|
}
|