github.com/shishir-a412ed/docker@v1.3.2-0.20180103180333-fda904911d87/pkg/system/umask_windows.go (about)

     1  package system
     2  
     3  // Umask is not supported on the windows platform.
     4  func Umask(newmask int) (oldmask int, err error) {
     5  	// should not be called on cli code path
     6  	return 0, ErrNotSupportedPlatform
     7  }