diff options
author | Steve Reinhardt <steve.reinhardt@amd.com> | 2011-01-07 21:50:29 -0800 |
---|---|---|
committer | Steve Reinhardt <steve.reinhardt@amd.com> | 2011-01-07 21:50:29 -0800 |
commit | 6f1187943cf78c2fd0334bd7e4372ae79a587fa4 (patch) | |
tree | 8d0eac2e2f4d55d48245266d3930ad4e7f92030f /src/python/swig | |
parent | c22be9f2f016872b05d65c82055ddc936b4aa075 (diff) | |
download | gem5-6f1187943cf78c2fd0334bd7e4372ae79a587fa4.tar.xz |
Replace curTick global variable with accessor functions.
This step makes it easy to replace the accessor functions
(which still access a global variable) with ones that access
per-thread curTick values.
Diffstat (limited to 'src/python/swig')
-rw-r--r-- | src/python/swig/core.i | 3 | ||||
-rw-r--r-- | src/python/swig/stats.i | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/python/swig/core.i b/src/python/swig/core.i index 7201b03d8..b8f70039d 100644 --- a/src/python/swig/core.i +++ b/src/python/swig/core.i @@ -73,8 +73,7 @@ const bool flag_TRACING_ON; void setClockFrequency(Tick ticksPerSecond); -%immutable curTick; -Tick curTick; +Tick curTick(); class Checkpoint; diff --git a/src/python/swig/stats.i b/src/python/swig/stats.i index 67ce72173..1f1130937 100644 --- a/src/python/swig/stats.i +++ b/src/python/swig/stats.i @@ -37,6 +37,7 @@ #include "base/statistics.hh" #include "base/stats/mysql.hh" #include "base/stats/text.hh" +#include "sim/core.hh" #include "sim/stat_control.hh" %} @@ -51,7 +52,7 @@ void initMySQL(std::string host, std::string database, std::string user, std::string sample); void schedStatEvent(bool dump, bool reset, - Tick when = curTick, Tick repeat = 0); + Tick when = curTick(), Tick repeat = 0); void enable(); void prepare(); |