projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d2ba924
)
ARM: SE needs a definition for PageTable::serialize/unserialize
author
Ali Saidi
<Ali.Saidi@ARM.com>
Wed, 2 Jun 2010 17:58:16 +0000
(12:58 -0500)
committer
Ali Saidi
<Ali.Saidi@ARM.com>
Wed, 2 Jun 2010 17:58:16 +0000
(12:58 -0500)
src/arch/arm/pagetable.hh
patch
|
blob
|
history
diff --git
a/src/arch/arm/pagetable.hh
b/src/arch/arm/pagetable.hh
index 16f2c28816b27f29aaba43c225a3fe7ef081075b..3d4943f9989375504075d9b84690f0e4d5c07d60 100644
(file)
--- a/
src/arch/arm/pagetable.hh
+++ b/
src/arch/arm/pagetable.hh
@@
-106,8
+106,9
@@
struct TlbEntry
return ppn << PageShift;
}
- void serialize(std::ostream &os);
- void unserialize(Checkpoint *cp, const std::string §ion);
+ void serialize(std::ostream &os) { panic("Need to Implement\n"); }
+ void unserialize(Checkpoint *cp, const std::string §ion)
+ { panic("Need to Implement\n");}
};