stubs: update replay-tools to match replay.h types
detected with GCC 13 [-Werror=enum-int-mismatch] Solves Issue #1096. Signed-off-by: Claudio Fontana <cfontana@suse.de> Cc: Pavel Dovgalyuk <pavel.dovgalyuk@ispras.ru> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <20220704075832.31537-1-cfontana@suse.de> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
37e7b86766
commit
bb7e03cb56
@ -7,13 +7,14 @@ bool replay_events_enabled(void)
|
||||
return false;
|
||||
}
|
||||
|
||||
int64_t replay_save_clock(unsigned int kind, int64_t clock, int64_t raw_icount)
|
||||
int64_t replay_save_clock(ReplayClockKind kind,
|
||||
int64_t clock, int64_t raw_icount)
|
||||
{
|
||||
abort();
|
||||
return 0;
|
||||
}
|
||||
|
||||
int64_t replay_read_clock(unsigned int kind, int64_t raw_icount)
|
||||
int64_t replay_read_clock(ReplayClockKind kind, int64_t raw_icount)
|
||||
{
|
||||
abort();
|
||||
return 0;
|
||||
@ -48,11 +49,11 @@ void replay_mutex_unlock(void)
|
||||
{
|
||||
}
|
||||
|
||||
void replay_register_char_driver(Chardev *chr)
|
||||
void replay_register_char_driver(struct Chardev *chr)
|
||||
{
|
||||
}
|
||||
|
||||
void replay_chr_be_write(Chardev *s, uint8_t *buf, int len)
|
||||
void replay_chr_be_write(struct Chardev *s, uint8_t *buf, int len)
|
||||
{
|
||||
abort();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user