github.com/rhatdan/docker@v0.7.7-0.20180119204836-47a0dcbcd20a/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  }