mirror of
https://github.com/qemu/qemu.git
synced 2026-02-04 05:35:39 +00:00
Move RAMBlock functions out of ram_addr.h and cpu-common.h; move memory API headers out of include/exec and into include/system. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
14 lines
249 B
C
14 lines
249 B
C
#include "qemu/osdep.h"
|
|
#include "system/ramblock.h"
|
|
|
|
RAMBlock *qemu_ram_block_from_host(void *ptr, bool round_offset,
|
|
ram_addr_t *offset)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
int qemu_ram_get_fd(RAMBlock *rb)
|
|
{
|
|
return -1;
|
|
}
|