summaryrefslogtreecommitdiff
path: root/cpu/memtest
diff options
context:
space:
mode:
authorSteve Reinhardt <stever@eecs.umich.edu>2003-12-11 08:46:21 -0800
committerSteve Reinhardt <stever@eecs.umich.edu>2003-12-11 08:46:21 -0800
commit1cb71599664c9d18e91cbfb596a10c0d134baa91 (patch)
tree627e0c64dd41fd06f271ce1ccee7a4a2ea8bff98 /cpu/memtest
parent45d0a46080e6b5bdbed427b94dce82a397e01b0e (diff)
downloadgem5-1cb71599664c9d18e91cbfb596a10c0d134baa91.tar.xz
Make memtest compile again.
cpu/memtest/memtest.hh: Oops... make memtest compile with new event priorities too. --HG-- extra : convert_revision : 8143f2e078bb785991d351803fc3a6a50aa31ae5
Diffstat (limited to 'cpu/memtest')
-rw-r--r--cpu/memtest/memtest.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/memtest/memtest.hh b/cpu/memtest/memtest.hh
index bda807d11..3e7dff968 100644
--- 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"; }
};