Merge branch 'master' of github.com:dotcloud/docker
This commit is contained in:
commit
9906a9af8f
3 changed files with 16 additions and 4 deletions
|
@ -21,10 +21,6 @@ type Termios struct {
|
|||
Ospeed uintptr
|
||||
}
|
||||
|
||||
const (
|
||||
getTermios = syscall.TIOCGETA
|
||||
setTermios = syscall.TIOCSETA
|
||||
)
|
||||
|
||||
const (
|
||||
// Input flags
|
||||
|
|
8
docker/termios_darwin.go
Normal file
8
docker/termios_darwin.go
Normal file
|
@ -0,0 +1,8 @@
|
|||
package main
|
||||
|
||||
import "syscall"
|
||||
|
||||
const (
|
||||
getTermios = syscall.TCIOGETA
|
||||
setTermios = syscall.TCIOSETA
|
||||
)
|
8
docker/termios_linux.go
Normal file
8
docker/termios_linux.go
Normal file
|
@ -0,0 +1,8 @@
|
|||
package main
|
||||
|
||||
import "syscall"
|
||||
|
||||
const (
|
||||
getTermios = syscall.TCGETS
|
||||
setTermios = syscall.TCSETS
|
||||
)
|
Loading…
Add table
Reference in a new issue