https://github.com/qemu/qemu
Raw File
Tip revision: c283ff89d11ff123efc9af49128ef58511f73012 authored by Peter Maydell on 21 March 2023, 17:15:43 UTC
Update version for v8.0.0-rc1 release
Tip revision: c283ff8
physmem.c
#include "qemu/osdep.h"
#include "exec/cpu-common.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;
}
back to top