-
Notifications
You must be signed in to change notification settings - Fork 582
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
unix: add AT_EACCESS on Darwin #153
Conversation
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
The AT_EACCESS constant, used by faccessat syscall is present on Linux, Solaris and other BSD platforms. This commit also adds this constant on Darwin. The constant (and the associated faccessat syscall) is part of POSIX.1-2008. Fixes golang/go#59265.
This PR (HEAD: 28082ec) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/sys/+/480115 to see it. Tip: You can toggle comments from me using the |
Message from Gopher Robot: Patch Set 1: Congratulations on opening your first change. Thank you for your contribution! Next steps: Most changes in the Go project go through a few rounds of revision. This can be During May-July and Nov-Jan the Go project is in a code freeze, during which Please don’t reply on this GitHub thread. Visit golang.org/cl/480115. |
Message from Brad Fitzpatrick: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/480115. |
Message from Mikołaj Kuranowski: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/480115. |
Message from Tobias Klauser: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/480115. |
This change includes the automatically generated AT_EACCESS constant; based on its definition in types_darwin.go.
This PR (HEAD: a6a16c4) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/sys/+/480115 to see it. Tip: You can toggle comments from me using the |
Message from Mikołaj Kuranowski: Patch Set 2: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/480115. |
Message from Tobias Klauser: Patch Set 2: Auto-Submit+1 Run-TryBot+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/480115. |
Message from Gopher Robot: Patch Set 2: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/480115. |
Message from Gopher Robot: Patch Set 2: TryBot-Result+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/480115. |
Message from Tobias Klauser: Patch Set 2: Code-Review+2 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/480115. |
Message from Matthew Dempsky: Patch Set 2: Code-Review+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/480115. |
The AT_EACCESS constant, used by faccessat syscall is present on Linux, Solaris and other BSD platforms. This commit also adds this constant on Darwin. The constant (and the associated faccessat syscall) is part of POSIX.1-2008. Fixes golang/go#59265. Change-Id: Iae0ac35107cc291eba523cc88e68d3a9ddb7d01e GitHub-Last-Rev: a6a16c4 GitHub-Pull-Request: #153 Reviewed-on: https://go-review.googlesource.com/c/sys/+/480115 Reviewed-by: Tobias Klauser <[email protected]> Reviewed-by: Matthew Dempsky <[email protected]> Run-TryBot: Tobias Klauser <[email protected]> Reviewed-by: Michael Knyszek <[email protected]> Auto-Submit: Tobias Klauser <[email protected]> TryBot-Result: Gopher Robot <[email protected]>
This PR is being closed because golang.org/cl/480115 has been merged. |
The AT_EACCESS constant, used by faccessat syscall is present on Linux, Solaris and other BSD platforms. This commit also adds this constant on Darwin.
The constant (and the associated faccessat syscall) is part of POSIX.1-2008.
Fixes golang/go#59265.