github.com/rita33cool1/iot-system-gateway@v0.0.0-20200911033302-e65bde238cc5/docker-engine/pkg/system/umask_windows.go (about)

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