]> Git Repo - qemu.git/blob - stubs/replay-user.c
Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging
[qemu.git] / stubs / replay-user.c
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 "qemu/osdep.h"
13 #include "sysemu/replay.h"
14
15 bool replay_exception(void)
16 {
17     return true;
18 }
19
20 bool replay_has_exception(void)
21 {
22     return false;
23 }
24
25 bool replay_interrupt(void)
26 {
27     return true;
28 }
29
30 bool replay_has_interrupt(void)
31 {
32     return false;
33 }
This page took 0.025671 seconds and 4 git commands to generate.