]> git.ipfire.org Git - thirdparty/qemu.git/blame - stubs/replay.c
Clean up inclusion of sysemu/sysemu.h
[thirdparty/qemu.git] / stubs / replay.c
CommitLineData
87c9b5e0 1#include "qemu/osdep.h"
d73abd6d
PD
2#include "sysemu/replay.h"
3
4ReplayMode replay_mode;
8eda206e 5
74c0b816 6int64_t replay_save_clock(unsigned int kind, int64_t clock, int64_t raw_icount)
8eda206e
PD
7{
8 abort();
9 return 0;
10}
11
12int64_t replay_read_clock(unsigned int kind)
13{
14 abort();
15 return 0;
16}
8bd7f71d
PD
17
18bool replay_checkpoint(ReplayCheckpoint checkpoint)
19{
20 return true;
21}
7615936e
PD
22
23bool replay_events_enabled(void)
24{
25 return false;
26}
27
28void replay_finish(void)
29{
30}
33577b47 31
0ec7b3e7 32void replay_register_char_driver(Chardev *chr)
33577b47
PD
33{
34}
35
0ec7b3e7 36void replay_chr_be_write(Chardev *s, uint8_t *buf, int len)
33577b47
PD
37{
38 abort();
39}
40
41void replay_char_write_event_save(int res, int offset)
42{
43 abort();
44}
45
46void replay_char_write_event_load(int *res, int *offset)
47{
48 abort();
49}
50
51int replay_char_read_all_load(uint8_t *buf)
52{
53 abort();
54}
55
56void replay_char_read_all_save_error(int res)
57{
58 abort();
59}
60
61void replay_char_read_all_save_buf(uint8_t *buf, int offset)
62{
63 abort();
64}
63785678
PD
65
66void replay_block_event(QEMUBH *bh, uint64_t id)
67{
68}
6d0ceb80
PD
69
70uint64_t blkreplay_next_id(void)
71{
72 return 0;
73}
a36544d3
AB
74
75void replay_mutex_lock(void)
76{
77}
78
79void replay_mutex_unlock(void)
80{
81}