-
Notifications
You must be signed in to change notification settings - Fork 17.8k
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: SIGCONT and SIGTSTP aren't handle-able #8953
Labels
Milestone
Comments
We don't set up a signal handler for SIGCONT or SIGTSTP (or SIGTTIN or SIGTTOU). I think it should be OK to always use a signal handler for SIGCONT, and just ignore it if the signal arrives. For SIGTSTP, SIGTTIN, and SIGTTOU we can only set up a signal handler if the program explicitly requests notification for the signal, and we have to remove the signal handler--return to the default signal action--if the program no longer wants notification. I think we now have the framework for this if anybody wants to work on it. Labels changed: added repo-main, release-none, suggested. Status changed to Accepted. |
CL https://golang.org/cl/18185 mentions this issue. |
crosbymichael
added a commit
to crosbymichael/runc
that referenced
this issue
May 20, 2016
With this change we need a fix in go 1.6 to allow us to receive SIGCONT signals. Ref: golang/go#8953 Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
crosbymichael
added a commit
to crosbymichael/runc
that referenced
this issue
May 23, 2016
With this change we need a fix in go 1.6 to allow us to receive SIGCONT signals. Ref: golang/go#8953 Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
crosbymichael
added a commit
to crosbymichael/runc
that referenced
this issue
May 27, 2016
With this change we need a fix in go 1.6 to allow us to receive SIGCONT signals. Ref: golang/go#8953 Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
crosbymichael
added a commit
to crosbymichael/runc
that referenced
this issue
May 27, 2016
With this change we need a fix in go 1.6 to allow us to receive SIGCONT signals. Ref: golang/go#8953 Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
crosbymichael
added a commit
to crosbymichael/runc
that referenced
this issue
May 31, 2016
With this change we need a fix in go 1.6 to allow us to receive SIGCONT signals. Ref: golang/go#8953 Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
by burke@libbey.me:
The text was updated successfully, but these errors were encountered: