SimCon interface update: save returns a boolean, now (+ redundant virtual keywords removed).
git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1724 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
This commit is contained in:
@ -10,7 +10,7 @@
|
||||
|
||||
namespace fail {
|
||||
|
||||
void Gem5Controller::save(const std::string &path)
|
||||
bool Gem5Controller::save(const std::string &path)
|
||||
{
|
||||
// Takes a snapshot in the m5out dir
|
||||
Tick when = curTick() + 1;
|
||||
@ -22,6 +22,7 @@ void Gem5Controller::save(const std::string &path)
|
||||
std::ofstream file(path.c_str());
|
||||
root->serialize(file);
|
||||
file.close();*/
|
||||
return false; // TODO
|
||||
}
|
||||
|
||||
void Gem5Controller::restore(const std::string &path)
|
||||
|
||||
Reference in New Issue
Block a user