⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 267490 in webkit


Ignore:
Timestamp:
Sep 23, 2020, 10:55:35 AM (6 years ago)
Author:
pvollan@apple.com
Message:

[macOS] Start collecting telemetry from a set of XPC services
<https://bugs.webkit.org/show_bug.cgi?id=216797>

Reviewed by Brent Fulgham.

  • WebProcess/com.apple.WebProcess.sb.in:
Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r267488 r267490  
     12020-09-23  Per Arne Vollan  <pvollan@apple.com>
     2
     3        [macOS] Start collecting telemetry from a set of XPC services
     4        <https://bugs.webkit.org/show_bug.cgi?id=216797>
     5
     6        Reviewed by Brent Fulgham.
     7
     8        * WebProcess/com.apple.WebProcess.sb.in:
     9
    1102020-09-23  Chris Dumez  <cdumez@apple.com>
    211
  • trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in

    r267455 r267490  
    455455
    456456(deny mach-lookup (xpc-service-name-prefix ""))
     457
    457458(allow mach-lookup
     459#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000
     460    (with report) (with telemetry-backtrace)
     461#endif
    458462    (xpc-service-name "com.apple.PerformanceAnalysis.animationperfd")
    459463    (xpc-service-name "com.apple.audio.SandboxHelper")
     
    714718;; Still actively in use
    715719(allow mach-lookup
     720#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000
     721    (with report) (with telemetry-backtrace)
     722#endif
    716723    (global-name "com.apple.coreservices.launchservicesd")
    717724    (global-name "com.apple.diagnosticd")
     
    724731
    725732(allow mach-lookup
    726 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101500
    727     (with report) (with telemetry)
     733#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000
     734    (with report) (with telemetry-backtrace)
    728735#endif
    729736    (global-name "com.apple.awdd")
     
    737744       (global-name "com.apple.FontObjectsServer")
    738745#endif
    739        (global-name "com.apple.SystemConfiguration.configd")
    740        (global-name "com.apple.analyticsd")
    741        (global-name "com.apple.assertiond.processassertionconnection")
    742        (global-name "com.apple.audio.SystemSoundServer-OSX")
    743        (global-name "com.apple.audio.audiohald")
    744        (global-name "com.apple.fonts")
    745746       (global-name "com.apple.logd")
    746747       (global-name "com.apple.logd.events")
    747        (global-name "com.apple.lskdd") ;; <rdar://problem/49123855>
    748748#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101400 || PLATFORM(MACCATALYST)
    749749       (global-name "com.apple.CARenderServer") ; Needed for [CAContext remoteContextWithOptions]
     
    754754
    755755(allow mach-lookup
    756 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101500
    757     (with report) (with telemetry)
    758 #endif
     756#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000
     757    (with report) (with telemetry-backtrace)
     758#endif
     759    (global-name "com.apple.SystemConfiguration.configd")
     760    (global-name "com.apple.analyticsd")
     761    (global-name "com.apple.assertiond.processassertionconnection")
     762    (global-name "com.apple.audio.SystemSoundServer-OSX")
     763    (global-name "com.apple.audio.audiohald")
     764    (global-name "com.apple.fonts")
     765    (global-name "com.apple.lskdd") ;; <rdar://problem/49123855>
    759766    (global-name "com.apple.PowerManagement.control")
    760767)
Note: See TracChangeset for help on using the changeset viewer.