mirror of https://github.com/docker/cli.git
13 lines
151 B
Go
13 lines
151 B
Go
|
// +build !windows
|
||
|
|
||
|
package containerizedengine
|
||
|
|
||
|
import (
|
||
|
"golang.org/x/sys/unix"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
// SIGKILL maps to unix.SIGKILL
|
||
|
SIGKILL = unix.SIGKILL
|
||
|
)
|