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
|
|
|
|
|
|
|
// SIGCHLD is a signal sent to a process when a child process terminates, is interrupted, or resumes after being interrupted.
|
2014-11-13 13:40:22 -05:00
|
|
|
const SIGCHLD = syscall.SIGCHLD
|
2015-07-25 04:35:07 -04:00
|
|
|
|
|
|
|
// SIGWINCH is a signal sent to a process when its controlling terminal changes its size
|
2014-11-13 13:40:22 -05:00
|
|
|
const SIGWINCH = syscall.SIGWINCH
|