30a31
> #include "base/intmath.hh"
40a42,45
> if (!isPowerOf2(SSITSize)) {
> fatal("Invalid SSIT size!\n");
> }
>
47a53,56
> if (!isPowerOf2(LFSTSize)) {
> fatal("Invalid LFST size!\n");
> }
>
322a332,347
>
> void
> StoreSet::dump()
> {
> cprintf("storeList.size(): %i\n", storeList.size());
> SeqNumMapIt store_list_it = storeList.begin();
>
> int num = 0;
>
> while (store_list_it != storeList.end()) {
> cprintf("%i: [sn:%lli] SSID:%i\n",
> num, (*store_list_it).first, (*store_list_it).second);
> num++;
> store_list_it++;
> }
> }