]> git.proxmox.com Git - qemu.git/blobdiff - exec-memory.h
Fix the inconsistency in x509-dh-key-file parameter
[qemu.git] / exec-memory.h
index c439aba3d14f698790e784bbf8657b412f8f4b65..ac1d07dfe4dcf0d453e41026df41d3a37d166633 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Internal memory managment interfaces
+ * Internal memory management interfaces
  *
  * Copyright 2011 Red Hat, Inc. and/or its affiliates
  *
  */
 MemoryRegion *get_system_memory(void);
 
-/* Set the root memory region.  This region is the system memory map. */
-void set_system_memory_map(MemoryRegion *mr);
+/* 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 I/O memory region.  This region is the I/O memory map. */
-void set_system_io_map(MemoryRegion *mr);
+extern AddressSpace address_space_memory;
+extern AddressSpace address_space_io;
 
 #endif