Deleted Added
sdiff udiff text old ( 9398:6a348f61220c ) new ( 10129:eb34ae5204b8 )
full compact
1# Copyright (c) 2012 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 23 unchanged lines hidden (view full) ---

32# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
34# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35#
36# Authors: Thomas Grass
37# Andreas Hansson
38
39from m5.params import *
40from MemObject import MemObject
41
42# The communication monitor will most typically be used in combination
43# with periodic dumping and resetting of stats using schedStatEvent
44class CommMonitor(MemObject):
45 type = 'CommMonitor'
46 cxx_header = "mem/comm_monitor.hh"
47
48 # one port in each direction
49 master = MasterPort("Master port")
50 slave = SlavePort("Slave port")
51
52 # packet trace output file, disabled by default
53 trace_file = Param.String("", "Packet trace output file")
54
55 # control the sample period window length of this monitor

--- 46 unchanged lines hidden ---