mirror of https://github.com/docker/cli.git
12 lines
128 B
Go
12 lines
128 B
Go
|
package container
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
|
||
|
"golang.org/x/sys/unix"
|
||
|
)
|
||
|
|
||
|
func isRuntimeSig(s os.Signal) bool {
|
||
|
return s == unix.SIGURG
|
||
|
}
|