go.mod: github.com/moby/sys/signal v0.6.0

full diff: https://github.com/moby/sys/compare/8a51b5cc8879...signal/v0.6.0

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2021-11-05 13:08:07 +01:00
parent 9c455ded61
commit 19d9d0d2a5
14 changed files with 25 additions and 27 deletions

View File

@@ -1,3 +1,4 @@
//go:build !windows
// +build !windows
package signal
@@ -16,6 +17,4 @@ const (
SIGWINCH = syscall.SIGWINCH
// SIGPIPE is a signal sent to a process when a pipe is written to before the other end is open for reading
SIGPIPE = syscall.SIGPIPE
// DefaultStopSignal is the syscall signal used to stop a container in unix systems.
DefaultStopSignal = "SIGTERM"
)