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
On Windows we wrap write() and read() to ensure we don't pass too many bytes to the underlying system implementation.
write()
read()
We should consider doing the same on Unix platforms, making use of dlsym() to find the underlying function to call with the same name.
dlsym()
The text was updated successfully, but these errors were encountered:
matt-gretton-dann
No branches or pull requests
On Windows we wrap
write()
andread()
to ensure we don't pass too many bytes to the underlyingsystem implementation.
We should consider doing the same on Unix platforms, making use of
dlsym()
to find the underlyingfunction to call with the same name.
The text was updated successfully, but these errors were encountered: