vmm_sys_util::ioctl

Function ioctl_with_ptr

Source
pub unsafe fn ioctl_with_ptr<F: AsRawFd, T>(
    fd: &F,
    req: c_ulong,
    arg: *const T,
) -> c_int
Expand description

Run an ioctl with a raw pointer.

§Arguments

  • fd: an open file descriptor corresponding to the device on which to call the ioctl.
  • req: a device-dependent request code.
  • arg: a raw pointer passed to ioctl.

§Safety

The caller should ensure to pass a valid file descriptor and have the return value checked.