diff options
author | Nathan Binkert <nate@binkert.org> | 2010-03-12 17:31:08 -0800 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2010-03-12 17:31:08 -0800 |
commit | c8f296bca08a34947cf020046964a888b66acbb5 (patch) | |
tree | d7f732e236391d64d2ec89f2fe7e8707c91e8fa1 /src/mem/packet.hh | |
parent | 671faf33168595590b123d96d0a7223c5c053310 (diff) | |
download | gem5-c8f296bca08a34947cf020046964a888b66acbb5.tar.xz |
packet: add a method to set the size
Diffstat (limited to 'src/mem/packet.hh')
-rw-r--r-- | src/mem/packet.hh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mem/packet.hh b/src/mem/packet.hh index c58862270..e7a5335a8 100644 --- a/src/mem/packet.hh +++ b/src/mem/packet.hh @@ -590,6 +590,15 @@ class Packet : public FastAlloc, public Printable setDest(Broadcast); } + void + setSize(unsigned size) + { + assert(!flags.isSet(VALID_SIZE)); + + this->size = size; + flags.set(VALID_SIZE); + } + /** * Set the data pointer to the following value that should not be |