Changes so that time in the packet is actually set properly.
src/mem/packet.hh:
Make sure packets set the time parameter correctly.
--HG--
extra : convert_revision : e381d2789e0aaa1b6c2fbde417b7ba5815deec61
This commit is contained in:
@@ -266,6 +266,7 @@ class Packet
|
||||
result(Unknown)
|
||||
{
|
||||
flags = 0;
|
||||
time = curTick;
|
||||
}
|
||||
|
||||
/** Alternate constructor if you are trying to create a packet with
|
||||
@@ -280,6 +281,7 @@ class Packet
|
||||
result(Unknown)
|
||||
{
|
||||
flags = 0;
|
||||
time = curTick;
|
||||
}
|
||||
|
||||
/** Destructor. */
|
||||
@@ -295,6 +297,7 @@ class Packet
|
||||
assert(req->validPaddr);
|
||||
addr = req->paddr;
|
||||
size = req->size;
|
||||
time = req->time;
|
||||
addrSizeValid = true;
|
||||
result = Unknown;
|
||||
if (dynamicData) {
|
||||
|
||||
Reference in New Issue
Block a user