github.com/brahmaroutu/docker@v1.2.1-0.20160809185609-eb28dde01f16/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 }