mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
aef02273d9
Signed-off-by: allencloud <allen.sun@daocloud.io>
13 lines
239 B
Go
13 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
|
|
}
|