mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 21:32:52 +00:00
dccd0313b6
It's a good idea to use notifier to notify COLO frame of inconsistent packets comparing. Signed-off-by: Zhang Chen <zhangckid@gmail.com> Signed-off-by: Zhang Chen <chen.zhang@intel.com> Signed-off-by: zhanghailiang <zhang.zhanghailiang@huawei.com> Signed-off-by: Jason Wang <jasowang@redhat.com>
24 lines
785 B
C
24 lines
785 B
C
/*
|
|
* COarse-grain LOck-stepping Virtual Machines for Non-stop Service (COLO)
|
|
* (a.k.a. Fault Tolerance or Continuous Replication)
|
|
*
|
|
* Copyright (c) 2017 HUAWEI TECHNOLOGIES CO., LTD.
|
|
* Copyright (c) 2017 FUJITSU LIMITED
|
|
* Copyright (c) 2017 Intel Corporation
|
|
*
|
|
* Authors:
|
|
* zhanghailiang <zhang.zhanghailiang@huawei.com>
|
|
* Zhang Chen <zhangckid@gmail.com>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or
|
|
* later. See the COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#ifndef QEMU_COLO_COMPARE_H
|
|
#define QEMU_COLO_COMPARE_H
|
|
|
|
void colo_notify_compares_event(void *opaque, int event, Error **errp);
|
|
void colo_compare_register_notifier(Notifier *notify);
|
|
void colo_compare_unregister_notifier(Notifier *notify);
|
|
|
|
#endif /* QEMU_COLO_COMPARE_H */
|