Files
runc/libcontainer/cgroups
Kir Kolyshkin af6b9e7fa9 nit: do not use syscall package
In many places (not all of them though) we can use `unix.`
instead of `syscall.` as these are indentical.

In particular, x/sys/unix defines:

```go
type Signal = syscall.Signal
type Errno = syscall.Errno
type SysProcAttr = syscall.SysProcAttr

const ENODEV      = syscall.Errno(0x13)
```

and unix.Exec() calls syscall.Exec().

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
2020-04-18 16:16:49 -07:00
..
2020-04-18 16:16:49 -07:00
2020-04-09 10:47:19 -07:00
2020-04-08 17:40:09 +02:00
2020-04-07 20:45:53 -07:00
2020-04-09 20:14:39 +09:00