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