summaryrefslogtreecommitdiff
path: root/src/python/m5/trace.py
diff options
context:
space:
mode:
authorNathan Binkert <nate@binkert.org>2009-02-18 10:00:15 -0800
committerNathan Binkert <nate@binkert.org>2009-02-18 10:00:15 -0800
commitc41c9cf3a68bbda47b2304daeb145555dd63e5d3 (patch)
tree686b43d2d78839fea881b47352d60f7cd2977988 /src/python/m5/trace.py
parent6cfff91d43885f60cbe30a7b237c69fcc85e31a2 (diff)
downloadgem5-c41c9cf3a68bbda47b2304daeb145555dd63e5d3.tar.xz
events: Make trace events happen at the right priority.
Also, while we're at it, remember that priorities are in the Event class and add a disable method to disable tracing.
Diffstat (limited to 'src/python/m5/trace.py')
-rw-r--r--src/python/m5/trace.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/python/m5/trace.py b/src/python/m5/trace.py
index 14bab77a3..17aa6196c 100644
--- a/src/python/m5/trace.py
+++ b/src/python/m5/trace.py
@@ -32,6 +32,9 @@ import util
from internal.trace import clear, output, set, ignore
+def disable():
+ internal.trace.cvar.enabled = False
+
def enable():
internal.trace.cvar.enabled = True