github.com/vincentwoo/docker@v0.7.3-0.20160116130405-82401a4b13c0/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 }