Changeset 248162 in webkit
- Timestamp:
- Aug 2, 2019, 11:16:52 AM (6 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r248149 r248162 1 2019-08-02 Mark Lam <mark.lam@apple.com> 2 3 Gardening: build fix. 4 https://bugs.webkit.org/show_bug.cgi?id=200149 5 <rdar://problem/53570112> 6 7 Not reviewed. 8 9 * assembler/CPU.cpp: 10 (JSC::hwPhysicalCPUMax): 11 1 12 2019-08-01 Yusuke Suzuki <ysuzuki@apple.com> 2 13 -
trunk/Source/JavaScriptCore/assembler/CPU.cpp
r248143 r248162 80 80 int32_t hwPhysicalCPUMax() 81 81 { 82 int 64_t val = 0;82 int32_t val = 0; 83 83 size_t valSize = sizeof(val); 84 84 int rc = sysctlbyname("hw.physicalcpu_max", &val, &valSize, nullptr, 0);
Note:
See TracChangeset
for help on using the changeset viewer.