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