-
Notifications
You must be signed in to change notification settings - Fork 12
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
pollfd_t.revents is marked private #27
Comments
Additionally the poll types have a type of i32, but the fields on pollfd_t which use those bits are an i16, so you have to cast the constants unnecessarily currently: nc/src/platform/linux-types/uapi/asm_generic/poll.rs Lines 9 to 24 in ac659c6
|
And the poll function returns a useful integer: nc/src/platform/linux-x86_64/call.rs Line 4619 in 6da9f75
Manpage:
|
This is a field you need to be able to read/write to use
poll
.nc/src/platform/linux-types/uapi/asm_generic/poll.rs
Lines 31 to 37 in ac659c6
The text was updated successfully, but these errors were encountered: