diff options
Diffstat (limited to 'src/mem/CommMonitor.py')
-rw-r--r-- | src/mem/CommMonitor.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mem/CommMonitor.py b/src/mem/CommMonitor.py index 3f9106cc4..4e8cfe270 100644 --- a/src/mem/CommMonitor.py +++ b/src/mem/CommMonitor.py @@ -37,7 +37,9 @@ # Andreas Hansson from m5.params import * +from m5.proxy import * from MemObject import MemObject +from System import System # The communication monitor will most typically be used in combination # with periodic dumping and resetting of stats using schedStatEvent @@ -45,6 +47,8 @@ class CommMonitor(MemObject): type = 'CommMonitor' cxx_header = "mem/comm_monitor.hh" + system = Param.System(Parent.any, "System that the monitor belongs to.") + # one port in each direction master = MasterPort("Master port") slave = SlavePort("Slave port") |