containerd/vendor/github.com/docker/docker/pkg/system/umask.go

14 lines
239 B
Go

// +build !windows
package system
import (
"syscall"
)
// Umask sets current process's file mode creation mask to newmask
// and returns oldmask.
func Umask(newmask int) (oldmask int, err error) {
return syscall.Umask(newmask), nil
}