mirror of https://github.com/docker/cli.git
13 lines
171 B
Go
13 lines
171 B
Go
|
// +build windows
|
||
|
|
||
|
package containerizedengine
|
||
|
|
||
|
import (
|
||
|
"syscall"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
// SIGKILL all signals are ignored by containerd kill windows
|
||
|
SIGKILL = syscall.Signal(0)
|
||
|
)
|