diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2013-11-01 11:56:13 -0400 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2013-11-01 11:56:13 -0400 |
commit | c9a8b7b14744a4a3f0745483d3536f48fd29ca61 (patch) | |
tree | 8e0b66282c4cddad067e8213f5af3ba1c9f03b93 /src/python/m5/debug.py | |
parent | 3e6da89419e5d53dc8a0df446473a4f28808bc46 (diff) | |
download | gem5-c9a8b7b14744a4a3f0745483d3536f48fd29ca61.tar.xz |
sim: Clarify the difference between tracing and debugging
This patch changes the name the command-line options related to debug
output to all start with "debug" rather than being a mix of that and
"trace". It also makes it clear that the breakpoint time is specified
in ticks and not in cycles.
Diffstat (limited to 'src/python/m5/debug.py')
-rw-r--r-- | src/python/m5/debug.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/m5/debug.py b/src/python/m5/debug.py index 508bf2842..22b16aa5b 100644 --- a/src/python/m5/debug.py +++ b/src/python/m5/debug.py @@ -31,7 +31,7 @@ from UserDict import DictMixin import internal from internal.debug import SimpleFlag, CompoundFlag -from internal.debug import schedBreakCycle, setRemoteGDBPort +from internal.debug import schedBreak, setRemoteGDBPort from m5.util import printList def help(): |