runc/mount/nodes/nodes_unsupported.go

13 lines
238 B
Go

// +build !linux
package nodes
import (
"github.com/docker/libcontainer"
"github.com/docker/libcontainer/devices"
)
func CreateDeviceNodes(rootfs string, nodesToCreate []*devices.Device) error {
return libcontainer.ErrUnsupported
}