aboutsummaryrefslogtreecommitdiff
path: root/src/internal/syscall/unix/eaccess_other.go
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2024-04-18 09:39:31 +0200
committerGopher Robot <gobot@golang.org>2024-04-19 15:02:38 +0000
commit974b2011ca2a74ca1137558771b428bddb2e7df3 (patch)
tree9ecdf1125e64e46b9ce416f6340156d2f66873de /src/internal/syscall/unix/eaccess_other.go
parent104c293ffe0037de2462cdd404a6910dcf58298d (diff)
downloadgo-974b2011ca2a74ca1137558771b428bddb2e7df3.tar.gz
go-974b2011ca2a74ca1137558771b428bddb2e7df3.zip
internal/syscall/unix: implement Eaccess on darwin
Like on other Unix-like platforms, use faccessat(AT_FDCWD, path, mode, AT_EACCESS). Change-Id: I6e04b4244f8e90bd3b35b1b8a9ca38fe845b34ae Reviewed-on: https://go-review.googlesource.com/c/go/+/579976 Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com>
Diffstat (limited to 'src/internal/syscall/unix/eaccess_other.go')
-rw-r--r--src/internal/syscall/unix/eaccess_other.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal/syscall/unix/eaccess_other.go b/src/internal/syscall/unix/eaccess_other.go
index 1a633ae857..3da3a64f0e 100644
--- a/src/internal/syscall/unix/eaccess_other.go
+++ b/src/internal/syscall/unix/eaccess_other.go
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-//go:build unix && !dragonfly && !freebsd && !linux && !openbsd && !netbsd
+//go:build unix && !darwin && !dragonfly && !freebsd && !linux && !openbsd && !netbsd
package unix