mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 18:23:57 -06:00
replay: global variables and function stubs
This patch adds global variables, defines, function declarations, and function stubs for deterministic VM replay used by external modules. Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru> Message-Id: <20150917162337.8676.41538.stgit@PASHA-ISP.def.inno> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
6c5f30cad2
commit
d73abd6dcc
9 changed files with 239 additions and 0 deletions
19
include/sysemu/replay.h
Normal file
19
include/sysemu/replay.h
Normal file
|
@ -0,0 +1,19 @@
|
|||
#ifndef REPLAY_H
|
||||
#define REPLAY_H
|
||||
|
||||
/*
|
||||
* replay.h
|
||||
*
|
||||
* Copyright (c) 2010-2015 Institute for System Programming
|
||||
* of the Russian Academy of Sciences.
|
||||
*
|
||||
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
||||
* See the COPYING file in the top-level directory.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "qapi-types.h"
|
||||
|
||||
extern ReplayMode replay_mode;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue