diff options
Diffstat (limited to 'src/mem/tport.hh')
-rw-r--r-- | src/mem/tport.hh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mem/tport.hh b/src/mem/tport.hh index db5a074fb..1f08d1a91 100644 --- a/src/mem/tport.hh +++ b/src/mem/tport.hh @@ -73,6 +73,14 @@ class SimpleTimingPort : public QueuedSlavePort virtual Tick recvAtomic(PacketPtr pkt) = 0; + /** + * @todo this is a temporary workaround until the 4-phase code is committed. + * upstream caches need this packet until true is returned, so hold it for + * deletion until a subsequent call + */ + std::vector<PacketPtr> pendingDelete; + + public: /** |