Changeset 110902 in webkit for trunk/Source/JavaScriptCore/heap/CopiedSpace.h
- Timestamp:
- Mar 15, 2012, 4:04:39 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/heap/CopiedSpace.h
r110748 r110902 36 36 #include <wtf/OSAllocator.h> 37 37 #include <wtf/PageAllocationAligned.h> 38 #include <wtf/PageBlock.h> 38 39 #include <wtf/StdLibExtras.h> 39 40 #include <wtf/ThreadingPrimitives.h> … … 119 120 120 121 static const size_t s_maxAllocationSize = 32 * KB; 121 static const size_t s_pageSize = 4 * KB;122 static const size_t s_pageMask = ~(s_pageSize - 1);123 122 static const size_t s_initialBlockNum = 16; 124 123 static const size_t s_blockMask = ~(HeapBlock::s_blockSize - 1);
Note:
See TracChangeset
for help on using the changeset viewer.