From 33c904e0a560be8c5f9aedaba9940ad0df52d81c Mon Sep 17 00:00:00 2001 From: Nilay Vaish Date: Tue, 18 Sep 2012 22:49:12 -0500 Subject: ruby: eliminate typedef integer_t --- src/mem/ruby/profiler/Profiler.hh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/mem/ruby/profiler/Profiler.hh') 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 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 > m_busyControllerCount; - integer_t m_busyBankCount; + std::vector > m_busyControllerCount; + int64_t m_busyBankCount; Histogram m_multicast_retry_histogram; Histogram m_filter_action_histogram; -- cgit v1.2.3