diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-10-10 15:04:55 -0400 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-10-10 15:04:55 -0400 |
commit | 3a9eb598c3e71b543ba9b8fda42b76c89a645634 (patch) | |
tree | a7029e95e7ce0d406c1efee0fcaf4062410fe1f3 /src/mem/packet.hh | |
parent | 72bf1c011eb6e708cd6db9607242b7af3034b521 (diff) | |
parent | 5582e60966822fd33cf1c48abef95e4dab14235c (diff) | |
download | gem5-3a9eb598c3e71b543ba9b8fda42b76c89a645634.tar.xz |
Merge zizzer.eecs.umich.edu:/bk/newmem
into zeep.eecs.umich.edu:/home/gblack/m5/newmem_bus
--HG--
extra : convert_revision : 6027c395af044858465eafd3ea78bcfe4c923bcc
Diffstat (limited to 'src/mem/packet.hh')
-rw-r--r-- | src/mem/packet.hh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mem/packet.hh b/src/mem/packet.hh index 7ec061710..3a7286a69 100644 --- a/src/mem/packet.hh +++ b/src/mem/packet.hh @@ -92,7 +92,6 @@ class Packet * be called on it rather than simply delete.*/ bool arrayData; - /** The address of the request. This address could be virtual or * physical, depending on the system configuration. */ Addr addr; @@ -124,6 +123,12 @@ class Packet /** Used to calculate latencies for each packet.*/ Tick time; + /** The time at which the packet will be fully transmitted */ + Tick finishTime; + + /** The time at which the first chunk of the packet will be transmitted */ + Tick firstWordTime; + /** The special destination address indicating that the packet * should be routed based on its address. */ static const short Broadcast = -1; |