Macro ioctl_write_int_bad
macro_rules! ioctl_write_int_bad {
($(#[$attr:meta])* $name:ident, $nr:expr) => { ... };
}
Generates a wrapper function for a "bad" ioctl that writes an integer 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.
Examples
# extern crate nix;
#
ioctl_write_int_bad!;
#
# extern crate nix;
const KVMIO: u8 = 0xAE;
ioctl_write_int_bad!;
#