github.com/hauerwu/docker@v1.8.0-rc1/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  	return ErrNotSupportedPlatform
     7  }
     8  
     9  func Mkdev(major int64, minor int64) uint32 {
    10  	panic("Mkdev not implemented on Windows.")
    11  }