mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
18 lines
389 B
Go
18 lines
389 B
Go
![]() |
package sysx
|
||
|
|
||
|
const (
|
||
|
// AtSymlinkNoFollow defined from AT_SYMLINK_NOFOLLOW in <sys/fcntl.h>
|
||
|
AtSymlinkNofollow = 0x200
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
|
||
|
// SYS_FCHMODAT defined from golang.org/sys/unix
|
||
|
SYS_FCHMODAT = 490
|
||
|
)
|
||
|
|
||
|
// These functions will be generated by generate.sh
|
||
|
// $ GOOS=freebsd GOARCH=amd64 ./generate.sh chmod
|
||
|
|
||
|
//sys Fchmodat(dirfd int, path string, mode uint32, flags int) (err error)
|