diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-05-24 14:24:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-24 14:24:46 -0400 |
commit | 0f5c06dac58645943469c63999931c165dba9031 (patch) | |
tree | 4747c6c6662921171c3bd8a2eef818ee8e0c4cab /pkg/signal/signal_unix.go | |
parent | eea7491d6b02893766b806775bf00c992a824fd2 (diff) | |
parent | 70f147d0190e566d68412430c47df9bc00ddd418 (diff) | |
download | podman-0f5c06dac58645943469c63999931c165dba9031.tar.gz podman-0f5c06dac58645943469c63999931c165dba9031.tar.bz2 podman-0f5c06dac58645943469c63999931c165dba9031.zip |
Merge pull request #14330 from Luap99/completion3
cmd/podman/common/completion.go: fix FIXMEs
Diffstat (limited to 'pkg/signal/signal_unix.go')
-rw-r--r-- | pkg/signal/signal_unix.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/signal/signal_unix.go b/pkg/signal/signal_unix.go index c0aa62d21..0f43e21b7 100644 --- a/pkg/signal/signal_unix.go +++ b/pkg/signal/signal_unix.go @@ -16,12 +16,12 @@ const ( SIGWINCH = syscall.SIGWINCH ) -// signalMap is a map of Linux signals. +// SignalMap is a map of Linux signals. // These constants are sourced from the Linux version of golang.org/x/sys/unix // (I don't see much risk of this changing). // This should work as long as Podman only runs containers on Linux, which seems // a safe assumption for now. -var signalMap = map[string]syscall.Signal{ +var SignalMap = map[string]syscall.Signal{ "ABRT": syscall.Signal(0x6), "ALRM": syscall.Signal(0xe), "BUS": syscall.Signal(0x7), |