summaryrefslogtreecommitdiff
path: root/src/sim/host.hh
diff options
context:
space:
mode:
authorLisa Hsu <hsul@eecs.umich.edu>2006-11-08 15:05:23 -0500
committerLisa Hsu <hsul@eecs.umich.edu>2006-11-08 15:05:23 -0500
commit64c0d82dec8ae042d41b6dbaa17a40095bb09091 (patch)
tree20a6c1aa0766d392783b402aff6949c84943d451 /src/sim/host.hh
parent5a46f336a1b98d1ddeed40bcb24e285394760bf3 (diff)
downloadgem5-64c0d82dec8ae042d41b6dbaa17a40095bb09091.tar.xz
simplify maxtick parsing in both the python and the c++.
configs/common/Simulation.py: simplify maxtick code a little bit - instead of checking for -1, just set it at MaxTick. src/python/m5/__init__.py: make a new m5 param called MaxTick. src/sim/host.hh: fix the M5 def. of MaxTick src/sim/main.cc: Simplify the MaxTick/num_cycles parsing within main.cc --HG-- extra : convert_revision : f800addfbc1323591c2e05b892276b439b671668
Diffstat (limited to 'src/sim/host.hh')
-rw-r--r--src/sim/host.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sim/host.hh b/src/sim/host.hh
index 9c79580b1..a2faa206b 100644
--- a/src/sim/host.hh
+++ b/src/sim/host.hh
@@ -56,7 +56,7 @@ typedef int64_t Counter;
*/
typedef int64_t Tick;
-const Tick MaxTick = (1LL << 62);
+const Tick MaxTick = (1LL << 63) - 1;
/**
* Address type