diff options
author | Nathan Binkert <nate@binkert.org> | 2011-05-12 11:19:35 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2011-05-12 11:19:35 -0700 |
commit | 1177e7a3c861d77360074e97661952d427cd8640 (patch) | |
tree | fc15f17092933cb9591cfadb1da2728d40e776d1 /src/python/m5/simulate.py | |
parent | 35b0c1d3910595875de67a34f6b993047470fd55 (diff) | |
download | gem5-1177e7a3c861d77360074e97661952d427cd8640.tar.xz |
stats: move code that loops over all stats into python
Diffstat (limited to 'src/python/m5/simulate.py')
-rw-r--r-- | src/python/m5/simulate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/m5/simulate.py b/src/python/m5/simulate.py index 9a5dc836d..b4ccf82c1 100644 --- a/src/python/m5/simulate.py +++ b/src/python/m5/simulate.py @@ -131,7 +131,7 @@ def curTick(): return internal.core.curTick() # Python exit handlers happen in reverse order. We want to dump stats last. -atexit.register(internal.stats.dump) +atexit.register(stats.dump) # register our C++ exit callback function with Python atexit.register(internal.core.doExitCleanup) |