2016-01-29 18:49:52 +01:00
|
|
|
#include "qemu/osdep.h"
|
2015-09-17 18:23:37 +02:00
|
|
|
#include "sysemu/replay.h"
|
2015-09-17 18:24:44 +02:00
|
|
|
#include "sysemu/sysemu.h"
|
2015-09-17 18:23:37 +02:00
|
|
|
|
|
|
|
ReplayMode replay_mode;
|
2015-09-17 18:24:28 +02: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 18:24:44 +02:00
|
|
|
|
|
|
|
bool replay_checkpoint(ReplayCheckpoint checkpoint)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2015-09-17 18:25:07 +02:00
|
|
|
|
|
|
|
bool replay_events_enabled(void)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void replay_finish(void)
|
|
|
|
{
|
|
|
|
}
|
2016-03-14 08:44:36 +01:00
|
|
|
|
|
|
|
void replay_register_char_driver(CharDriverState *chr)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void replay_chr_be_write(CharDriverState *s, uint8_t *buf, int len)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
void replay_char_write_event_save(int res, int offset)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
void replay_char_write_event_load(int *res, int *offset)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
int replay_char_read_all_load(uint8_t *buf)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
void replay_char_read_all_save_error(int res)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
void replay_char_read_all_save_buf(uint8_t *buf, int offset)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
2016-03-14 08:45:10 +01:00
|
|
|
|
|
|
|
void replay_block_event(QEMUBH *bh, uint64_t id)
|
|
|
|
{
|
|
|
|
}
|