mirror of
https://github.com/clearlinux/docker.git
synced 2026-09-06 21:51:33 +00:00
Merge branch 'master' of github.com:dotcloud/docker
This commit is contained in:
@@ -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
|
||||
)
|
||||
Reference in New Issue
Block a user