vendor: DELETEME
https://github.com/opencontainers/runc/pull/1701 Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
182e7f44ec
commit
f6a825d7e0
1 changed files with 2 additions and 3 deletions
5
vendor/github.com/opencontainers/runc/libcontainer/utils/utils.go
generated
vendored
5
vendor/github.com/opencontainers/runc/libcontainer/utils/utils.go
generated
vendored
|
@ -8,9 +8,8 @@ import (
|
|||
"os"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
"syscall"
|
||||
"unsafe"
|
||||
|
||||
"golang.org/x/sys/unix"
|
||||
)
|
||||
|
||||
const (
|
||||
|
@ -42,7 +41,7 @@ func ResolveRootfs(uncleanRootfs string) (string, error) {
|
|||
|
||||
// ExitStatus returns the correct exit status for a process based on if it
|
||||
// was signaled or exited cleanly
|
||||
func ExitStatus(status unix.WaitStatus) int {
|
||||
func ExitStatus(status syscall.WaitStatus) int {
|
||||
if status.Signaled() {
|
||||
return exitSignalOffset + int(status.Signal())
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue