56a57
> #include "mem/ruby/system/System.hh"
70c71
< if (RANDOMIZATION) {
---
> if (RubySystem::getRandomization()) {
113a115
> /*
118c120,121
<
---
> */
> /*
121c124
< return RubyConfig::numberOfL1CachePerChip();
---
> return RubyConfig::getNumberOfCachesPerLevelPerChip(1,0);
122a126
> */
152c156
< if (RANDOMIZATION) { // when randomizing delayed
---
> if (RubySystem::getRandomization()) { // when randomizing delayed
170c174
<
---
> /*
173c177
< return g_FILTERING_ENABLED;
---
> return RubyConfig::getFilteringEnabled();
175a180
>
178c183
< return g_RETRY_THRESHOLD;
---
> return RubyConfig::getRetryThreshold();
183c188
< return g_FIXED_TIMEOUT_LATENCY;
---
> return RubyConfig::getFixedTimeoutLatency();
189c194
< return g_PROCS_PER_CHIP + 1;
---
> return RubyConfig::getProcsPerChip() + 1;
195c200
< return g_DISTRIBUTED_PERSISTENT_ENABLED;
---
> return RubyConfig::getDistributedPersistentEnabled();
200c205
< return g_DYNAMIC_TIMEOUT_ENABLED;
---
> return RubyConfig::getDynamicTimeoutEnabled();
202c207
<
---
> */