diff options
Diffstat (limited to 'runsc/boot/controller.go')
-rw-r--r-- | runsc/boot/controller.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/runsc/boot/controller.go b/runsc/boot/controller.go index 6dd7fadd9..96a848197 100644 --- a/runsc/boot/controller.go +++ b/runsc/boot/controller.go @@ -445,6 +445,18 @@ const ( DeliverToForegroundProcessGroup ) +func (s SignalDeliveryMode) String() string { + switch s { + case DeliverToProcess: + return "Process" + case DeliverToAllProcesses: + return "All" + case DeliverToForegroundProcessGroup: + return "Foreground Process Group" + } + return fmt.Sprintf("unknown signal delivery mode: %d", s) +} + // SignalArgs are arguments to the Signal method. type SignalArgs struct { // CID is the container ID. |