summaryrefslogtreecommitdiff
path: root/src/mem/AbstractMemory.py
diff options
context:
space:
mode:
authorAndreas Hansson <andreas.hansson@arm.com>2012-09-19 06:15:46 -0400
committerAndreas Hansson <andreas.hansson@arm.com>2012-09-19 06:15:46 -0400
commita731f8f9dd62c80e4c927789afeb3a2efae4d64c (patch)
tree2b94d9e05d0ce0dd24322f8f83654c596c6fbebb /src/mem/AbstractMemory.py
parentffb6aec603c38e16ae91ea975c16fc3e8fb337e5 (diff)
downloadgem5-a731f8f9dd62c80e4c927789afeb3a2efae4d64c.tar.xz
Mem: Remove the file parameter from AbstractMemory
This patch removes the unused file parameter from the AbstractMemory. The patch serves to make it easier to transition to a separation of the actual contigious host memory backing store, and the gem5 memory controllers. Without the file parameter it becomes easier to hide the creation of the mmap in the PhysicalMemory, as there are no longer any reasons to expose the actual contigious ranges to the user. To the best of my knowledge there is no use of the parameter, so the change should not affect anyone.
Diffstat (limited to 'src/mem/AbstractMemory.py')
-rw-r--r--src/mem/AbstractMemory.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mem/AbstractMemory.py b/src/mem/AbstractMemory.py
index bf1621f4d..ce3f04c49 100644
--- a/src/mem/AbstractMemory.py
+++ b/src/mem/AbstractMemory.py
@@ -46,7 +46,6 @@ class AbstractMemory(MemObject):
type = 'AbstractMemory'
abstract = True
range = Param.AddrRange(AddrRange('128MB'), "Address range")
- file = Param.String('', "Memory-mapped file")
null = Param.Bool(False, "Do not store data, always return zero")
zero = Param.Bool(False, "Initialize memory with zeros")