blob: 5676a2f93c80668bb5a77e77c3da9042c88495ae (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#include "qemu/osdep.h"
#include "migration/blocker.h"
int migrate_add_blocker(Error *reason, Error **errp)
{
return 0;
}
void migrate_del_blocker(Error *reason)
{
}
|