ARM: SE needs a definition for PageTable::serialize/unserialize
This commit is contained in:
parent
d2ba9243f5
commit
1546d8208b
1 changed files with 3 additions and 2 deletions
|
@ -106,8 +106,9 @@ struct TlbEntry
|
||||||
return ppn << PageShift;
|
return ppn << PageShift;
|
||||||
}
|
}
|
||||||
|
|
||||||
void serialize(std::ostream &os);
|
void serialize(std::ostream &os) { panic("Need to Implement\n"); }
|
||||||
void unserialize(Checkpoint *cp, const std::string §ion);
|
void unserialize(Checkpoint *cp, const std::string §ion)
|
||||||
|
{ panic("Need to Implement\n");}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue