gotty-client/arch_windows.go

17 lines
242 B
Go
Raw Permalink Normal View History

2015-11-19 07:15:13 +08: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")
}