-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
os/signal: let Reset reset Ignored signals #71708
base: master
Are you sure you want to change the base?
Conversation
This PR (HEAD: e403736) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/649155. Important tips:
|
Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/649155. |
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/649155. |
e403736
to
453c2ae
Compare
This PR (HEAD: 453c2ae) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/649155. Important tips:
|
453c2ae
to
3d83b49
Compare
This PR (HEAD: 3d83b49) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/649155. Important tips:
|
Reset
reset ignored signals
3d83b49
to
45dab02
Compare
45dab02
to
0693255
Compare
This PR (HEAD: 0693255) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/649155. Important tips:
|
0693255
to
a1cecf9
Compare
Reset
reset ignored signalsReset
reset Ignore
d signals
This PR (HEAD: a1cecf9) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/649155. Important tips:
|
Reset
reset Ignore
d signalsReset
reset Ignore
d signals
Message from Ian Lance Taylor: Patch Set 6: (8 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/649155. |
Reset
reset Ignore
d signals
This PR (HEAD: 6dd5b0d) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/649155. Important tips:
|
Message from Fabian Meumertzheim: Patch Set 7: (8 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/649155. |
Message from Ian Lance Taylor: Patch Set 8: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/649155. |
Message from Fabian Meumertzheim: Patch Set 8: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/649155. |
Message from Ian Lance Taylor: Patch Set 8: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/649155. |
signal.Reset
now also undoes previous calls tosignal.Ignore
.More precisely, it resets signal handlers to the state they had
at startup or the latest custom signal handler registered via cgo.
Fixes #46321