terraform/vendor/github.com/moul/gotty-client/arch_windows.go

17 lines
242 B
Go
Raw Normal View History

2017-01-20 16:59:14 +01:00
package gottyclient
import (
"errors"
"os"
)
func notifySignalSIGWINCH(c chan<- os.Signal) {
}
func resetSignalSIGWINCH() {
}
func syscallTIOCGWINSZ() ([]byte, error) {
return nil, errors.New("SIGWINCH isn't supported on this ARCH")
}