From: Andreas Hansson Date: Wed, 23 Apr 2014 09:18:27 +0000 (-0400) Subject: sim: Use correct unit for abort message X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6cd82c111672de6a720b8080d442a5d9f57c172c;p=gem5.git sim: Use correct unit for abort message This patch fixes the unit in the abort printout. --- 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