|
@@ -14,6 +14,8 @@ const (
|
|
SIGCHLD = syscall.SIGCHLD
|
|
SIGCHLD = syscall.SIGCHLD
|
|
// SIGWINCH is a signal sent to a process when its controlling terminal changes its size
|
|
// SIGWINCH is a signal sent to a process when its controlling terminal changes its size
|
|
SIGWINCH = syscall.SIGWINCH
|
|
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 is the syscall signal used to stop a container in unix systems.
|
|
DefaultStopSignal = "SIGTERM"
|
|
DefaultStopSignal = "SIGTERM"
|
|
)
|
|
)
|