xref: /qemu/stubs/migr-blocker.c (revision 6402cbbb)
1 #include "qemu/osdep.h"
2 #include "qemu-common.h"
3 #include "migration/blocker.h"
4 
5 int migrate_add_blocker(Error *reason, Error **errp)
6 {
7     return 0;
8 }
9 
10 void migrate_del_blocker(Error *reason)
11 {
12 }
13