Closed jcharum closed 3 years ago
In the status package, we make a system call to get the terminal window size.
status
As of Go 1.12, Go uses libSystem to make system calls. unix.SYS_IOCTL no longer exists as of this commit.
libSystem
unix.SYS_IOCTL
I think that system call should be replaced with a call to unix.IoctlGetWinsize.
This was fixed as part of https://github.com/grailbio/base/pull/22.
In the
status
package, we make a system call to get the terminal window size.As of Go 1.12, Go uses
libSystem
to make system calls.unix.SYS_IOCTL
no longer exists as of this commit.I think that system call should be replaced with a call to unix.IoctlGetWinsize.