diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2007-05-22 06:32:24 -0700 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2007-05-22 06:32:24 -0700 |
commit | 41dde5f6fdf195b8d51d70119737c5e3f7391f78 (patch) | |
tree | 4d25578e983f4240269afb24a326fc8b809b6e5b /src/cpu/memtest | |
parent | 9048c695a0ecde709a074259bad9ad1cda57a303 (diff) | |
download | gem5-41dde5f6fdf195b8d51d70119737c5e3f7391f78.tar.xz |
memtest.hh:
Fix description string.
Minor whitespace cleanup.
src/cpu/memtest/memtest.hh:
Fix description string.
Minor whitespace cleanup.
--HG--
extra : convert_revision : 0c7213d088da46de9713ca6beabc30523ccb1c8c
Diffstat (limited to 'src/cpu/memtest')
-rw-r--r-- | src/cpu/memtest/memtest.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/memtest/memtest.hh b/src/cpu/memtest/memtest.hh index 264309fd7..84e16b98a 100644 --- a/src/cpu/memtest/memtest.hh +++ b/src/cpu/memtest/memtest.hh @@ -85,13 +85,13 @@ class MemTest : public MemObject TickEvent(MemTest *c) : Event(&mainEventQueue, CPU_Tick_Pri), cpu(c) {} void process() {cpu->tick();} - virtual const char *description() { return "tick event"; } + virtual const char *description() { return "MemTest tick"; } }; TickEvent tickEvent; + class CpuPort : public Port { - MemTest *memtest; public: |