2016-01-29 18:49:52 +01:00
|
|
|
#include "qemu/osdep.h"
|
2012-12-05 17:49:08 +01:00
|
|
|
#include "migration/vmstate.h"
|
|
|
|
|
2019-08-28 14:02:32 +02:00
|
|
|
int vmstate_register_with_alias_id(VMStateIf *obj,
|
2019-10-16 04:29:31 +02:00
|
|
|
uint32_t instance_id,
|
2012-12-05 17:49:08 +01:00
|
|
|
const VMStateDescription *vmsd,
|
|
|
|
void *base, int alias_id,
|
2017-02-02 13:59:54 +01:00
|
|
|
int required_for_version,
|
|
|
|
Error **errp)
|
2012-12-05 17:49:08 +01:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-08-28 14:02:32 +02:00
|
|
|
void vmstate_unregister(VMStateIf *obj,
|
2012-12-05 17:49:08 +01:00
|
|
|
const VMStateDescription *vmsd,
|
|
|
|
void *opaque)
|
|
|
|
{
|
|
|
|
}
|
2017-02-13 19:04:48 +01:00
|
|
|
|
2017-04-17 14:57:54 +02:00
|
|
|
bool vmstate_check_only_migratable(const VMStateDescription *vmsd)
|
2017-02-13 19:04:48 +01:00
|
|
|
{
|
2017-04-17 14:57:54 +02:00
|
|
|
return true;
|
2017-02-13 19:04:48 +01:00
|
|
|
}
|