mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-27 12:02:14 -05:00
16 lines
242 B
Go
16 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")
|
|
}
|