diff options
author | Kevin Lim <ktlim@umich.edu> | 2006-10-02 18:10:10 -0400 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2006-10-02 18:10:10 -0400 |
commit | c78b6634a2f5997c142d51305cbdd75e056c5f03 (patch) | |
tree | 607aefc4bf6b5c017c78e71f447b254e746f1dae /src/python/m5/objects | |
parent | 85436fd413dab36fca904e6ffdcd5a098e5f0544 (diff) | |
download | gem5-c78b6634a2f5997c142d51305cbdd75e056c5f03.tar.xz |
Be sure to set progress interval.
--HG--
extra : convert_revision : 793ca7d6af1deedf6b1fb4676288b11114f583a6
Diffstat (limited to 'src/python/m5/objects')
-rw-r--r-- | src/python/m5/objects/BaseCPU.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/python/m5/objects/BaseCPU.py b/src/python/m5/objects/BaseCPU.py index 3dd0bda01..0b887cceb 100644 --- a/src/python/m5/objects/BaseCPU.py +++ b/src/python/m5/objects/BaseCPU.py @@ -26,6 +26,7 @@ class BaseCPU(SimObject): "terminate when all threads have reached this load count") max_loads_any_thread = Param.Counter(0, "terminate when any thread reaches this load count") + progress_interval = Param.Tick(0, "interval to print out the progress message") defer_registration = Param.Bool(False, "defer registration with system (for sampling)") |