mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
0e50d946a2
Allow to set the signal to stop a container in `docker run`: - Use `--stop-signal` with docker-run to set the default signal the container will use to exit. Signed-off-by: David Calavera <david.calavera@gmail.com>
16 lines
353 B
Go
16 lines
353 B
Go
// +build windows
|
|
|
|
package signal
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
// Signals used in api/client (no windows equivalent, use
|
|
// invalid signals so they don't get handled)
|
|
const (
|
|
SIGCHLD = syscall.Signal(0xff)
|
|
SIGWINCH = syscall.Signal(0xff)
|
|
// DefaultStopSignal is the syscall signal used to stop a container in windows systems.
|
|
DefaultStopSignal = "15"
|
|
)
|