Changeset 259018 in webkit


Ignore:
Timestamp:
Mar 25, 2020 4:19:01 PM (4 years ago)
Author:
chris.reid@sony.com
Message:

[PlayStation] Specify a 16 KB minimum page size
https://bugs.webkit.org/show_bug.cgi?id=209566

Reviewed by Ross Kirsling.

  • wtf/PageBlock.h:
Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r259016 r259018  
     12020-03-25  Christopher Reid  <chris.reid@sony.com>
     2
     3        [PlayStation] Specify a 16 KB minimum page size
     4        https://bugs.webkit.org/show_bug.cgi?id=209566
     5
     6        Reviewed by Ross Kirsling.
     7
     8        * wtf/PageBlock.h:
     9
    1102020-03-25  Sihui Liu  <sihui_liu@apple.com>
    211
  • trunk/Source/WTF/wtf/PageBlock.h

    r258857 r259018  
    4848//
    4949// Use 64 KiB for any unknown CPUs to be conservative.
    50 #if OS(DARWIN)
     50#if OS(DARWIN) || PLATFORM(PLAYSTATION)
    5151constexpr size_t CeilingOnPageSize = 16 * KB;
    5252#elif OS(WINDOWS) || CPU(MIPS) || CPU(X86) || CPU(X86_64) || CPU(ARM)
Note: See TracChangeset for help on using the changeset viewer.