We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In PR la5nta/pat#222, I noticed this module was recently broken.
According to ory/dockertest#212 (comment), zsyscall_darwin.go should not be using unix.SYS_IOCTL, but instead
zsyscall_darwin.go
unix.SYS_IOCTL
unix.IoctlGetTermios and unix.IoctlSetTermios. Direct system calls are considered unsupported by the Darwin maintainers.
unix.IoctlGetTermios
unix.IoctlSetTermios
The text was updated successfully, but these errors were encountered:
Pin golang sys version
b513a57
This should be a temporary workaround for albenik/go-serial#15
I tracked this down to a system call generator script in golang: golang/go#42241
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
In PR la5nta/pat#222, I noticed this module was recently broken.
According to ory/dockertest#212 (comment),
zsyscall_darwin.go
should not be usingunix.SYS_IOCTL
, but insteadThe text was updated successfully, but these errors were encountered: