]>
Commit | Line | Data |
---|---|---|
d73abd6d | 1 | #include "sysemu/replay.h" |
8eda206e | 2 | #include <stdlib.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 | } |