Changeset 68893 in webkit


Ignore:
Timestamp:
Oct 1, 2010 9:54:59 AM (14 years ago)
Author:
kseo@webkit.org
Message:

Unreviewed.

[BREWMP] Change Collector BLOCK_SIZE to 64KB
https://bugs.webkit.org/show_bug.cgi?id=46436

Lower BLOCK_SIZE to 64KB because Brew MP runs on low end devices.

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

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r68890 r68893  
     12010-10-01  Kwang Yul Seo  <skyul@company100.net>
     2
     3        Unreviewed.
     4
     5        [BREWMP] Change Collector BLOCK_SIZE to 64KB
     6        https://bugs.webkit.org/show_bug.cgi?id=46436
     7
     8        Lower BLOCK_SIZE to 64KB because Brew MP runs on low end devices.
     9
     10        * runtime/Collector.h:
     11
    1122010-10-01  Viatcheslav Ostapenko  <ostapenko.viatcheslav@nokia.com>
    213
  • trunk/JavaScriptCore/runtime/Collector.h

    r65146 r68893  
    5858    class LiveObjectIterator;
    5959
    60 #if OS(WINCE) || OS(SYMBIAN)
     60#if OS(WINCE) || OS(SYMBIAN) || PLATFORM(BREWMP)
    6161    const size_t BLOCK_SIZE = 64 * 1024; // 64k
    6262#else
Note: See TracChangeset for help on using the changeset viewer.