-
Notifications
You must be signed in to change notification settings - Fork 18.1k
runtime: no need to convert 'c.fault()' to uintptr in sighandler #63133
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
runtime: no need to convert 'c.fault()' to uintptr in sighandler #63133
Conversation
After CL 528817, *sigctxt.fault of all arches return uintptr, so there is no need to convert 'c.fault()' to uintptr anymore.
This PR (HEAD: 3ce3a75) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/529995. Important tips:
|
Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/529995. |
Message from Sense As: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/529995. |
Message from Ian Lance Taylor: Patch Set 1: Commit-Queue+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/529995. |
Message from Go LUCI: Patch Set 1: Dry run: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2023-09-21T00:13:44Z","revision":"05b485efa2b8b878e16376adf023507467b6f71e"} Please don’t reply on this GitHub thread. Visit golang.org/cl/529995. |
Message from Ian Lance Taylor: Patch Set 1: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/529995. |
Message from Go LUCI: Patch Set 1: This CL has passed the run Please don’t reply on this GitHub thread. Visit golang.org/cl/529995. |
Message from Go LUCI: Patch Set 1: LUCI-TryBot-Result+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/529995. |
Message from Ian Lance Taylor: Patch Set 1: Auto-Submit+1 Code-Review+2 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/529995. |
After CL 528817, *sigctxt.fault of all arches return uintptr, so there is no need to convert 'c.fault()' to uintptr anymore. Change-Id: I062283b578adaaee69d8f439b109a573eeb15110 GitHub-Last-Rev: 3ce3a75 GitHub-Pull-Request: #63133 Reviewed-on: https://go-review.googlesource.com/c/go/+/529995 Reviewed-by: Ian Lance Taylor <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Auto-Submit: Ian Lance Taylor <[email protected]> Reviewed-by: Michael Pratt <[email protected]>
This PR is being closed because golang.org/cl/529995 has been merged. |
After CL 528817, *sigctxt.fault of all arches return uintptr, so
there is no need to convert 'c.fault()' to uintptr anymore.