From: Steve Reinhardt Date: Thu, 11 Dec 2003 16:46:21 +0000 (-0800) Subject: Make memtest compile again. X-Git-Tag: m5_1.0_beta2~235 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1cb71599664c9d18e91cbfb596a10c0d134baa91;p=gem5.git Make memtest compile again. cpu/memtest/memtest.hh: Oops... make memtest compile with new event priorities too. --HG-- extra : convert_revision : 8143f2e078bb785991d351803fc3a6a50aa31ae5 --- 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"; } };