diff options
author | Avi Kivity <avi@redhat.com> | 2011-12-15 17:20:34 +0200 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-12-20 14:14:06 +0200 |
commit | 55043ba37ee4b080a4f4f77b0ff672be3cbf8825 (patch) | |
tree | c1d383b8191f62ca93f366de45969e5ee254dcef /memory.h | |
parent | ce7923da4da4e5895ab737fbf2c9b603c764a933 (diff) |
memory: add memory_region_is_logging()
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'memory.h')
-rw-r--r-- | memory.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -277,6 +277,15 @@ uint64_t memory_region_size(MemoryRegion *mr); bool memory_region_is_ram(MemoryRegion *mr); /** + * memory_region_is_logging: return whether a memory region is logging writes + * + * Returns %true if the memory region is logging writes + * + * @mr: the memory region being queried + */ +bool memory_region_is_logging(MemoryRegion *mr); + +/** * memory_region_is_rom: check whether a memory region is ROM * * Returns %true is a memory region is read-only memory. |