Merge branch 'master' of github.com:dotcloud/docker

Upstream-commit: 9906a9af8f2f66dfd630c219936e0a27b9754e56
Component: engine
This commit is contained in:
Andrea Luzzardi
2013-01-28 17:32:38 -08:00
3 changed files with 16 additions and 4 deletions
-4
View File
@@ -21,10 +21,6 @@ type Termios struct {
Ospeed uintptr
}
const (
getTermios = syscall.TIOCGETA
setTermios = syscall.TIOCSETA
)
const (
// Input flags
@@ -0,0 +1,8 @@
package main
import "syscall"
const (
getTermios = syscall.TCIOGETA
setTermios = syscall.TCIOSETA
)
@@ -0,0 +1,8 @@
package main
import "syscall"
const (
getTermios = syscall.TCGETS
setTermios = syscall.TCSETS
)