Changeset 28434 in webkit for trunk/JavaScriptCore/wtf/TCPageMap.h
- Timestamp:
- Dec 4, 2007, 7:58:41 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/TCPageMap.h
r27186 r28434 79 79 } 80 80 81 void PreallocateMoreMemory() {} 82 81 83 // REQUIRES "k" is in range "[0,2^BITS-1]". 82 84 // REQUIRES "k" has been ensured before. … … 156 158 } 157 159 160 void PreallocateMoreMemory() { 161 // Allocate enough to keep track of all possible pages 162 Ensure(0, 1 << BITS); 163 } 164 158 165 #ifdef WTF_CHANGES 159 166 template<class Visitor, class MemoryReader> … … 255 262 } 256 263 264 void PreallocateMoreMemory() { 265 } 266 257 267 #ifdef WTF_CHANGES 258 268 template<class Visitor, class MemoryReader>
Note:
See TracChangeset
for help on using the changeset viewer.