diff options
author | Korey Sewell <ksewell@umich.edu> | 2011-05-05 02:20:31 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2011-05-05 02:20:31 -0400 |
commit | a0415f2b24d1c3bcf49775dee302eb0b16f27106 (patch) | |
tree | 17fe10686f7c443bd4e3d0a83d0ae3fad3701dd7 /src/mem/ruby/system/AbstractMemOrCache.hh | |
parent | fea2c26402894aa26de7b7d8e14fe71070b76296 (diff) | |
download | gem5-a0415f2b24d1c3bcf49775dee302eb0b16f27106.tar.xz |
ruby: use RubyMemory flag & remove setDebug() functionality
The RubyMemory flag wasnt used in the code, creating large gaps in trace output. Replace cprintfs w/dprintfs
using RubyMemory in memory controller. DPRINTF also deprecate the usage of the setDebug() pure virtual
function in the AbstractMemoryOrCache Class as well the m_debug/cprintf functions in MemoryControl.hh/cc
Diffstat (limited to 'src/mem/ruby/system/AbstractMemOrCache.hh')
-rw-r--r-- | src/mem/ruby/system/AbstractMemOrCache.hh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mem/ruby/system/AbstractMemOrCache.hh b/src/mem/ruby/system/AbstractMemOrCache.hh index 28b446ef8..88f9f4d87 100644 --- a/src/mem/ruby/system/AbstractMemOrCache.hh +++ b/src/mem/ruby/system/AbstractMemOrCache.hh @@ -53,7 +53,6 @@ class AbstractMemOrCache virtual bool areNSlotsAvailable (int n) = 0; virtual void printConfig (std::ostream& out) = 0; virtual void print (std::ostream& out) const = 0; - virtual void setDebug (int debugFlag) = 0; }; #endif // __MEM_RUBY_SYSTEM_ABSTRACTMEMORCACHE_HH__ |