diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2014-03-23 11:11:32 -0400 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2014-03-23 11:11:32 -0400 |
commit | 5093e58dc2576c93275c22058d1dd52abcda6467 (patch) | |
tree | 52f94fc1eef9e48df1c918c347361125bee72517 /src | |
parent | 83d09ee2159724b0fe44ffcb7ed1c9c80b98e2ed (diff) | |
download | gem5-5093e58dc2576c93275c22058d1dd52abcda6467.tar.xz |
base: Fix error message time unit (cycle -> tick)
This patch fixes the unit used in all error messages.
Diffstat (limited to 'src')
-rw-r--r-- | src/base/misc.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/misc.cc b/src/base/misc.cc index 97c56c8a0..1a8b8ff1e 100644 --- a/src/base/misc.cc +++ b/src/base/misc.cc @@ -69,7 +69,7 @@ __exit_message(const char *prefix, int code, format += "\n"; } - format += " @ cycle %d\n[%s:%s, line %d]\n"; + format += " @ tick %d\n[%s:%s, line %d]\n"; format += "Memory Usage: %ld KBytes\n"; args.push_back(curTick()); |