1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/vendor/github.com/containerd/console
Sebastiaan van Stijn aab5eaddcc
bump containerd/console to 2748ece16665b45a47f884001d5831ec79703880
Fix runc exec on big-endian, causing:

    container_linux.go:265: starting container process caused "open /dev/pts/4294967296: no such file or directory"

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2018-02-28 21:43:20 +01:00
..
console.go
console_linux.go
console_unix.go
console_windows.go
LICENSE
README.md
tc_darwin.go
tc_freebsd.go
tc_linux.go bump containerd/console to 2748ece16665b45a47f884001d5831ec79703880 2018-02-28 21:43:20 +01:00
tc_solaris_cgo.go
tc_solaris_nocgo.go
tc_unix.go

console

Build Status

Golang package for dealing with consoles. Light on deps and a simple API.

Modifying the current process

current := console.Current()
defer current.Reset()

if err := current.SetRaw(); err != nil {
}
ws, err := current.Size()
current.Resize(ws)