Macro ioctl_none_bad
macro_rules! ioctl_none_bad {
($(#[$attr:meta])* $name:ident, $nr:expr) => { ... };
}
Generates a wrapper function for a "bad" ioctl that passes no data to the kernel.
The arguments to this macro are:
- The function name
- The ioctl request code
The generated function has the following signature:
pub unsafe
For a more in-depth explanation of ioctls, see ::sys::ioctl.
Example
# #[macro_use] extern crate nix;
# use libc::TIOCNXCL;
# use std::fs::File;
# use std::os::unix::io::AsRawFd;
ioctl_none_bad!(tiocnxcl, TIOCNXCL);
fn main() {
let file = File::open("/dev/ttyUSB0").unwrap();
unsafe { tiocnxcl(file.as_raw_fd()) }.unwrap();
}