github.com/jaegerpicker/docker@v0.7.7-0.20150325003727-22dba32b4dab/pkg/system/mknod_windows.go (about) 1 // +build windows 2 3 package system 4 5 func Mknod(path string, mode uint32, dev int) error { 6 // should not be called on cli code path 7 return ErrNotSupportedPlatform 8 } 9 10 func Mkdev(major int64, minor int64) uint32 { 11 panic("Mkdev not implemented on windows, should not be called on cli code") 12 }