forked from barak/tarpoon
Add glide.yaml and vendor deps
This commit is contained in:
parent
db918f12ad
commit
5b3d5e81bd
18880 changed files with 5166045 additions and 1 deletions
14
vendor/github.com/opencontainers/runc/libcontainer/console.go
generated
vendored
Normal file
14
vendor/github.com/opencontainers/runc/libcontainer/console.go
generated
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
package libcontainer
|
||||
|
||||
import "io"
|
||||
|
||||
// Console represents a pseudo TTY.
|
||||
type Console interface {
|
||||
io.ReadWriteCloser
|
||||
|
||||
// Path returns the filesystem path to the slave side of the pty.
|
||||
Path() string
|
||||
|
||||
// Fd returns the fd for the master of the pty.
|
||||
Fd() uintptr
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue