diff options
Diffstat (limited to 'src/mem/dramsim2.hh')
-rw-r--r-- | src/mem/dramsim2.hh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mem/dramsim2.hh b/src/mem/dramsim2.hh index e57479247..5cde19cd8 100644 --- a/src/mem/dramsim2.hh +++ b/src/mem/dramsim2.hh @@ -160,11 +160,11 @@ class DRAMSim2 : public AbstractMemory */ EventWrapper<DRAMSim2, &DRAMSim2::tick> tickEvent; - /** @todo this is a temporary workaround until the 4-phase code is - * committed. upstream caches needs this packet until true is returned, so - * hold onto it for deletion until a subsequent call + /** + * Upstream caches need this packet until true is returned, so + * hold it for deletion until a subsequent call */ - std::vector<PacketPtr> pendingDelete; + std::unique_ptr<Packet> pendingDelete; public: |