Merge zizzer.eecs.umich.edu:/z/m5/Bitkeeper/m5
into zizzer.eecs.umich.edu:/z/m5/Bitkeeper/multiarch --HG-- extra : convert_revision : 6b218e875e5c6299cd38727071e401a3e729266a
This commit is contained in:
commit
ecfe2cc91f
1 changed files with 3 additions and 1 deletions
|
@ -30,8 +30,10 @@
|
|||
#define SCHED_LIST_HH
|
||||
|
||||
#include <list>
|
||||
#include "base/intmath.hh"
|
||||
#include "base/misc.hh"
|
||||
|
||||
|
||||
// Any types you use this class for must be covered here...
|
||||
namespace {
|
||||
void ClearEntry(int &i) { i = 0; };
|
||||
|
@ -80,7 +82,7 @@ SchedList<T>::SchedList(unsigned _size)
|
|||
size = _size;
|
||||
|
||||
// size must be a power of two
|
||||
if (size & (size-1)) {
|
||||
if (!isPowerOf2(size)) {
|
||||
panic("SchedList: size must be a power of two");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue