Changeset 74297 in webkit


Ignore:
Timestamp:
Dec 17, 2010 2:48:40 PM (13 years ago)
Author:
ggaren@apple.com
Message:

2010-12-17 Geoffrey Garen <ggaren@apple.com>

Reviewed by Oliver Hunt.

Removed RChunk from PageAllocation/PageReservation, since it's now unused.
https://bugs.webkit.org/show_bug.cgi?id=51276

  • wtf/PageAllocation.h: (WTF::PageAllocation::PageAllocation):
  • wtf/PageReservation.h: (WTF::PageReservation::PageReservation):
Location:
trunk/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r74291 r74297  
     12010-12-17  Geoffrey Garen  <ggaren@apple.com>
     2
     3        Reviewed by Oliver Hunt.
     4
     5        Removed RChunk from PageAllocation/PageReservation, since it's now unused.
     6        https://bugs.webkit.org/show_bug.cgi?id=51276
     7
     8        * wtf/PageAllocation.h:
     9        (WTF::PageAllocation::PageAllocation):
     10        * wtf/PageReservation.h:
     11        (WTF::PageReservation::PageReservation):
     12
    1132010-12-17  Oliver Hunt  <oliver@apple.com>
    214
  • trunk/JavaScriptCore/wtf/PageAllocation.h

    r73570 r74297  
    8787        : m_base(0)
    8888        , m_size(0)
    89 #if OS(SYMBIAN)
    90         , m_chunk(0)
    91 #endif
    9289    {
    9390    }
     
    135132
    136133protected:
    137 #if OS(SYMBIAN)
    138     PageAllocation(void* base, size_t size, RChunk* chunk)
    139         : m_base(base)
    140         , m_size(size)
    141         , m_chunk(chunk)
    142     {
    143     }
    144 #else
    145134    PageAllocation(void* base, size_t size)
    146135        : m_base(base)
     
    148137    {
    149138    }
    150 #endif
    151139
    152140#if HAVE(PAGE_ALLOCATE_ALIGNED)
     
    157145    void* m_base;
    158146    size_t m_size;
    159 #if OS(SYMBIAN)
    160     RChunk* m_chunk;
    161 #endif
    162147
    163148    static JS_EXPORTDATA size_t s_pageSize;
  • trunk/JavaScriptCore/wtf/PageReservation.h

    r73570 r74297  
    101101
    102102private:
    103 #if OS(SYMBIAN)
    104     PageReservation(void* base, size_t size, RChunk* chunk)
    105         : PageAllocation(base, size, chunk)
    106 #else
    107103    PageReservation(void* base, size_t size, bool writable, bool executable)
    108104        : PageAllocation(base, size)
    109 #endif
    110105#ifndef NDEBUG
    111106        , m_committed(0)
Note: See TracChangeset for help on using the changeset viewer.