17 lines
242 B
Go
17 lines
242 B
Go
|
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")
|
||
|
}
|