summaryrefslogtreecommitdiffhomepage
path: root/runsc/cmd
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2021-02-22 17:40:49 +0000
committergVisor bot <gvisor-bot@google.com>2021-02-22 17:40:49 +0000
commit05500cae9a2043a975546b765b0d7c2565590f68 (patch)
treeae34fb567d26e1ad870f8eda3df2bb86abaae1ac /runsc/cmd
parent28599de5147ae22d1f4364baa2eb2463a1e1f892 (diff)
parent19fe3a2bfb72622c307311dc61019238896a756b (diff)
Merge release-20210208.0-79-g19fe3a2bf (automated)
Diffstat (limited to 'runsc/cmd')
-rw-r--r--runsc/cmd/kill.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/cmd/kill.go b/runsc/cmd/kill.go
index aecf0b7ab..e0df39266 100644
--- a/runsc/cmd/kill.go
+++ b/runsc/cmd/kill.go
@@ -52,7 +52,7 @@ func (*Kill) Usage() string {
// SetFlags implements subcommands.Command.SetFlags.
func (k *Kill) SetFlags(f *flag.FlagSet) {
f.BoolVar(&k.all, "all", false, "send the specified signal to all processes inside the container")
- f.IntVar(&k.pid, "pid", 0, "send the specified signal to a specific process")
+ f.IntVar(&k.pid, "pid", 0, "send the specified signal to a specific process. pid is relative to the root PID namespace")
}
// Execute implements subcommands.Command.Execute.