pub unsafe extern "C" fn memory_region_clear_global_locking(
    mr: *mut MemoryRegion
)
Expand description

memory_region_clear_global_locking: Declares that access processing does not depend on the QEMU global lock.

By clearing this property, accesses to the memory region will be processed outside of QEMU’s global lock (unless the lock is held on when issuing the access request). In this case, the device model implementing the access handlers is responsible for synchronization of concurrency.

@mr: the memory region to be updated.