mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
a1150245cc
Movified from686be57d0a
, and re-ran gofmt again to address for files not present in 20.10 and vice-versa. Signed-off-by: Sebastiaan van Stijn <github@gone.nl> (cherry picked from commit686be57d0a
) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
22 lines
769 B
Go
22 lines
769 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package signal // import "github.com/docker/docker/pkg/signal"
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
// Signals used in cli/command (no windows equivalent, use
|
|
// invalid signals so they don't get handled)
|
|
|
|
const (
|
|
// SIGCHLD is a signal sent to a process when a child process terminates, is interrupted, or resumes after being interrupted.
|
|
SIGCHLD = syscall.SIGCHLD
|
|
// SIGWINCH is a signal sent to a process when its controlling terminal changes its size
|
|
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"
|
|
)
|