diff options
author | Juan Quintela <quintela@redhat.com> | 2012-07-20 10:37:54 +0200 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2012-10-17 18:34:58 +0200 |
commit | 652d7ec291d1726ad01587e13331d7277fa402ec (patch) | |
tree | efac38b8a3eb583ed62ab2f0ed6e9787bf454be9 | |
parent | 69268cde142d169e2e47836bcf0a26341e30218a (diff) |
ram: Export last_ram_offset()
Is the only way of knowing the RAM size.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r-- | cpu-all.h | 1 | ||||
-rw-r--r-- | exec.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -518,6 +518,7 @@ extern int mem_prealloc; #define TLB_MMIO (1 << 5) void dump_exec_info(FILE *f, fprintf_function cpu_fprintf); +ram_addr_t last_ram_offset(void); #endif /* !CONFIG_USER_ONLY */ int cpu_memory_rw_debug(CPUArchState *env, target_ulong addr, @@ -2454,7 +2454,7 @@ static ram_addr_t find_ram_offset(ram_addr_t size) return offset; } -static ram_addr_t last_ram_offset(void) +ram_addr_t last_ram_offset(void) { RAMBlock *block; ram_addr_t last = 0; |