cri-o/vendor/github.com/containerd/console
Mrunal Patel 970b8d61a7 test: Bump up runc to 9f9c96235cc97674e935002fc3d78361b696a69e
This brings in a fix for a cgroups setup race condition
that we hit sometimes in the tests.

Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
2018-01-23 11:06:21 -08:00
..
console.go test: Bump up runc to 9f9c96235cc97674e935002fc3d78361b696a69e 2018-01-23 11:06:21 -08:00
console_linux.go test: Bump up runc to 9f9c96235cc97674e935002fc3d78361b696a69e 2018-01-23 11:06:21 -08:00
console_unix.go test: Bump up runc to 9f9c96235cc97674e935002fc3d78361b696a69e 2018-01-23 11:06:21 -08:00
console_windows.go test: Bump up runc to 9f9c96235cc97674e935002fc3d78361b696a69e 2018-01-23 11:06:21 -08:00
LICENSE test: Bump up runc to 9f9c96235cc97674e935002fc3d78361b696a69e 2018-01-23 11:06:21 -08:00
README.md test: Bump up runc to 9f9c96235cc97674e935002fc3d78361b696a69e 2018-01-23 11:06:21 -08:00
tc_darwin.go test: Bump up runc to 9f9c96235cc97674e935002fc3d78361b696a69e 2018-01-23 11:06:21 -08:00
tc_freebsd.go test: Bump up runc to 9f9c96235cc97674e935002fc3d78361b696a69e 2018-01-23 11:06:21 -08:00
tc_linux.go test: Bump up runc to 9f9c96235cc97674e935002fc3d78361b696a69e 2018-01-23 11:06:21 -08:00
tc_solaris_cgo.go test: Bump up runc to 9f9c96235cc97674e935002fc3d78361b696a69e 2018-01-23 11:06:21 -08:00
tc_solaris_nocgo.go test: Bump up runc to 9f9c96235cc97674e935002fc3d78361b696a69e 2018-01-23 11:06:21 -08:00
tc_unix.go test: Bump up runc to 9f9c96235cc97674e935002fc3d78361b696a69e 2018-01-23 11:06:21 -08:00

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)