github.com/resin-io/docker@v1.13.1/pkg/system/mknod_windows.go (about) 1 // +build windows 2 3 package system 4 5 // Mknod is not implemented on Windows. 6 func Mknod(path string, mode uint32, dev int) error { 7 return ErrNotSupportedPlatform 8 } 9 10 // Mkdev is not implemented on Windows. 11 func Mkdev(major int64, minor int64) uint32 { 12 panic("Mkdev not implemented on Windows.") 13 }