diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2014-04-23 05:18:27 -0400 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2014-04-23 05:18:27 -0400 |
commit | 6cd82c111672de6a720b8080d442a5d9f57c172c (patch) | |
tree | a5301a809b3543ebfeb0d5a72cc68dfde765e68e | |
parent | bf25c53a7d2e34319a8f845045c83ef7a74068a7 (diff) | |
download | gem5-6cd82c111672de6a720b8080d442a5d9f57c172c.tar.xz |
sim: Use correct unit for abort message
This patch fixes the unit in the abort printout.
-rw-r--r-- | src/sim/init.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sim/init.cc b/src/sim/init.cc index 63af2dd88..042448e41 100644 --- a/src/sim/init.cc +++ b/src/sim/init.cc @@ -93,7 +93,7 @@ exitNowHandler(int sigtype) void abortHandler(int sigtype) { - ccprintf(cerr, "Program aborted at cycle %d\n", curTick()); + ccprintf(cerr, "Program aborted at tick %d\n", curTick()); } // Handle SIGIO |