Function panda_sys::memory_region_del_eventfd[][src]

pub unsafe extern "C" fn memory_region_del_eventfd(
    mr: *mut MemoryRegion,
    addr: hwaddr,
    size: c_uint,
    match_data: bool,
    data: u64,
    e: *mut EventNotifier
)
Expand description

memory_region_del_eventfd: Cancel an eventfd.

Cancels an eventfd trigger requested by a previous memory_region_add_eventfd() call.

@mr: the memory region being updated. @addr: the address within @mr that is to be monitored @size: the size of the access to trigger the eventfd @match_data: whether to match against @data, instead of just @addr @data: the data to match against the guest write @fd: the eventfd to be triggered when @addr, @size, and @data all match.