summaryrefslogtreecommitdiff
path: root/mem/packet.hh
diff options
context:
space:
mode:
Diffstat (limited to 'mem/packet.hh')
-rw-r--r--mem/packet.hh6
1 files changed, 6 insertions, 0 deletions
diff --git a/mem/packet.hh b/mem/packet.hh
index 91e56385d..843d34ac0 100644
--- a/mem/packet.hh
+++ b/mem/packet.hh
@@ -128,6 +128,12 @@ struct Packet
/** Accessor function that returns the destination index of
the packet. */
short getDest() const { return dest; }
+
+ Packet()
+ : result(Unknown)
+ {}
+
+ void reset() { result = Unknown; }
};
#endif //__MEM_PACKET_HH