-
Notifications
You must be signed in to change notification settings - Fork 18k
os: don't use pidfd on Android < 12 #69245
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
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. |
This PR (HEAD: b60d294) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/610515. Important tips:
|
Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
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/610515. |
Message from cions: Patch Set 3: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
Message from Ian Lance Taylor: Patch Set 3: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
Message from Kirill Kolyshkin: Patch Set 3: (3 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
Message from Kirill Kolyshkin: Patch Set 3: Commit-Queue+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
Message from Go LUCI: Patch Set 3: Dry run: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2024-09-04T23:54:40Z","revision":"9c0340f360771975d2d51c7998b16e8400bb8479"} Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
Message from cions: Patch Set 3: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
Message from Kirill Kolyshkin: Patch Set 3: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
Message from Go LUCI: Patch Set 3: This CL has passed the run Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
Message from Go LUCI: Patch Set 3: LUCI-TryBot-Result+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
Message from Ian Lance Taylor: Patch Set 3: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
This PR (HEAD: fa64710) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/610515. Important tips:
|
Message from cions: Patch Set 4: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
Message from Kirill Kolyshkin: Patch Set 4: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
In Android version 11 and earlier, pidfd-related system calls are not allowed by the seccomp policy, which causes crashes due to SIGSYS signals. Fixes golang#69065
This PR (HEAD: af8e849) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/610515. Important tips:
|
Message from cions: Patch Set 4: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
Message from Ian Lance Taylor: Patch Set 5: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
This PR (HEAD: c04bbaf) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/610515. Important tips:
|
Message from Kirill Kolyshkin: Patch Set 6: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
Message from Kirill Kolyshkin: Patch Set 6: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
Message from cions: Patch Set 6: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
Message from Kirill Kolyshkin: Patch Set 6: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
Message from cions: Patch Set 6: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
Message from Ian Lance Taylor: Patch Set 6: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
This PR (HEAD: 0c9a486) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/610515. Important tips:
|
Message from cions: Patch Set 7: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
Message from Ian Lance Taylor: Patch Set 7: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
Message from Cherry Mui: Patch Set 7: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
Message from cions: Patch Set 7: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
Message from Cherry Mui: Patch Set 7: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
Message from Ian Lance Taylor: Patch Set 7: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/610515. |
In Android version 11 and earlier, pidfd-related system calls
are not allowed by the seccomp policy, which causes crashes due
to SIGSYS signals.
Fixes #69065