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
linux-raw-sys defines FASYNC instead of O_ASYNC linux-raw-sys/.../general.rs
linux-raw-sys
FASYNC
O_ASYNC
linux-raw-sys/.../general.rs
The Linux header file <asm/fcntl.h> doesn't define O_ASYNC; the (BSD-derived) FASYNC synonym is defined instead. (man 2 open)
<asm/fcntl.h>
man 2 open
Note that O_ASYNC can't be used for open(2), so this should probably be noted if Async is ever added to OFlags
open(2)
Async
OFlags
The text was updated successfully, but these errors were encountered:
No branches or pull requests
linux-raw-sys
definesFASYNC
instead ofO_ASYNC
linux-raw-sys/.../general.rs
Note that
O_ASYNC
can't be used foropen(2)
, so this should probably be noted ifAsync
is ever added toOFlags
The text was updated successfully, but these errors were encountered: