aboutsummaryrefslogtreecommitdiff
path: root/stubs/yank.c
blob: 11b24fc0576da83ba9d7bd53ceb65ad76bb34af1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "qemu/osdep.h"
#include "qemu/yank.h"

bool yank_register_instance(const YankInstance *instance, Error **errp)
{
    return true;
}

void yank_unregister_instance(const YankInstance *instance)
{
}

void yank_register_function(const YankInstance *instance,
                            YankFn *func,
                            void *opaque)
{
}

void yank_unregister_function(const YankInstance *instance,
                              YankFn *func,
                              void *opaque)
{
}