mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
b216dc9115
Signed-off-by: Amit Krishnan <krish.amit@gmail.com>
29 lines
718 B
Go
29 lines
718 B
Go
// +build !solaris,!windows
|
|
|
|
package term
|
|
|
|
import (
|
|
"syscall"
|
|
"unsafe"
|
|
)
|
|
|
|
// GetWinsize returns the window size based on the specified file descriptor.
|
|
func GetWinsize(fd uintptr) (*Winsize, error) {
|
|
ws := &Winsize{}
|
|
_, _, err := syscall.Syscall(syscall.SYS_IOCTL, fd, uintptr(syscall.TIOCGWINSZ), uintptr(unsafe.Pointer(ws)))
|
|
// Skipp errno = 0
|
|
if err == 0 {
|
|
return ws, nil
|
|
}
|
|
return ws, err
|
|
}
|
|
|
|
// SetWinsize tries to set the specified window size for the specified file descriptor.
|
|
func SetWinsize(fd uintptr, ws *Winsize) error {
|
|
_, _, err := syscall.Syscall(syscall.SYS_IOCTL, fd, uintptr(syscall.TIOCSWINSZ), uintptr(unsafe.Pointer(ws)))
|
|
// Skipp errno = 0
|
|
if err == 0 {
|
|
return nil
|
|
}
|
|
return err
|
|
}
|