migration: Switch to COLO process after finishing loadvm
[qemu/ar7.git] / stubs / migration-colo.c
blob7b723954d5cb8dc64f58ba970334ad6ff9ebd689
1 /*
2 * COarse-grain LOck-stepping Virtual Machines for Non-stop Service (COLO)
3 * (a.k.a. Fault Tolerance or Continuous Replication)
5 * Copyright (c) 2016 HUAWEI TECHNOLOGIES CO., LTD.
6 * Copyright (c) 2016 FUJITSU LIMITED
7 * Copyright (c) 2016 Intel Corporation
9 * This work is licensed under the terms of the GNU GPL, version 2 or
10 * later. See the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include "migration/colo.h"
16 bool colo_supported(void)
18 return false;
21 bool migration_in_colo_state(void)
23 return false;
26 bool migration_incoming_in_colo_state(void)
28 return false;
31 void migrate_start_colo_process(MigrationState *s)
35 void *colo_process_incoming_thread(void *opaque)
37 return NULL;