Changeset 48928 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Sep 30, 2009, 7:20:07 AM (16 years ago)
Author:
Simon Hausmann
Message:

Reduce heap size on Symbian from 64MB to 8MB.

Patch by Janne Koskinen <[email protected]> on 2009-09-30
Reviewed by Simon Hausmann.

This is not a perfect fix, it requires more fine tuning.
But this makes it possible again to debug in the emulator,
which is more important in order to be able to fix other
run-time issues.

  • runtime/Collector.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r48922 r48928  
     12009-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
    1142009-09-30  Janne Koskinen  <[email protected]>
    215
  • trunk/JavaScriptCore/runtime/Collector.h

    r48558 r48928  
    182182    template<> struct CellSize<sizeof(uint64_t)> { static const size_t m_value = 64; };
    183183
    184 #if PLATFORM(WINCE)
     184#if PLATFORM(WINCE) || PLATFORM(SYMBIAN)
    185185    const size_t BLOCK_SIZE = 64 * 1024; // 64k
    186186#else
Note: See TracChangeset for help on using the changeset viewer.