summaryrefslogtreecommitdiff
path: root/src/sim/host.hh
diff options
context:
space:
mode:
authorAli Saidi <saidi@eecs.umich.edu>2007-01-27 15:38:04 -0500
committerAli Saidi <saidi@eecs.umich.edu>2007-01-27 15:38:04 -0500
commit02bd40d552f6c3f56db43ea63f06ae4312a8e48a (patch)
treebeae214fccca9f8716d47b5992480090d04548a3 /src/sim/host.hh
parent5c7bf74c073d0aea808046d10dfcaa6c319217a3 (diff)
downloadgem5-02bd40d552f6c3f56db43ea63f06ae4312a8e48a.tar.xz
While I'm waiting for legion to run make m5 compile with a few more compilers
SConstruct: src/SConscript: Add flags for Intel CC while i'm at it src/base/compiler.hh: the _Pragma stuff needst to be called this way unless someone happens to have a cleaner way src/base/cprintf_formats.hh: add std:: where appropriate src/base/statistics.hh: use this->map since icc was getting confused about std::map vs the locally defined map src/cpu/static_inst.hh: Add some more dummy returns where needed src/mem/packet.hh: add more dummy returns where needed src/sim/host.hh: use limits to come up with max tick --HG-- extra : convert_revision : 08e9f7898b29fb9d063136529afb9b6abceab60c
Diffstat (limited to 'src/sim/host.hh')
-rw-r--r--src/sim/host.hh4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sim/host.hh b/src/sim/host.hh
index 8b1ddbfe7..93a5fe7f2 100644
--- a/src/sim/host.hh
+++ b/src/sim/host.hh
@@ -38,6 +38,8 @@
#define __HOST_HH__
#include <inttypes.h>
+#include <limits>
+
/** uint64_t constant */
#define ULL(N) ((uint64_t)N##ULL)
@@ -56,7 +58,7 @@ typedef int64_t Counter;
*/
typedef int64_t Tick;
-const Tick MaxTick = (1LL << 63) - 1;
+const Tick MaxTick = std::numeric_limits<Tick>::max();
/**
* Address type