diff options
Diffstat (limited to 'memory.h')
| -rw-r--r-- | memory.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/memory.h b/memory.h index c280a39d2c..4e518b2a1b 100644 --- a/memory.h +++ b/memory.h @@ -456,6 +456,14 @@ void memory_region_add_subregion_overlap(MemoryRegion *mr, void memory_region_del_subregion(MemoryRegion *mr, MemoryRegion *subregion); +/* Start a transaction; changes will be accumulated and made visible only + * when the transaction ends. + */ +void memory_region_transaction_begin(void); +/* Commit a transaction and make changes visible to the guest. + */ +void memory_region_transaction_commit(void); + #endif #endif |