]> Git Repo - qemu.git/blob - user-exec-stub.c
nbd/server: add errp to nbd_send_reply()
[qemu.git] / user-exec-stub.c
1 #include "qemu/osdep.h"
2 #include "qemu-common.h"
3 #include "qom/cpu.h"
4 #include "sysemu/replay.h"
5
6 void cpu_resume(CPUState *cpu)
7 {
8 }
9
10 void qemu_init_vcpu(CPUState *cpu)
11 {
12 }
13
14 /* User mode emulation does not support record/replay yet.  */
15
16 bool replay_exception(void)
17 {
18     return true;
19 }
20
21 bool replay_has_exception(void)
22 {
23     return false;
24 }
25
26 bool replay_interrupt(void)
27 {
28     return true;
29 }
30
31 bool replay_has_interrupt(void)
32 {
33     return false;
34 }
This page took 0.0254 seconds and 4 git commands to generate.