mirror of
https://github.com/mii443/qemu.git
synced 2025-08-30 19:09:35 +00:00
memory: introduce memory_region_name()
Trivial accessor for the name attribute. Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
9
memory.h
9
memory.h
@ -315,6 +315,15 @@ uint64_t memory_region_size(MemoryRegion *mr);
|
||||
*/
|
||||
bool memory_region_is_ram(MemoryRegion *mr);
|
||||
|
||||
/**
|
||||
* memory_region_name: get a memory region's name
|
||||
*
|
||||
* Returns the string that was used to initialize the memory region.
|
||||
*
|
||||
* @mr: the memory region being queried
|
||||
*/
|
||||
const char *memory_region_name(MemoryRegion *mr);
|
||||
|
||||
/**
|
||||
* memory_region_is_logging: return whether a memory region is logging writes
|
||||
*
|
||||
|
Reference in New Issue
Block a user