pub enum UffdEvent {
    Pagefault {
        kind: FaultKind,
        rw: ReadWrite,
        addr: *mut c_void,
    },
    Fork {
        uffd: Uffd,
    },
    Remap {
        from: *mut c_void,
        to: *mut c_void,
        len: usize,
    },
    Remove {
        start: *mut c_void,
        end: *mut c_void,
    },
    Unmap {
        start: *mut c_void,
        end: *mut c_void,
    },
}
Expand description

Events from the userfaultfd object that are read by Uffd::read_event().

Variants§

§

Pagefault

Fields

§kind: FaultKind

The kind of fault.

§rw: ReadWrite

Whether the fault is on a read or a write.

§addr: *mut c_void

The address that triggered the fault.

A pagefault event.

§

Fork

Fields

§uffd: Uffd

The Uffd object created for the child by fork(2)

Generated when the faulting process invokes fork(2) (or clone(2) without the CLONE_VM flag).

§

Remap

Fields

§from: *mut c_void

The original address of the memory range that was remapped.

§to: *mut c_void

The new address of the memory range that was remapped.

§len: usize

The original length of the memory range that was remapped.

Generated when the faulting process invokes mremap(2).

§

Remove

Fields

§start: *mut c_void

The start address of the memory range that was freed.

§end: *mut c_void

The end address of the memory range that was freed.

Generated when the faulting process invokes madvise(2) with MADV_DONTNEED or MADV_REMOVE advice.

§

Unmap

Fields

§start: *mut c_void

The start address of the memory range that was unmapped.

§end: *mut c_void

The end address of the memory range that was unmapped.

Generated when the faulting process unmaps a meomry range, either explicitly using munmap(2) or implicitly during mmap(2) or mremap(2).

Trait Implementations§

§

impl Debug for Event

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl RefUnwindSafe for Event

§

impl !Send for Event

§

impl !Sync for Event

§

impl Unpin for Event

§

impl UnwindSafe for Event

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.