2015-09-17 16:23:37 +00:00
|
|
|
#include "sysemu/replay.h"
|
2015-09-17 16:24:28 +00:00
|
|
|
#include <stdlib.h>
|
2015-09-17 16:24:44 +00:00
|
|
|
#include "sysemu/sysemu.h"
|
2015-09-17 16:23:37 +00:00
|
|
|
|
|
|
|
ReplayMode replay_mode;
|
2015-09-17 16:24:28 +00:00
|
|
|
|
|
|
|
int64_t replay_save_clock(unsigned int kind, int64_t clock)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t replay_read_clock(unsigned int kind)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
return 0;
|
|
|
|
}
|
2015-09-17 16:24:44 +00:00
|
|
|
|
|
|
|
bool replay_checkpoint(ReplayCheckpoint checkpoint)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2015-09-17 16:25:07 +00:00
|
|
|
|
|
|
|
bool replay_events_enabled(void)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void replay_finish(void)
|
|
|
|
{
|
|
|
|
}
|