2014-05-20 00:13:00 +00:00
|
|
|
// +build !linux
|
|
|
|
|
|
|
|
package nodes
|
|
|
|
|
2014-02-17 23:14:30 +00:00
|
|
|
import (
|
|
|
|
"github.com/dotcloud/docker/pkg/libcontainer"
|
|
|
|
"github.com/dotcloud/docker/pkg/libcontainer/devices"
|
|
|
|
)
|
2014-05-20 00:13:00 +00:00
|
|
|
|
|
|
|
func GetHostDeviceNodes() ([]string, error) {
|
|
|
|
return nil, libcontainer.ErrUnsupported
|
|
|
|
}
|
2014-02-17 23:14:30 +00:00
|
|
|
|
|
|
|
func CreateDeviceNodes(rootfs string, nodesToCreate []devices.Device) error {
|
|
|
|
return libcontainer.ErrUnsupported
|
|
|
|
}
|