projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
45d0a46
)
Make memtest compile again.
author
Steve Reinhardt
<stever@eecs.umich.edu>
Thu, 11 Dec 2003 16:46:21 +0000
(08:46 -0800)
committer
Steve Reinhardt
<stever@eecs.umich.edu>
Thu, 11 Dec 2003 16:46:21 +0000
(08:46 -0800)
cpu/memtest/memtest.hh:
Oops... make memtest compile with new event priorities too.
--HG--
extra : convert_revision :
8143f2e078bb785991d351803fc3a6a50aa31ae5
cpu/memtest/memtest.hh
patch
|
blob
|
history
diff --git
a/cpu/memtest/memtest.hh
b/cpu/memtest/memtest.hh
index bda807d11708c918b7272c58b398f6308f8cbcc4..3e7dff9682aeb04462d40ebfdaf3d63ea4db62e1 100644
(file)
--- a/
cpu/memtest/memtest.hh
+++ b/
cpu/memtest/memtest.hh
@@
-66,7
+66,7
@@
class MemTest : public BaseCPU
MemTest *cpu;
public:
TickEvent(MemTest *c)
- : Event(&mainEventQueue,
100
), cpu(c) {}
+ : Event(&mainEventQueue,
CPU_Tick_Pri
), cpu(c) {}
void process() {cpu->tick();}
virtual const char *description() { return "tick event"; }
};