diff options
author | Daniel Sanchez <sanchezd@stanford.edu> | 2009-05-11 10:38:44 -0700 |
---|---|---|
committer | Daniel Sanchez <sanchezd@stanford.edu> | 2009-05-11 10:38:44 -0700 |
commit | ab5e4a22b3893fb0ccdfbf466d46983caeb5948e (patch) | |
tree | 58681979392d2f395da7c284c2f42113939396ee /src/mem/ruby/slicc_interface | |
parent | 84a18e7fdc6106a04188254f940a0e987efe750c (diff) | |
download | gem5-ab5e4a22b3893fb0ccdfbf466d46983caeb5948e.tar.xz |
ruby: Removed System name clash by renaming ruby's System to RubySystem
Diffstat (limited to 'src/mem/ruby/slicc_interface')
-rw-r--r-- | src/mem/ruby/slicc_interface/AbstractChip.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/ruby/slicc_interface/AbstractChip.hh b/src/mem/ruby/slicc_interface/AbstractChip.hh index 9d113a1e1..05039d09d 100644 --- a/src/mem/ruby/slicc_interface/AbstractChip.hh +++ b/src/mem/ruby/slicc_interface/AbstractChip.hh @@ -69,7 +69,7 @@ public: TransactionInterfaceManager* getTransactionInterfaceManager(int index) const { return m_L1Cache_xact_mgr_vec[index]; }; void setTransactionInterfaceManager(TransactionInterfaceManager* manager, int index) { m_L1Cache_xact_mgr_vec[index] = manager; } - // used when CHECK_COHERENCE is enabled. See System::checkGlobalCoherence() + // used when CHECK_COHERENCE is enabled. See RubySystem::checkGlobalCoherence() virtual bool isBlockExclusive(const Address& addr) const { return false; } virtual bool isBlockShared(const Address& addr) const { return false; } |