diff options
author | Andrew Schultz <alschult@umich.edu> | 2003-10-31 22:09:18 -0500 |
---|---|---|
committer | Andrew Schultz <alschult@umich.edu> | 2003-10-31 22:09:18 -0500 |
commit | 59eeb1bb52aeec8c3c406d25598ae729ceb4e6bb (patch) | |
tree | 657cda9cf38d6040ee894a56236449e5dff22a04 /sim/eventq.hh | |
parent | 518654dce41c0348f383a069b627931953fe2634 (diff) | |
download | gem5-59eeb1bb52aeec8c3c406d25598ae729ceb4e6bb.tar.xz |
eventq.cc, eventq.hh:
Cleaned up serialization
sim/eventq.hh:
sim/eventq.cc:
Cleaned up serialization
--HG--
extra : convert_revision : b75696d75f1aee16ebca2076fdd3cd4913593762
Diffstat (limited to 'sim/eventq.hh')
-rw-r--r-- | sim/eventq.hh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sim/eventq.hh b/sim/eventq.hh index ddf4c3198..475c4face 100644 --- a/sim/eventq.hh +++ b/sim/eventq.hh @@ -97,8 +97,6 @@ class Event : public Serializeable, public FastAlloc public: - static const std::string defaultName; - /* * Event constructor * @param queue that the event gets scheduled on @@ -115,7 +113,7 @@ class Event : public Serializeable, public FastAlloc ~Event() {} virtual std::string name() const { - return csprintf("%s_%x", defaultName, (uintptr_t)this); + return csprintf("Event_%x", (uintptr_t)this); } /// Determine if the current event is scheduled |