github.com/docker/docker@v299999999.0.0-20200612211812-aaf470eca7b5+incompatible/pkg/system/mknod_windows.go (about)

     1  package system // import "github.com/docker/docker/pkg/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  }