Changeset 249865 in webkit
- Timestamp:
- Sep 13, 2019, 6:52:16 PM (6 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r249864 r249865 1 2019-09-13 Mark Lam <mark.lam@apple.com> 2 3 watchOS requires PageSize alignment of 16K for JSC::Config. 4 https://bugs.webkit.org/show_bug.cgi?id=201786 5 <rdar://problem/55357890> 6 7 Reviewed by Yusuke Suzuki. 8 9 * runtime/JSCConfig.h: 10 1 11 2019-09-13 Yusuke Suzuki <ysuzuki@apple.com> 2 12 -
trunk/Source/JavaScriptCore/runtime/JSCConfig.h
r249808 r249865 35 35 class FixedVMPoolExecutableAllocator; 36 36 37 #if CPU(ARM64) 37 #if CPU(ARM64) || PLATFORM(WATCHOS) 38 38 constexpr size_t PageSize = 16 * KB; 39 39 #else
Note:
See TracChangeset
for help on using the changeset viewer.