Files
linuxkit/vendor/github.com/moby/hyperkit/go/pty_util_fallback.go
Rolf Neugebauer 8e647fe974 vendor: Update hyperkit go bindings
The update allows redirecting the VMs output.

Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
2017-06-07 23:30:30 +01:00

25 lines
413 B
Go

// +build !darwin
package hyperkit
import (
"log"
"os"
)
func saneTerminal(f *os.File) error {
log.Fatal("Function not supported on your OS")
return nil
}
func setRaw(f *os.File) error {
log.Fatal("Function not supported on your OS")
return nil
}
// isTerminal checks if the provided file is a terminal
func isTerminal(f *os.File) bool {
log.Fatal("Function not supported on your OS")
return false
}