github.com/rhatdan/docker@v0.7.7-0.20180119204836-47a0dcbcd20a/pkg/system/umask.go (about)

     1  // +build !windows
     2  
     3  package system
     4  
     5  import (
     6  	"golang.org/x/sys/unix"
     7  )
     8  
     9  // Umask sets current process's file mode creation mask to newmask
    10  // and returns oldmask.
    11  func Umask(newmask int) (oldmask int, err error) {
    12  	return unix.Umask(newmask), nil
    13  }