Merge tag 'accel-sh4-ui-20240503' of https://github.com/philmd/qemu into staging
[qemu/armbru.git] / migration / colo-stubs.c
blobf8c069b73949241625792cb01909686b9c9c8cd6
1 #include "qemu/osdep.h"
2 #include "qemu/notify.h"
3 #include "net/colo-compare.h"
4 #include "migration/colo.h"
5 #include "qemu/error-report.h"
6 #include "qapi/qapi-commands-migration.h"
8 void colo_shutdown(void)
12 int coroutine_fn colo_incoming_co(void)
14 return 0;
17 void colo_checkpoint_delay_set(void)
21 void migrate_start_colo_process(MigrationState *s)
23 error_report("Impossible happened: trying to start COLO when COLO "
24 "module is not built in");
25 abort();
28 bool migration_in_colo_state(void)
30 return false;
33 bool migration_incoming_in_colo_state(void)
35 return false;