github.com/demonoid81/moby@v0.0.0-20200517203328-62dd8e17c460/pkg/system/mknod_windows.go (about)

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