summaryrefslogtreecommitdiff
path: root/src/mem/physical.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2006-11-22 23:09:27 -0500
committerGabe Black <gblack@eecs.umich.edu>2006-11-22 23:09:27 -0500
commitf85082e0a00ff7ba9caf79a58f41c6c4e351cd9d (patch)
treeb6070e39d2895d4db80413344492f07904359982 /src/mem/physical.hh
parent0a99750ebfe9a9b400ee5f0610ed429851345c4b (diff)
downloadgem5-f85082e0a00ff7ba9caf79a58f41c6c4e351cd9d.tar.xz
Added a parameter to set memory to zero. This is to support Legion, and once we can make our own hypervisor binary, we probably won't need it.
--HG-- extra : convert_revision : 168883e4a5d3760962cd9759a6f41c66f5a6402a
Diffstat (limited to 'src/mem/physical.hh')
-rw-r--r--src/mem/physical.hh1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mem/physical.hh b/src/mem/physical.hh
index 045e61612..af88bcaa0 100644
--- a/src/mem/physical.hh
+++ b/src/mem/physical.hh
@@ -154,6 +154,7 @@ class PhysicalMemory : public MemObject
std::string name;
Range<Addr> addrRange;
Tick latency;
+ bool zero;
};
protected: