2015-09-17 16:23:37 +00:00
|
|
|
/*
|
|
|
|
* replay.c
|
|
|
|
*
|
|
|
|
* Copyright (c) 2010-2015 Institute for System Programming
|
|
|
|
* of the Russian Academy of Sciences.
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-01-29 17:49:52 +00:00
|
|
|
#include "qemu/osdep.h"
|
2015-09-17 16:23:37 +00:00
|
|
|
#include "sysemu/replay.h"
|
2015-09-17 16:24:16 +00:00
|
|
|
|
|
|
|
bool replay_exception(void)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool replay_has_exception(void)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool replay_interrupt(void)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool replay_has_interrupt(void)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|