diff options
author | gVisor bot <gvisor-bot@google.com> | 2021-06-10 03:43:04 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-06-10 03:43:04 +0000 |
commit | bc4d6e685a252dc65a5c108aefe61bff9149dc6a (patch) | |
tree | 524745a861cfcf4abb702d9417b2edc7836ffe35 /pkg | |
parent | f721b1e7218fcb81ee7f6ded50247b927870fe3c (diff) | |
parent | 8a7b5a4a8188157a99e5f7654f9235c5332b3552 (diff) |
Merge release-20210601.0-32-g8a7b5a4a8 (automated)
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/sentry/kernel/thread_group.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pkg/sentry/kernel/thread_group.go b/pkg/sentry/kernel/thread_group.go index b92e98fa1..e22ddcd21 100644 --- a/pkg/sentry/kernel/thread_group.go +++ b/pkg/sentry/kernel/thread_group.go @@ -490,10 +490,10 @@ func (tg *ThreadGroup) SetForegroundProcessGroup(tty *TTY, pgid ProcessGroupID) tg.signalHandlers.mu.Lock() defer tg.signalHandlers.mu.Unlock() - // TODO(b/129283598): "If tcsetpgrp() is called by a member of a - // background process group in its session, and the calling process is - // not blocking or ignoring SIGTTOU, a SIGTTOU signal is sent to all - // members of this background process group." + // TODO(gvisor.dev/issue/6148): "If tcsetpgrp() is called by a member of a + // background process group in its session, and the calling process is not + // blocking or ignoring SIGTTOU, a SIGTTOU signal is sent to all members of + // this background process group." // tty must be the controlling terminal. if tg.tty != tty { |