2014-11-13 13:40:22 -05:00
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
package signal
|
|
|
|
|
|
|
|
import (
|
|
|
|
"syscall"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Signals used in api/client (no windows equivalent, use
|
|
|
|
// invalid signals so they don't get handled)
|
2015-07-25 04:35:07 -04:00
|
|
|
|
2015-08-04 16:51:48 -04:00
|
|
|
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
|
2016-03-18 16:50:18 -04:00
|
|
|
// 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
|
2015-08-04 16:51:48 -04:00
|
|
|
// DefaultStopSignal is the syscall signal used to stop a container in unix systems.
|
|
|
|
DefaultStopSignal = "SIGTERM"
|
|
|
|
)
|