-
Notifications
You must be signed in to change notification settings - Fork 18k
syscall: missing syscall.Winsize for both linux and darwin #3316
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Milestone
Comments
In the mean time, maintaining your own syscall-type package is quite easy with a script like this: #!/bin/bash set -xe GOARCH=386 go tool cgo -godefs types_linux.go |gofmt -s >ztypes_linux_386.go GOARCH=amd64 go tool cgo -godefs types_linux.go |gofmt -s >ztypes_linux_amd64.go See types_linux.go in the current syscall package for the rest of the idea. |
http://code.google.com/p/go/source/detail?r=b0f36fc20ab2 added Termios for darwin. |
The syscall package is locked down, but the |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The text was updated successfully, but these errors were encountered: