]> git.proxmox.com Git - mirror_qemu.git/blame - stubs/replay-user.c
qom: Add a test case for complex property finalization
[mirror_qemu.git] / stubs / replay-user.c
CommitLineData
d73abd6d
PD
1/*
2 * replay.c
3 *
4 * Copyright (c) 2010-2015 Institute for System Programming
5 * of the Russian Academy of Sciences.
6 *
7 * This work is licensed under the terms of the GNU GPL, version 2 or later.
8 * See the COPYING file in the top-level directory.
9 *
10 */
11
12#include "sysemu/replay.h"
6f060969
PD
13
14bool replay_exception(void)
15{
16 return true;
17}
18
19bool replay_has_exception(void)
20{
21 return false;
22}
23
24bool replay_interrupt(void)
25{
26 return true;
27}
28
29bool replay_has_interrupt(void)
30{
31 return false;
32}