]> git.proxmox.com Git - qemu.git/blobdiff - exec-memory.h
qemu-nbd: print error messages from the daemon through a pipe
[qemu.git] / exec-memory.h
index aea1b4565435a340192a43382fe37fa95ed3bd3b..334219fe23c1256a129c006c82edffa1be60d2eb 100644 (file)
  */
 MemoryRegion *get_system_memory(void);
 
+/* Get the root I/O port region.  This interface should only be used
+ * temporarily until a proper bus interface is available.
+ */
+MemoryRegion *get_system_io(void);
+
 /* Set the root memory region.  This region is the system memory map. */
 void set_system_memory_map(MemoryRegion *mr);
 
+/* Set the I/O memory region.  This region is the I/O memory map. */
+void set_system_io_map(MemoryRegion *mr);
+
 #endif
 
 #endif