diff options
author | Steve Reinhardt <stever@gmail.com> | 2008-03-24 01:08:02 -0400 |
---|---|---|
committer | Steve Reinhardt <stever@gmail.com> | 2008-03-24 01:08:02 -0400 |
commit | 93ab43288a75061746701c9d22a355793f330a9c (patch) | |
tree | a5ea6a953da81990b90562739b952ee9d4b0c026 /src/mem/packet.hh | |
parent | 627592c2f2a9d2774df50b2b5039efcb71432bc7 (diff) | |
download | gem5-93ab43288a75061746701c9d22a355793f330a9c.tar.xz |
Don't FastAlloc MSHRs since we don't allocate them on the fly.
--HG--
extra : convert_revision : 02775cfb460afe6df0df0938c62cccd93a71e775
Diffstat (limited to 'src/mem/packet.hh')
-rw-r--r-- | src/mem/packet.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/packet.hh b/src/mem/packet.hh index 05442b369..7aad9de98 100644 --- a/src/mem/packet.hh +++ b/src/mem/packet.hh @@ -295,7 +295,7 @@ class Packet : public FastAlloc, public Printable * needed to process it. A specific subclass would be derived * from this to carry state specific to a particular sending * device. */ - class SenderState : public FastAlloc { + class SenderState { public: virtual ~SenderState() {} }; @@ -304,7 +304,7 @@ class Packet : public FastAlloc, public Printable * Object used to maintain state of a PrintReq. The senderState * field of a PrintReq should always be of this type. */ - class PrintReqState : public SenderState { + class PrintReqState : public SenderState, public FastAlloc { /** An entry in the label stack. */ class LabelStackEntry { public: |