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