diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2005-11-02 14:44:42 -0500 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2005-11-02 14:44:42 -0500 |
commit | 15ccd16fd8fab2d66224f840307be797ac3094bd (patch) | |
tree | 06fe0104eab53eaaea4cd5c28b63ed077f33e168 /python/m5/objects | |
parent | 2ab0bf8030e0694e0ecf7a6a5ae6a4c7ce6fd2e3 (diff) | |
download | gem5-15ccd16fd8fab2d66224f840307be797ac3094bd.tar.xz |
Add Mem/Ethernet latency variability parameter
python/m5/objects/Ethernet.py:
Add Latency Variability Parameter
--HG--
extra : convert_revision : db5431cccffea8c7247d0f72e4770d4d58bd25aa
Diffstat (limited to 'python/m5/objects')
-rw-r--r-- | python/m5/objects/Ethernet.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/m5/objects/Ethernet.py b/python/m5/objects/Ethernet.py index c2f818325..3ad6b57f9 100644 --- a/python/m5/objects/Ethernet.py +++ b/python/m5/objects/Ethernet.py @@ -12,6 +12,7 @@ class EtherLink(SimObject): int1 = Param.EtherInt("interface 1") int2 = Param.EtherInt("interface 2") delay = Param.Latency('0us', "packet transmit delay") + delay_var = Param.Latency('0ns', "packet transmit delay variability") speed = Param.NetworkBandwidth('1Gbps', "link speed") dump = Param.EtherDump(NULL, "dump object") |