]> git.proxmox.com Git - mirror_qemu.git/blob - accel/tcg/user-exec-stub.c
util: include the target address in socket connect failures
[mirror_qemu.git] / accel / tcg / user-exec-stub.c
1 #include "qemu/osdep.h"
2 #include "hw/core/cpu.h"
3 #include "sysemu/replay.h"
4 #include "sysemu/sysemu.h"
5
6 bool enable_cpu_pm = false;
7
8 void cpu_resume(CPUState *cpu)
9 {
10 }
11
12 void qemu_init_vcpu(CPUState *cpu)
13 {
14 }
15
16 /* User mode emulation does not support record/replay yet. */
17
18 bool replay_exception(void)
19 {
20 return true;
21 }
22
23 bool replay_has_exception(void)
24 {
25 return false;
26 }
27
28 bool replay_interrupt(void)
29 {
30 return true;
31 }
32
33 bool replay_has_interrupt(void)
34 {
35 return false;
36 }