2014-11-13 18:40:22 +00: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 08:35:07 +00:00
|
|
|
const (
|
|
|
|
SIGCHLD = syscall.Signal(0xff)
|
|
|
|
SIGWINCH = syscall.Signal(0xff)
|
2015-08-04 20:51:48 +00:00
|
|
|
// DefaultStopSignal is the syscall signal used to stop a container in windows systems.
|
|
|
|
DefaultStopSignal = "15"
|
2015-07-25 08:35:07 +00:00
|
|
|
)
|