228e3ec4e2
Fixes: 50186051f4
("Introduce yank feature")
Signed-off-by: Lukas Straub <lukasstraub2@web.de>
[AJB: tweak MAINTAINERS]
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210114141918.5201cc9c@gecko.fritz.box>
Message-Id: <20210114165730.31607-11-alex.bennee@linaro.org>
30 lines
555 B
C
30 lines
555 B
C
#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)
|
|
{
|
|
}
|
|
|
|
void yank_generic_iochannel(void *opaque)
|
|
{
|
|
}
|
|
|
|
|