diff options
author | Nathan Binkert <nate@binkert.org> | 2009-05-26 09:23:13 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2009-05-26 09:23:13 -0700 |
commit | 47877cf2dbd6ee2f1cf9b2c609d37b0589e876ca (patch) | |
tree | 6beb00dfe7e31b9bf82f7aba4710b0c487b6543f /src/mem/ruby/system | |
parent | d93392df28fc6c9a5c70fb6252a12afdc72d9344 (diff) | |
download | gem5-47877cf2dbd6ee2f1cf9b2c609d37b0589e876ca.tar.xz |
types: add a type for thread IDs and try to use it everywhere
Diffstat (limited to 'src/mem/ruby/system')
-rw-r--r-- | src/mem/ruby/system/CacheMemory.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mem/ruby/system/CacheMemory.hh b/src/mem/ruby/system/CacheMemory.hh index a8306c06f..6908b9168 100644 --- a/src/mem/ruby/system/CacheMemory.hh +++ b/src/mem/ruby/system/CacheMemory.hh @@ -200,9 +200,9 @@ CacheMemory<ENTRY>::CacheMemory(AbstractChip* chip_ptr, int numSetBits, // cout << "Before setting trans address list size" << endl; //create a trans address for each SMT thread // m_trans_address_list.setSize(numThreads); -// for(int i=0; i < numThreads; ++i){ -// cout << "Setting list size for list " << i << endl; -// m_trans_address_list[i].setSize(30); +// for(ThreadID tid = 0; tid < numThreads; ++tid){ +// cout << "Setting list size for list " << tid << endl; +// m_trans_address_list[tid].setSize(30); // } //cout << "CacheMemory constructor finished" << endl; } |