summaryrefslogtreecommitdiff
path: root/pkg/signal
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-01-07 15:12:35 -0500
committerGitHub <noreply@github.com>2021-01-07 15:12:35 -0500
commit78cda71372485f163909525f8d07194920968486 (patch)
tree0c0c9c40cfd92a624adb40356996b619d1dbb168 /pkg/signal
parent6c132b78f1338c01f60f0fd509710813e2832550 (diff)
parent65c88ec4736a7b57ef59c1f9d1a056901dd6095e (diff)
downloadpodman-78cda71372485f163909525f8d07194920968486.tar.gz
podman-78cda71372485f163909525f8d07194920968486.tar.bz2
podman-78cda71372485f163909525f8d07194920968486.zip
Merge pull request #8907 from Luap99/fix-mips-build
Fix build for mips architecture follow-up
Diffstat (limited to 'pkg/signal')
-rw-r--r--pkg/signal/signal_linux_mipsx.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/signal/signal_linux_mipsx.go b/pkg/signal/signal_linux_mipsx.go
index 67638e30a..45c9d5af1 100644
--- a/pkg/signal/signal_linux_mipsx.go
+++ b/pkg/signal/signal_linux_mipsx.go
@@ -19,6 +19,8 @@ import (
const (
sigrtmin = 34
sigrtmax = 127
+
+ SIGWINCH = syscall.SIGWINCH
)
// signalMap is a map of Linux signals.