mirror of
https://github.com/golang/go
synced 2024-11-18 11:34:45 -07:00
internal/syscall/unix: implement Eaccess on dragonfly
Like on other BSDs, use faccessat(AT_FDCWD, path, mode, AT_EACCESS) Change-Id: I5b7649815651725ab9245aed3c8c1941ff9b7606 Reviewed-on: https://go-review.googlesource.com/c/go/+/532675 Reviewed-by: Michael Pratt <mpratt@google.com> Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com> Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@google.com>
This commit is contained in:
parent
67fb851bd5
commit
ad76a98d5e
@ -10,7 +10,11 @@ const unlinkatTrap uintptr = syscall.SYS_UNLINKAT
|
|||||||
const openatTrap uintptr = syscall.SYS_OPENAT
|
const openatTrap uintptr = syscall.SYS_OPENAT
|
||||||
const fstatatTrap uintptr = syscall.SYS_FSTATAT
|
const fstatatTrap uintptr = syscall.SYS_FSTATAT
|
||||||
|
|
||||||
const AT_REMOVEDIR = 0x2
|
const (
|
||||||
const AT_SYMLINK_NOFOLLOW = 0x1
|
AT_EACCESS = 0x4
|
||||||
|
AT_FDCWD = 0xfffafdcd
|
||||||
|
AT_REMOVEDIR = 0x2
|
||||||
|
AT_SYMLINK_NOFOLLOW = 0x1
|
||||||
|
|
||||||
const UTIME_OMIT = -0x1
|
UTIME_OMIT = -0x1
|
||||||
|
)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
//go:build freebsd || netbsd
|
//go:build dragonfly || freebsd || netbsd
|
||||||
|
|
||||||
package unix
|
package unix
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
//go:build unix && !freebsd && !linux && !netbsd
|
//go:build unix && !dragonfly && !freebsd && !linux && !netbsd
|
||||||
|
|
||||||
package unix
|
package unix
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user