Changeset 48928 in webkit for trunk/JavaScriptCore
- Timestamp:
- Sep 30, 2009, 7:20:07 AM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r48922 r48928 1 2009-09-30 Janne Koskinen <[email protected]> 2 3 Reviewed by Simon Hausmann. 4 5 Reduce heap size on Symbian from 64MB to 8MB. 6 7 This is not a perfect fix, it requires more fine tuning. 8 But this makes it possible again to debug in the emulator, 9 which is more important in order to be able to fix other 10 run-time issues. 11 12 * runtime/Collector.h: 13 1 14 2009-09-30 Janne Koskinen <[email protected]> 2 15 -
trunk/JavaScriptCore/runtime/Collector.h
r48558 r48928 182 182 template<> struct CellSize<sizeof(uint64_t)> { static const size_t m_value = 64; }; 183 183 184 #if PLATFORM(WINCE) 184 #if PLATFORM(WINCE) || PLATFORM(SYMBIAN) 185 185 const size_t BLOCK_SIZE = 64 * 1024; // 64k 186 186 #else
Note:
See TracChangeset
for help on using the changeset viewer.