summaryrefslogtreecommitdiff
path: root/stubs/ram-block.c
blob: cfa5d8678fcb3282184ca74f914a486840d5900d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "qemu/osdep.h"
#include "exec/ramlist.h"
#include "exec/cpu-common.h"

void ram_block_notifier_add(RAMBlockNotifier *n)
{
}

void ram_block_notifier_remove(RAMBlockNotifier *n)
{
}

int qemu_ram_foreach_block(RAMBlockIterFunc func, void *opaque)
{
    return 0;
}