summaryrefslogtreecommitdiff
path: root/src/mem/ruby/profiler/Profiler.hh
diff options
context:
space:
mode:
authorNilay Vaish <nilay@cs.wisc.edu>2012-09-18 22:49:12 -0500
committerNilay Vaish <nilay@cs.wisc.edu>2012-09-18 22:49:12 -0500
commit33c904e0a560be8c5f9aedaba9940ad0df52d81c (patch)
tree54aa24329761e607c750c4b8d6a39ad241159261 /src/mem/ruby/profiler/Profiler.hh
parent86b1c0fd540b57c1e7bba948ad0417f22f90eb41 (diff)
downloadgem5-33c904e0a560be8c5f9aedaba9940ad0df52d81c.tar.xz
ruby: eliminate typedef integer_t
Diffstat (limited to 'src/mem/ruby/profiler/Profiler.hh')
-rw-r--r--src/mem/ruby/profiler/Profiler.hh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mem/ruby/profiler/Profiler.hh b/src/mem/ruby/profiler/Profiler.hh
index 58043dfaf..c83c4e37a 100644
--- a/src/mem/ruby/profiler/Profiler.hh
+++ b/src/mem/ruby/profiler/Profiler.hh
@@ -79,7 +79,7 @@ class Profiler : public SimObject
void wakeup();
void setPeriodicStatsFile(const std::string& filename);
- void setPeriodicStatsInterval(integer_t period);
+ void setPeriodicStatsInterval(int64_t period);
void printStats(std::ostream& out, bool short_stats=false);
void printShortStats(std::ostream& out) { printStats(out, true); }
@@ -182,13 +182,13 @@ class Profiler : public SimObject
std::vector<int64> m_cycles_executed_at_start;
std::ostream* m_periodic_output_file_ptr;
- integer_t m_stats_period;
+ int64_t m_stats_period;
Time m_ruby_start;
time_t m_real_time_start_time;
- std::vector<std::vector<integer_t> > m_busyControllerCount;
- integer_t m_busyBankCount;
+ std::vector<std::vector<int64_t> > m_busyControllerCount;
+ int64_t m_busyBankCount;
Histogram m_multicast_retry_histogram;
Histogram m_filter_action_histogram;