Changeset 269152 in webkit
- Timestamp:
- Oct 29, 2020, 10:10:11 AM (6 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
WebProcess/com.apple.WebProcess.sb.in (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r269151 r269152 1 2020-10-29 Per Arne Vollan <pvollan@apple.com> 2 3 [macOS] Add telemetry for IOKit use 4 https://bugs.webkit.org/show_bug.cgi?id=218343 5 <rdar://problem/70811875> 6 7 Reviewed by Geoffrey Garen. 8 9 Add telemetry with backtrace for IOKIt use in the WebContent process. 10 11 * WebProcess/com.apple.WebProcess.sb.in: 12 1 13 2020-10-29 Chris Lord <clord@igalia.com> 2 14 -
trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in
r268567 r269152 112 112 ;; OpenCL 113 113 (allow iokit-open 114 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000 115 (with telemetry-backtrace) 116 #endif 114 117 (iokit-connection "IOAccelerator") 115 118 (iokit-registry-entry-class "IOAccelerationUserClient") … … 123 126 ;; H.264 Acceleration 124 127 (allow iokit-open 128 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000 129 (with telemetry-backtrace) 130 #endif 125 131 (iokit-registry-entry-class "AppleIntelMEUserClient") 126 132 (iokit-registry-entry-class "AppleSNBFBUserClient")) 127 133 ;; QuartzCore 128 134 (allow iokit-open 135 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000 136 (with telemetry-backtrace) 137 #endif 129 138 (iokit-registry-entry-class "AGPMClient") 130 139 (iokit-registry-entry-class "AppleGraphicsControlClient") … … 132 141 ;; OpenGL 133 142 (allow iokit-open 143 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000 144 (with telemetry-backtrace) 145 #endif 134 146 (iokit-registry-entry-class "AppleMGPUPowerControlClient")) 135 147 ;; GPU bundles … … 674 686 675 687 (allow iokit-open 688 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000 689 (with telemetry-backtrace) 690 #endif 676 691 (iokit-user-client-class "AppleUpstreamUserClient") 677 692 (iokit-user-client-class "RootDomainUserClient") ;; Needed by WebCore::PerformanceMonitor … … 684 699 (if (equal? (param "CPU") "arm64") 685 700 (allow iokit-open 701 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000 702 (with telemetry-backtrace) 703 #endif 686 704 (iokit-user-client-class "AppleAVDUserClient") 687 705 (iokit-user-client-class "IOMobileFramebufferUserClient")
Note:
See TracChangeset
for help on using the changeset viewer.