2015-02-10 06:07:18 +08:00
|
|
|
package libcontainer
|
|
|
|
|
|
|
|
import "io"
|
|
|
|
|
2015-02-13 02:38:43 +08:00
|
|
|
// Console represents a pseudo TTY.
|
2015-02-10 06:07:18 +08:00
|
|
|
type Console interface {
|
|
|
|
io.ReadWriter
|
|
|
|
io.Closer
|
|
|
|
|
|
|
|
// 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
|
|
|
|
}
|