diff options
Diffstat (limited to 'src/mem/ruby/system')
-rw-r--r-- | src/mem/ruby/system/System.cc | 3 | ||||
-rw-r--r-- | src/mem/ruby/system/System.hh | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/mem/ruby/system/System.cc b/src/mem/ruby/system/System.cc index 4fb6bbde1..1f209f785 100644 --- a/src/mem/ruby/system/System.cc +++ b/src/mem/ruby/system/System.cc @@ -140,11 +140,9 @@ RubySystem::printStats(ostream& out) tm *localTime = localtime(&T); char buf[100]; strftime(buf, 100, "%b/%d/%Y %H:%M:%S", localTime); - out << "Real time: " << buf << endl; m_profiler_ptr->printStats(out); - m_network_ptr->printStats(out); } void @@ -410,7 +408,6 @@ void RubySystem::resetStats() { m_profiler_ptr->clearStats(); - m_network_ptr->clearStats(); for (uint32_t cntrl = 0; cntrl < m_abs_cntrl_vec.size(); cntrl++) { m_abs_cntrl_vec[cntrl]->clearStats(); } diff --git a/src/mem/ruby/system/System.hh b/src/mem/ruby/system/System.hh index ea55a23e0..474741bf7 100644 --- a/src/mem/ruby/system/System.hh +++ b/src/mem/ruby/system/System.hh @@ -104,9 +104,6 @@ class RubySystem : public ClockedObject void printStats(std::ostream& out); void resetStats(); - - uint64 getInstructionCount(int thread) { return 1; } - void print(std::ostream& out) const; void serialize(std::ostream &os); |