Stezza88 Posted April 11 Author Share Posted April 11 I'm ensuring every time to preserve maximum compatibility possible immaginable.. Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849019 Share on other sites More sharing options...
Mastachief Posted April 11 Share Posted April 11 Why do you have whatevergreen's nvram boot-arg?-wegdbgThat's not needed for Ngreen 1 Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849020 Share on other sites More sharing options...
Stezza88 Posted April 12 Author Share Posted April 12 (edited) forgotten.. i used it for ICL kexts to test coexistance between kexts We are diggin' deeper.. constant updates promised every hour * Added bundle support + Scheduler selection Edited April 12 by Stezza88 1 Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849022 Share on other sites More sharing options...
Mastachief Posted April 12 Share Posted April 12 Are you committing each set of changes to the github? Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849024 Share on other sites More sharing options...
Stezza88 Posted April 12 Author Share Posted April 12 (edited) 38 minutes ago, Mastachief said: Are you committing each set of changes to the github? yo Edited April 12 by Stezza88 Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849025 Share on other sites More sharing options...
Stezza88 Posted April 12 Author Share Posted April 12 It's a long, long, long, way down Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849026 Share on other sites More sharing options...
Stezza88 Posted April 12 Author Share Posted April 12 (edited) We are near to implement ExecList command.. now investigating why ring is in idle Road to get MTLexture to remove DYLD patches.. Edited April 12 by Stezza88 Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849028 Share on other sites More sharing options...
Stezza88 Posted April 12 Author Share Posted April 12 (edited) * Added -ngreenAllowMetal boot arg... enjoy it Try this to test and give me logs or photo if it boots!! And remember to tell your conf-specs. -v keepsyms=1 debug=0x100 IGLogLevel=8 -NGreenDebug -liludbg liludump=60 ngreen-dmc=skip -allow3d -disablegfxfirmware -ngreenAllowMetal (and as optional= "ngreenSched=N", 3 = GuC firmware, 4 = IGScheduler4, 5 = host preemptive (default: 5) ) Edited April 12 by Stezza88 Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849029 Share on other sites More sharing options...
Stezza88 Posted April 12 Author Share Posted April 12 (edited) * Still not have a complete MTLDevice but got MTLTexture Roadmap: Getting a Complete MTLDevice Phase 1: Fix BCS (Blitter Command Streamer) Init — START HERE This is the single blocker. The blitter engine never starts: BCS HEAD=0x0 TAIL=0x0 CTL=0x0 START=0x0BCS HWS_PGA=0x40006000 ← HWS page IS allocatedBCS INSTDONE=0xa ← non-zero = engine exists in silicon BCS EXECLIST_STATUS=0x1 ← idle The HWS page is allocated but the ring was never enabled. Likely, IGHardwareCommandStreamer5::init for BCS fails because: The BCS ring is never programmed — RCS gets START=0x402cb000, CTL=0x7000 (enabled, 4 pages buffer), but BCS gets nothing. The host scheduler (type 5) likely only starts RCS and expects the kext to start BCS separately. There may be a BCS-specific forcewake or power gate not being cleared. What to try first: In resetGraphicsEngine (which you already hook for the TGL path), or in a new hook right before the BCS init path, manually program the BCS ring: // After ForceWake for blitter domain:writeReg32(FORCEWAKE_BLITTER_GEN9, (1 << 16) | 1);// Wait for ACK...// Reset BCSwriteReg32(RING_CTL(BLT_RING_BASE), STOP_RING); // 0x22000 + 0x3c// Wait for ring stop...writeReg32(RING_CTL(BLT_RING_BASE), 0);// Clear errorswriteReg32(RING_EIR(BLT_RING_BASE), 0);writeReg32(RING_EMR(BLT_RING_BASE), ~I915_ERROR_INSTRUCTION); But the real question is why BCS init fails. You need to hook IGHardwareCommandStreamer5::init for the BCS engine and log what happens. Phase 2: Bypass the BCS Readiness Check in IntelAccelerator::start() If fixing BCS is hard, you can try to bypass the check that prevents IGAccelDevice creation. The encodeFailureStack is populated during start(). Find where IntelAccelerator::start() reads encodeFailureStack to decide whether to create IGAccelDevice, and NOP that check. Look for a pattern like: cmp [r15+0x1c50], 0 ; encodeFailureStack countjne skip_accel_device ; ← NOP this; ... creates IGAccelDevice ... This is in the TGL HW binary (AppleIntelTGLGraphics). You already have extensive binary patches there — add one more that forces the IGAccelDevice creation path even with encodeFailureStack[1]=1. Phase 3: Verify IOServiceOpen Works Once IGAccelDevice appears as a child, WindowServer should automatically call IOServiceOpen() on it. From there: The user client creates the Metal command queue MTLCreateSystemDefaultDevice() returns non-nil CoreDisplay can render through Metal Phase 4: GT Interrupt Delivery Your log shows: GFX_MSTR_IRQ=0x80000001 (bit31=1, bit0=1)RENDER_COPY_INTR_EN=0x1100110 Master IRQ is enabled and there's a pending interrupt in DW0 bit 0 (RCS). But GT_INTR_DW0=0x1 just sits there — you clear it, it comes back. This means RCS user interrupts fire but may not be delivered to the scheduler. The V37-disabled readAndClearInterrupts hook was meant to fix this. You'll likely need it once IGAccelDevice is running, or stamps won't complete. Phase 5: CoreDisplay Metal Path (Already Handled) Your -ngreenAllowMetal flag already lets CoreDisplay try the Metal path. Once MTLDevice is non-nil, you can remove the RunFullDisplayPipe/Present/GetMTLTexture/AccessComplete skip patches. Concrete Next Step Start by finding the exact binary pattern in AppleIntelTGLGraphics where IntelAccelerator::start() checks engine init results and decides whether to create IGAccelDevice. Add a diagnostic hook or binary patch to force IGAccelDevice creation regardless of BCS status. That's the fastest path to getting a non-nil MTLDevice and seeing what happens next. You already have BCS HWS allocated (HWS_PGA=0x40006000), the silicon exists (INSTDONE=0xa), and RCS is working perfectly — so the GPU itself is functional. The blitter failure is likely a software-level init sequencing issue in Apple's TGL kext, not a hardware problem. Edited April 12 by Stezza88 Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849030 Share on other sites More sharing options...
Stezza88 Posted April 12 Author Share Posted April 12 (edited) The f1/f2 patches cover device ID and capability checks, but something else blocks children from being created. Update : problem not are in children, I get 5 children.. problem is that GPU can't still execute commands.. Cross-Platform Detection (V52) NootedGreen uses inline CPUID (EAX=1) at load time to read the real CPU model — no config.plist or device-ID spoofing can fake this. The result sets isRealTGL: CPU Model isRealTGL Tiger Lake-U (i7-1165G7, etc.) 0x8C true Tiger Lake-H (i7-11800H, etc.) 0x8D true Raptor Lake-P (i7-13700H, etc.) 0xBA false Raptor Lake-S 0xBF false Raptor Lake-HX 0xB7 false Alder Lake-P 0x9A false Alder Lake-S 0x97 false Edited April 12 by Stezza88 Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849031 Share on other sites More sharing options...
Stezza88 Posted April 12 Author Share Posted April 12 Honest assessment: We're ~70% there infrastructure-wise. The hardest part remains — making the GPU actually execute Metal commands on RPL hardware spoofed as TGL. Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849032 Share on other sites More sharing options...
Stezza88 Posted April 12 Author Share Posted April 12 (edited) For TGL should be "ready to use" ... have you tried it???? boyyyyssss Most probably also for ICL... but ICL are "hardware supported" already so... Edited April 12 by Stezza88 1 Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849035 Share on other sites More sharing options...
Mastachief Posted April 12 Share Posted April 12 The kext loads, however does not attach to TGL kexts running from /L/E Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849036 Share on other sites More sharing options...
jkbuha Posted April 12 Share Posted April 12 2 hours ago, Mastachief said: The kext loads, however does not attach to TGL kexts running from /L/E Same issue here with i7-1185g7. Built NootedGreen, Lilu-NootedGreen and HookCase, all loading and running successfully, but not loading any TGL kexts from /L/E. Last login: Sun Apr 12 16:09:10 on ttys000 jkbuha@JuliansthGenAir ~ % kextstat | grep -i "ngreen\|NootedGreen\|StezzaPilot" Executing: /usr/bin/kmutil showloaded No variant specified, falling back to release 74 0 0xffffff8006b2d000 0x4e000 0x4e000 com.StezzaPilot.NootedGreen (1.0.0) 9FD0E4A7-B228-37FA-A902-28B738F711FD <57 18 9 7 6 3 2 1> jkbuha@JuliansthGenAir ~ % kextstat | grep -i "lilu\|vit9696" Executing: /usr/bin/kmutil showloaded No variant specified, falling back to release 57 16 0xffffff8004012000 0x88000 0x88000 as.vit9696.Lilu (1.7.3) EEAADD41-5187-36D3-8097-E99D80AB336F <9 7 6 3 2 1> 60 0 0xffffff800540d000 0x1cd000 0x1cd000 as.vit9696.AppleALC (1.9.7) CBFC7A37-E2E8-39D9-AF1F-77E36A9ACA66 <57 18 9 7 6 3 1> 65 0 0xffffff80069a4000 0xd000 0xd000 as.vit9696.RestrictEvents (1.1.7) A708639D-FD60-3173-8B5C-9B536E7A8191 <57 9 7 6 3 2 1> 66 5 0xffffff800409a000 0x19000 0x19000 as.vit9696.VirtualSMC (1.3.8) A6D60AC3-212F-3186-8A6B-96A81DC7240B <57 17 9 7 6 3 1> 76 0 0xffffff80069e1000 0xc000 0xc000 as.vit9696.SMCProcessor (1.3.8) A0652DDF-5B1B-352F-8823-0EEF1D612D6A <66 57 17 9 7 6 3 2 1> jkbuha@JuliansthGenAir ~ % kextstat | grep -i "TGL\|xxxxx" Executing: /usr/bin/kmutil showloaded No variant specified, falling back to release jkbuha@JuliansthGenAir ~ % kextstat | grep -i "HookCase\|smichaud" Executing: /usr/bin/kmutil showloaded No variant specified, falling back to release 183 0 0xffffff7f97385000 0x21306 0x21306 org.smichaud.HookCase (8.0.1) 1B4A7F61-3F35-3F47-BBEE-10E6870DDF19 <18 9 7 6 3 2 1> jkbuha@JuliansthGenAir ~ % log show --last 5m --predicate 'eventMessage contains "ngreen" or eventMessage contains "NGreen" or eventMessage contains "NootedGreen"' 2>/dev/null | head -30 Timestamp Thread Type Activity PID TTL jkbuha@JuliansthGenAir ~ % ioreg -l -p IOService | grep -i "Iris Xe\|Intel.*Graphics\|TGL\|ngreen" | head -10 | "IOKitDiagnostics" = {"Instance allocation"=27927760,"Container allocation"=5875438,"Pageable allocation"=424792064,"Classes"={"IONDRVFramebuffer"=1,"IOHIDEventServiceFastPathUserClient"=0,"IONaturalMemoryCursor"=0,"IOKitDiagnosticsClient"=0,"AppleUSBXHCIIsochronousRequestPool"=2,"AppleUSBDiagnostics"=0,"IOAudioClientBufferSet"=0,"AppleHDAMikeyInternalCS4208"=0,"AppleSMCPMC"=0,"IOEventLink"=0,"AppleUSBRequest"=1,"TSNPacketPool"=0,"AppleASMedia1042USBXHCICommandRing"=0,"DspFuncBuzzKill"=0,"IOUSBMassStorageDriverRequestTimer"=0,"IOUserBlockStorageDevice"=0,"IOHDACodecDevice"=1,"AppleHDATDM_Codec"=0,"IORegistryEntry"=144,"ApplePS2Controller"=1,"IOUSBMassStorageUASDriver"=0,"AppleActuatorDevice"=1,"AppleHDAWorkLoop"=1,"IORTC"=1,"AppleNVMeRequestPoolTagReserve"=0,"IOHIDevice"=2,"IOPCIEventSource"=0,"OSAction_IOUserNetworkEthernet__TxSQDataAvailable"=0,"KDIFileBackingStore"=1,"AppleHDAHardwareConfigDriver"=0,"IO80211DriverCommandDescriptor"=0,"AppleHDAHardwareConfigDriverLoader"=0,"DspFuncUserClient"=0,"IOMemoryCursor"=1,"IOPMGR"=0,"AppleSmartBatteryManager"=1,"ItlIwm"=0,"AppleHDATDM_CS42L81"=0,"IOBreaker"=0,"AppleHDAFunctionGroup_80862807"=0,"AppleUSBUserHCIDevice"=0,"IOUSBLowLatencyCommandLegacy"=0,"IOTimeSyncClockManagerDaemonClient"=2,"AppleUSBUserHCITransferQueue"=0,"EFIData"=334,"AIDCircularBufferShared"=0,"USBDeviceController"=0,"AppleUSBXHCIPort"=2,"AppleSMCControl"=0,"DspFunc4ChOutput"=0,"AppleLockdownMode"=1,"IOSurfaceSharedEventNotification"=0,"AppleKeyStoreUserClient"=46,"IOTimeSyncSyncDaemonClient"=1,"AppleHDAFunctionGroupWM8800"=0,"IOSMBusRequest"=0,"VoodooGPIOAMD"=0,"IOSkywalkPacket"=0,"IntelBTPatcher"=1,"DspFuncBeamFormer"=0,"IOPMServiceInterestNotifier"=127,"AppleACPILid"=1,"hv_vmx_vcpua_t"=0,"IOStorage"=4,"IOHIDResourceQueue"=0,"AppleUpstreamUserClientDriver"=1,"IOSkywalkLogicalLink"=0,"AppleRSMChannelControllerClient"=1,"ItlIwn"=0,"AppleUSBRequestPool"=2,"IOSerialStreamSync"=1,"IOHIDConsumer"=0,"AppleSMCRTC"=0,"IOSharedInterruptController"=4,"AppleUSBHostCompositeDevice"=1,"IO80211AWDLMulticastPeer"=0,"IOHIDClientData"=6,"IOBluetoothMemoryDescriptorRetainer"=0,"IOGraphicsWorkLoop"=2,"hv_vmx_vm_t"=0,"AppleHDATDMBusManagerCS4208"=0,"OSSerializer"=45,"IOTimeSyncClockManagerUserClient"=0,"OSCollection"=6,"IOPCIMessagedInterruptController"=1,"AppleKeyStoreTestUserClient"=0,"IOUserEthernetResourceUserClient"=0,"IORDMAInterface"=0,"CPUFriend"=1,"com_apple_driver_16X50BusInterface"=0,"IOUSBDeviceUserClientV2"=1,"SmbusHandler"=1,"AppleHDAEngineOutput"=1,"SMCSMBusController"=1,"AIDReporters"=0,"_IOServiceNullNotifier"=1,"AIDInterface"=0,"IOTimeSyncUnicastUDPv4PtPPort"=0,"IOUserNetworkRxCompletionQueue"=0,"AppleCallbackPowerSourceProvider"=1,"IOSkywalkMemorySegment"=0,"IOBluetoothHCIUserClient"=1,"hv_vioapic_t"=0,"AppleIntelPCHPMC"=0,"AppleASMediaUSBXHCIDevice"=0,"IONetworkStackUserClient"=1,"AppleMultitouchEventDriverV2Wrapper"=1,"AppleDisplay"=1,"IOTimeSyncPortManager"=0,"VoltageShiftAnVMSR"=1,"com_apple_driver_pm_cpu_reporter"=1,"_IOServiceNotifier"=693,"IOInterleavedMemoryDescriptor"=0,"AppleAPFSUserClient"=0,"AppleHDAFunctionGroupGT216"=0,"TrackpointDevice"=1,"AppleUSBLegacyInterfaceUserClient"=0,"IOServiceStateNotificationEventSource"=0,"AppleUSBUserHCIResources"=1,"AppleGraphicsDevicePolicy"=0,"AppleHDAFunctionGroupCS4208"=0,"IOSkywalkEthernetInterface"=0,"IOSKArena"=8,"IOTimeSyncEthernetInterfaceAdapter"=0,"AppleUSBXHCILPTCommandRing"=0,"IOUSBHostDevice"=3,"IOSubMemoryDescriptor"=4,"AppleHSBluetoothInterface"=0,"AppleUSBRequestCompleter"=1,"DspFuncVolume_4ch"=0,"IOHIDTranslationServiceClient"=0,"IOUserNetworkWLAN"=0,"IOAVBNubUserClient"=0,"AirportItlwmInterface"=1,"IOServiceUserNotification"=598,"AppleMultitouchTrackpadHIDEventDriver"=1,"AppleFDEKeyStoreUserClient"=0,"AppleUSBHostResourcesTypeCBPC"=0,"IO80211ThroughputCache"=0,"IOPlatformSensor"=0,"IO80211PacketDescriptor"=0,"IOSkywalkNetworkBSDClient"=0,"DspFuncPreGain"=0,"IOTimeSyncDomainDaemonClient"=1,"IOHIDReportElementQueue"=0,"AUAEffectUnitDictionary"=0,"com_apple_filesystems_apfs"=1,"DigitizerTransducer"=0,"IOSKRegionMapper"=22,"IOBluetoothL2CAPInformationFrameMemoryBlock"=0,"IOMbufMemoryCursor"=1,"AppleHDAController"=1,"IOSKMemoryArray"=0,"AppleUSBUserHCITransferStructPool"=0,"IOCPU"=1,"IONetworkStack"=1,"AppleACPIEventPoller"=1,"OSAction_IOUserNetworkEthernet__DataAvailable"=0,"IO80211ActionFrameDescriptor"=0,"DspFuncBiquad"=0,"CCDataPipeBlob"=0,"IOTimeSyncNetworkPortUserClient"=0,"ApplePlatformEnabler"=1,"VoodooInputActuatorDevice"=1,"IOSCSIPeripheralDeviceType07"=0,"IOSlaveMemory"=0,"ACMKeybagKernelService"=0,"AppleHDAFunctionGroupATI_RS710"=0,"ACMRestrictedModeAnalyticsKernelService"=1,"IOSimpleReporter"=232,"IO80211Interface"=1,"AppleUSBUserHCIIsochronousTransferQueue"=0,"AppleUSBXHCILPTHB"=0,"VoodooI2CControllerNub"=1,"IOModemSerialStreamSync"=0,"IOHDIXControllerUserClient"=0,"IOUSBMassStorageCBIDriverNub"=0,"AppleHDATDM_CS42L83"=0,"AppleALC"=1,"com_apple_AppleFSCompression_AppleFSCompressionTypeZlib"=1,"AppleHDATDMAmpMAX98706"=0,"DspFunc2Dot2Crossover"=0,"AppleUSBLegacyRoot"=1,"IOUSBInterface"=1,"CCFaultReporter"=1,"IO80211EventSource"=0,"AppleHDAPathControl"=8,"AGPMClient"=0,"AppleHDATDMAmpTAS5764L"=0,"IOAVBValidate"=1,"AppleKeyStoreTest"=1,"IOSCSIPrimaryCommandsDevice"=0,"AppleNVMeWorkLoop"=2,"AppleSMBusControllerMCP"=0,"IOTimeSyncDomainUserClient"=0,"AppleMCCSControlGibraltar"=0,"AppleUSBAudioInterruptPipe"=0,"IOHIDProviderPropertyMerger"=0,"IOUSBDevice"=1,"IOGDiagnosticUserClient"=0,"AppleSEPControl"=0,"AppleHDAEngineInput"=1,"IOServiceNotificationDispatchSource"=0,"IOUSBMassStorageResourceUserClient"=0,"IntelBluetoothFirmware"=1,"IOSkywalkNetworkInterface"=0,"IOHIDKeyboard"=0,"VoodooI2CPCIController"=1,"IOTimeSyncEdgeTimeCaptureUserClient"=0,"AIDQueueEventSourceWorkItem"=0,"AUAConfigurationDictionary"=0,"IOACPIPlatformDevice"=240,"IOUserService"=2,"IOTimeSyncTSNInterfaceAdapter"=0,"_IOServiceInterestNotifier"=173,"AppleUSBHostRequestCompleter"=3,"IOBluetoothLocalUtilityEventSource"=0,"IOFramebufferI2CInterface"=0,"IOPowerConnection"=91,"IOFBController"=1,"VoodooI2CSensor"=0,"IOWatchDogTimer"=0,"CoreAnalyticsEventRatePolicy"=1,"IOEventSource"=13,"IODMACommand"=52,"IOUserNetworkTxCompletionQueue"=0,"IOMachPort"=2066,"IOPMinformeeList"=125,"VoodooGPIOIceLakeLP"=0,"IO80211AsyncUserClientParameters"=0,"AppleCredentialManager"=1,"IO80211LinkRecovery"=0,"AppleRSMChannelController"=1,"AppleUSB30XHCITypeCPort"=0,"UVCService"=0,"AppleACPIPowerResource"=0,"CCLogStream"=3,"IOPCIHostBridgeData"=1,"AppleUSBHostControllerIsochEndpoint"=0,"AGDPUserClient"=0,"IOHIDEvent"=0,"IO80211AsyncEventUserClient"=0,"DspFuncNoiseCanceller"=1,"OSDictionary"=16635,"IOAGPDevice"=0,"AppleMultitouchMouseHIDEventDriver"=0,"IOHDACodecDeviceUserClient"=0,"AppleActuatorHIDEventDriver"=1,"IOTimeSyncServiceDaemonClient"=5,"AppleUSBXHCIParkingCommandRing"=0,"AppleFDEKeyStore"=1,"IODisplayWrangler"=1,"AppleCyrus"=1,"IOUSBMassStorageDriverUFIDevice"=0,"AppleUSBIORequest"=40,"_IOUserServerCheckInCancellationHandler"=0,"IOUSBPipeV2"=0,"AppleUSBHostLegacyClient"=3,"IOUSBMassStorageResource"=1,"VoodooI2CServices"=1,"IO80211HistogramReporter"=0,"DspFuncFIRdirect"=0,"IOTimeSyncUnicastUDPv6PtPPort"=0,"AppleHDATDMSinkDevice"=0,"AppleUIOPCIUserClient"=0,"Dont_Steal_Mac_OS_X"=1,"SEPEpoch"=0,"IOAudioTimeIntervalFilterIIR"=0,"IOHIDEventSource"=6,"IOSurfaceRootParavirtMapperInterface"=0,"GTraceBuffer"=4,"OSSet"=763,"IOSurfaceShared"=35,"AppleUSBUserHCIUserClient"=0,"AppleIntelPanel"=1,"AppleNVMeRequestPool"=1,"DspFuncCalibrationEQ"=0,"AppleUSB30XHCICardReaderPort"=0,"IOAudioEngineUserClient"=36,"AGPMHeuristic4"=0,"IOPCIHostBridge"=1,"AppleHDAWidget_80862805"=0,"DspFuncChOutput"=0,"IOAVBRingBufferMemoryDescriptor"=0,"VoodooGPIOIntel"=0,"IOCommand"=131,"AppleHDAWidgetAD1984"=35,"IOTimeSyncTranslationMach"=1,"IOAudioTimerEvent"=0,"CCDataPipe"=2,"DspPatchPoint"=8,"HIDMTQueueEventSourceWorkItem"=0,"IOSCSIProtocolInterface"=0,"AppleTDMType00"=0,"AppleUSBXHCIAR"=0,"IOTimeSyncNanosecondSnapshotService"=0,"IOPlatformIO"=0,"IOBluetoothGamepadHIDDriver"=0,"IOAVBNub"=1,"AppleHDAFunctionGroupALC885"=0,"AppleHDAFunctionGroup"=1,"AppleHDAFunctionGroupExternalControl"=2,"IOGUIDPartitionScheme"=1,"AppleHDANode"=2,"IOUSBMassStorageUFIDriverNub"=0,"OSCollectionIterator"=51,"AppleEFIRuntime"=1,"IOHIDPowerSourceClient"=0,"AIDSharedMemoryManager"=0,"IOFilterScheme"=0,"AppleMCCSIOController"=2,"AppleUSBHostResources"=1,"IONVMeController"=1,"AppleUSBAudioIsocFrameList"=0,"IOApplePartitionScheme"=0,"IOSkywalkInterface"=0,"IOSurfaceRootUserClient"=35,"IO80211PeerExtendedStats"=0,"IOTimeSyncTranslationPMGR"=0,"IODisplay"=1,"TDMConfig"=0,"IOHIDAsyncReportQueue"=0,"IOSkywalkPacketQueue"=0,"IOUserEthernetResource"=1,"IOBasicOutputQueue"=1,"VoodooI2CHIDTransducerWrapper"=1,"AppleS3ELabController"=0,"OSAction_IOUserNetworkEthernet__RxSQDataAvailable"=0,"AppleUSBHostControllerListElement"=0,"AppleHDACodec"=1,"AppleSEPIntelIOP"=0,"IOUSBControllerIsochListElement"=0,"AppleGPUWranglerClient"=4,"IOPacketQueue"=1,"IOFramebufferSharedUserClient"=1,"IOUserClient"=27,"IOHITabletPointer"=0,"IOAVBAudioLoader"=0,"IO80211PeerBssSteeringManager"=0,"AppleUSBAudioStreamNode"=0,"AppleUSBHostControllerIsochListElement"=0,"RestrictEvents"=1,"AUAControlDictionary"=0,"IOHIDEventSystemUserClient"=1,"AppleHDAWidgetFactory"=0,"IOHDIXHDDrive"=1,"DIDeviceRequestPool"=0,"IOSurfaceMemoryPoolBunch"=0,"AGPM"=1,"AppleSystemPolicy"=1,"IOSurfaceDescriptor"=0,"VoodooI2CMultitouchHIDEventDriver"=1,"IO80211AWDLPeer"=0,"AIDCircularReadBufferShared"=0,"AppleIPDormancyHandler"=1,"DspFunc3ChOutput"=0,"AppleMCCSControlModule"=1,"IO80211SimpleReporter"=8,"IORDMAFamilyUC"=0,"ACMKernelService"=6,"AppleASMedia3142USBXHCIUserClient"=0,"APFSOSNumberAtomic"=1030,"IOUSBHostPipe"=1,"IOPolledFilePollers"=1,"CoreAnalyticsTestUserClient"=0,"IOTimeSyncDaemonClientBase"=4,"IO80211String"=0,"IOHDIXHDDriveOutKernelUserClient"=0,"IOUSBNotification"=0,"AppleHDAWidgetSTAC9220"=0,"AppleUSBUserHCIPipe"=0,"IOSkywalkNetworkKDPPoller"=0,"IOSkywalkRxSubmissionQueue"=0,"IOUSBInterfaceUserClient"=1,"AppleUSBHostDeviceUserClient"=10,"KDIUDIFEncoding"=0,"AppleHDAMikeyInternal"=0,"IORSMCommand"=0,"IOFramebufferParameterHandler"=1,"AppleTDMControlLUN"=0,"IOGatedOutputQueue"=2,"IOSurface"=110,"AppleUSBRootHubDevice"=1,"com_apple_filesystems_lifs"=1,"IOReportLegend"=2,"com_waves_WCAudioGridDevice"=1,"AppleHDAFunctionGroupMCP89"=0,"SMCBatteryManager"=1,"AppleUSBXHCIEndpoint"=8,"OSValueObject<int>"=0,"IOHIDEventQueue"=0,"AppleIntelUSBXHCICommandRing"=1,"IOSurfaceSendRight"=1,"AppleAPICInterruptController"=1,"AppleSMC"=1,"IOSkywalkNetworkController"=0,"IOTimeSyncService"=2,"AppleSmartBatteryUserClient"=0,"AppleXsanDriver"=0,"IOCommandPool"=5,"IOBlockStorageDevice"=2,"VoodooI2CStylusHIDEventDriver"=0,"AIDService"=0,"AGPMHeuristic"=1,"AppleRSMChannel"=0,"IORSMCommandQueue"=0,"IOPMrootDomain"=1,"BrightnessKeys"=1,"AppleEffaceableStorage"=0,"AUAFeatureUnitDictionary"=0,"IOUSBDeviceUserClient"=1,"IO80211VirtualInterfaceNamer"=1,"KDIUDIFDiskImage"=0,"ItlIwx"=1,"AppleUSBNetworkingCommandPool"=0,"OSUserMetaClass"=171,"IOPlatformControl"=0,"VoodooGPIOCannonLakeLP"=0,"KextAuditUserClient"=1,"VoodooI2CDeviceNub"=1,"IOI2CInterfaceUserClient"=0,"IntelBluetoothOpsGen1"=0,"AppleHDAFunctionGroupAD1984"=1,"DspFuncControlFreak"=0,"_IOOpenServiceIterator"=0,"IOHDIXCommandQueue"=1,"IOCommandGate"=374,"EventElementCollection"=0,"VoodooI2CHIDSYNA3602Device"=0,"IOWorkGroup"=0,"IOUSBMassStorageDriver"=0,"AppleUSBNetworkingHostCommandPool"=0,"DspParameter"=23,"IOPMRequestQueue"=2,"IOSkywalkRxCompletionQueue"=0,"AppleECSMBusController"=0,"IOBlockStorageDriver"=2,"IOTimeSyncInterfaceAdapter"=0,"IOWatchdogx86"=1,"AppleHDAWidgetALC262"=0,"DspFuncThermalSpeakerProtection"=0,"IOHIDWorkLoop"=1,"AUASelectorUnitDictionary"=0,"IOBlockStorageServices"=0,"AppleACPIACAdapter"=1,"IOUSBInterfaceIterator"=0,"IODTPlatformExpert"=1,"IOAppleLabelScheme"=0,"IOBluetoothMemoryBlock"=0,"IOMbufBigMemoryCursor"=0,"IOSlaveMemoryBuffer"=0,"AppleUSBXHCIInterrupter"=1,"AppleUSBXHCIPCI"=2,"AppleUSBXHCIIsochronousEndpoint"=0,"AppleUSBXHCICommandRing"=2,"IOTimeSyncDaemonService"=1,"IOSurfaceMemoryPool"=0,"AUAUnitDictionary"=0,"AppleHDAControllerUserClient"=0,"IOTimeSyncLocalClockPort"=1,"AppleACPIPS2Nub"=1,"IO80211Peer"=0,"RootDomainUserClient"=103,"DspFuncSplineLimiter"=0,"AppleAPFSContainer"=2,"AppleSEPDiscovery"=0,"DspFuncMozartCompressorDualBand"=0,"IONDRV"=1,"AppleHSBluetoothNub"=0,"IOPCIDevice"=27,"AppleUSB20XHCIPort"=5,"IOBluetoothInactivityTimerEventSource"=0,"OSNumber"=44374,"AUAOutputTerminalDictionary"=0,"AIDUserClientLogger"=0,"CCFaultReport"=0,"SMCProcessor"=1,"OSValueObject<AsyncReportParam>"=0,"AppleHDAFunctionGroupExternalControl_VirtualGPO"=1,"AppleUSBUserHCIPort"=0,"IOTimeSyncTimedEdgeGeneratorUserClient"=0,"IOGDiagnosticGTraceClient"=1,"AppleUSBXHCI"=1,"IOTimeSyncIntervalFilter"=0,"IOTimeSyncNetworkPort"=0,"AppleUSBHostPacketFilter"=1,"AppleIntelCNLUSBXHCI"=0,"ACMFirstResponderKernelService"=1,"AppleHDAFunctionGroup_1002AAA0"=0,"IOUserNotification"=2,"IOTimeSyncUnicastLinkLayerPtPPort"=0,"IOHIDKeyboardDevice"=0,"SMCLightSensor"=0,"AppleUSBAudioStream"=0,"IOHDAStream"=2,"AppleUSBXHCILPT"=0,"AppleGPUWrangler_GPUPostStartWorkItem"=0,"com_apple_AppleFSCompression_AppleFSCompressionTypeDataless"=1,"VoodooGPIO"=0,"AGPMHeuristic3"=0,"IOSurfaceSharedEventListener"=0,"AppleUSBXHCITransferRing"=8,"SMCSuperIO"=0,"AppleAPFSSnapshot"=1,"OSDextCrash"=0,"IOWrappedMemoryDescriptor"=0,"AppleHDAFunctionGroupATI_Broadway"=0,"VoodooI2CLogger"=1,"IOUSBHubDevice"=0,"AppleUSBHostDeviceIdler"=3,"IOPMWorkQueue"=1,"IOTimeSyncFilteredService"=0,"VoodooI2CMultitouchInterface"=1,"AGDCBacklightControlNub"=0,"AIDImageDownloader"=0,"IOGuardPageMemoryDescriptor"=0,"AppleUSB30XHCIPort"=2,"AIDEventLogger"=0,"AppleSMBusControllerUserClient"=0,"IODeblocker"=0,"IOUserClient2022"=10,"AppleRTC"=1,"AppleUSBXHCISPT"=1,"IOPlatformCtrlLoop"=0,"IOSharedDataQueue"=3,"X86PlatformShim"=1,"IOSyncer"=0,"AppleGPUWrangler_WorkItem"=0,"AppleDeviceManagementHIDEventService"=0,"IOHDIXHDDriveInKernel"=1,"AppleUSBAudioPlugin"=0,"IORangeAllocator"=2,"IOKitRegistryCompatibility"=1,"OSBoolean"=2,"IOMediaBSDClient"=9,"AppleSEPCommand"=0,"OSAction"=10,"AppleUSBXHCIRequest"=21,"IOUserNetworkLogicalLink"=0,"IOTimeSyncUserFilteredServiceDaemonClient"=0,"OSAction_IOHIDEventService__SetUserProperties"=0,"com_waves_WCAudioGridEngine"=0,"IOWorkQueue"=1,"ApplePlatformEnablerUserClient"=0,"CoreAnalyticsUserClient"=1,"DspFuncAutoGainControl"=0,"IOMapper"=2,"IOHIDInterface"=6,"AppleACPIInterruptLink"=0,"IOUSBMassStorageUFIDriver"=0,"IOPCI2PCIBridge"=4,"IOSurfaceRoot"=1,"IOHIDSystem"=1,"com_apple_BootCache"=1,"IOUSBInterfaceUserClientV3"=2,"BlueToolFixup"=1,"IOAppleBluetoothHIDDriver"=0,"IOUSBHostStream"=0,"LogManagerDevice"=3,"IOTimeSyncgPTPManagerDaemonClient"=1,"AppleHDA8086_9D70Controller"=0,"IOHIDDeviceElementContainer"=6,"AIDReporter"=0,"IOUSBController"=1,"KDIBackingStore"=1,"AppleHDAFunctionGroupATI_RS730"=0,"AppleHDAWidgetATI_Park"=0,"_IOServiceStateNotification"=0,"AppleBacklightParameterHandler"=1,"AppleACPICPU"=8,"IONetworkInterface"=1,"AppleMCCSControlFamily"=1,"IOTimeSyncNetworkPortDaemonClient"=0,"IOBluetoothACLMemoryDescriptor"=0,"IOHIDOOBReportDescriptor"=0,"AppleASMediaUSBXHCIStreamingEndpoint"=0,"IONetworkUserClient"=0,"com_apple_driver_16X50UARTSync"=0,"IOReportUserClient"=3,"AppleUserHIDEventService"=2,"DspFunc2To4Splitter"=0,"AppleUSBXHCIPipe"=8,"DspFuncDRC"=0,"IOServiceStateNotificationDispatchSource"=0,"IOSkywalkLegacyEthernet"=0,"IOHDACodecFunction"=1,"IOCharacterDevice"=3,"IOUSBNub"=2,"AppleUSBHostMergeProperties"=0,"_IOConfigThread"=0,"AppleACPIPMC"=1,"AppleMultitouchHIDEventDriverV2"=1,"AppleHDAEngine"=2,"IOTimeSyncClockManager"=1,"AppleUSBXHCIARRequest"=0,"IO80211FlowQueueDatabase"=1,"AppleUSBAudioDevice"=0,"AppleHDAWidgetGK10X"=0,"AppleUSBHostController"=1,"IODiskImageBlockStorageDeviceOutKernel"=0,"OSValueObject<AsyncCommitParam>"=0,"AppleMultitouchHIDService"=0,"IOTimeSyncFDPtPPort"=0,"AppleSEPXART"=0,"IOUSBMassStorageDriverUFIStorageServices"=0,"AppleRXEDevice"=0,"IOCPUInterruptController"=1,"IOHIDPowerSource"=1,"BtIntel"=0,"ApplePS2MouseDevice"=1,"AppleHDAFunctionGroupFactory"=0,"CoreAnalyticsHub"=1,"IOSkywalkKernelPipeBSDClient"=0,"IOUserServer"=3,"VoodooI2CMultitouchEngine"=1,"IO80211P2PInterface"=0,"CCLogPipeUserClient"=0,"AppleIPAppenderUserClient"=0,"PMHaltWorker"=0,"AppleHDAFunctionGroupALC262"=0,"AppleHDATDMDevice"=0,"VoodooI2CController"=1,"AppleMCCSUserClient"=0,"AppleHSBluetoothHIDDriver"=0,"IOSlaveCPU"=0,"AppleUSBXHCIFL1100"=0,"IOUserNetworkPacket"=0,"AppleUpstreamUserClient"=0,"IOTimeSyncSyncUserClient"=0,"KDISocketPool"=0,"ACPI_SMC_PlatformPlugin"=0,"AppleAPFSGraft"=3,"IOAudioTimeIntervalFilter"=0,"IOTSAEITimeSyncHandler"=0,"AppleUSBTDMMassStorageClass"=0,"IOBootFramebuffer"=0,"IOHIDResourceDeviceUserClient"=0,"IOInterruptController"=5,"DspFunc"=4,"AppleASMediaUSBXHCI"=0,"SMCPolledInterface"=1,"AppleUSBHostResourcesClient"=1,"IOEthernetInterface"=1,"IOSkywalkPacketPoller"=0,"AppleHDAFunctionGroup_80862805"=0,"IOTimeSyncTimeLineFilter"=0,"AppleANS2Controller"=0,"AppleUSBXHCIARIsochronousRequest"=0,"IOAVBStreamCapture"=0,"IOMbufLittleMemoryCursor"=0,"com_waves_WCAudioGridUserClient"=1,"AGDCPlugin"=1,"AppleHDATDMBusManager"=0,"AppleUSBHubPolicyMaker"=1,"IOConditionLock"=0,"IOGraphicsControllerWorkLoop"=1,"IO80211WorkLoop"=1,"AppleUSBAudioComposite"=0,"AppleDiskImageDevice"=0,"IOUSBUserClientLegacy"=1,"AppleUSBHostIORequestPool"=8,"AppleHDAFunctionGroupGK10X"=0,"AppleUSBHostFrameworkClient"=1,"com_apple_driver_pm_pch_reporter"=1,"DspFuncMultiBandDRC"=0,"IOAccelerator"=0,"IOPlatformPluginLegacy"=0,"IOUserResources"=1,"AppleAPFSVolume"=8,"AppleNVMeBuffer"=5,"IOWatchdogUserClient"=1,"IOFenceTransaction"=0,"IOSkywalkStatisticsReporter"=0,"PMTraceWorker"=1,"NVMePMProxy"=1,"AppleUSBXHCISparseRequest"=0,"IOSCSIBlockCommandsDevice"=0,"VoodooI2CDeviceOrientationSensor"=0,"ApplePS2Device"=2,"IO80211QueueCall"=1,"IOAudioControl"=3,"AppleSMBusControllerICH"=0,"IntelBluetoothOpsGen2"=0,"IONVMeBlockStorageDevice"=1,"AppleHDAWidgetCS4206"=0,"IOI2CInterface"=0,"AppleHDAHDMI_DPDriver"=0,"IO80211QueueDescriptor"=0,"IODTNVRAMVariables"=0,"AppleUSBXHCIEndpointSoftRetry"=0,"VoodooI2CPCILakeController"=1,"IOUSBHostIOSource"=1,"AppleHDAFunctionGroupSTAC9220"=0,"VoodooI2CHIDDevice"=1,"OSString"=39856,"IONetworkController"=1,"IODiskImageBlockStorageDeviceInKernel"=1,"IORSMMemoryDescriptorArray"=0,"CCIOReporterHub"=2,"IOUserIterator"=49,"SMCDellSensors"=1,"AppleMCCSParameterHandler"=1,"IOSortableConfigurationDescriptor"=1,"PMSettingHandle"=5,"DspFunc2To6Splitter"=0,"OSOrderedSet"=286,"AppleMobileFileIntegrityUserClient"=0,"AppleUSBXHCIIsochronousRequest"=10,"VoodooI2CPrecisionTouchpadHIDEventDriver"=1,"AppleUSBXHCIStream"=0,"IOHIDEventDriver"=3,"DspFuncClientGainAdjust"=0,"TSNWiFiControlInterface"=0,"IOAudioStream"=1,"IOStateReporter"=7,"AppleUSBXHCIPPT"=0,"IOSerialBSDClient"=1,"com_apple_driver_pm_flex_reporter"=1,"AppleAPFSMedia"=3,"APFSCryptoContext"=1152,"IONotifier"=4,"IOBluetoothL2CAPMemoryBlock"=0,"AIDLoggerUserClient"=0,"AGPMHeuristic2"=1,"OSValueObject<void*>"=0,"VoodooI2CAccelerometerSensor"=0,"AppleUSBPipe"=0,"IOTimeSyncTimeLineFilterIIR128"=0,"AUAADC3ClassSpecificDescriptorFetcher"=0,"IOFilterInterruptEventSource"=5,"IOLittleMemoryCursor"=0,"IOTimeSyncDaemonServiceBase"=1,"DspFuncGain"=1,"IOUserNetworkPacketBufferPool"=0,"VoodooI2CSensorHubEventDriver"=0,"IOHIDPointingDevice"=0,"IOSkywalkTxSubmissionQueue"=0,"AppleUSBXHCIWPT"=0,"AppleSEPIntelIOPNub"=0,"AppleSmartBatteryHFDataClient"=0,"_IOFramebufferNotifier"=4,"IOBluetoothDataQueue"=0,"IOHDAController"=1,"AppleIntelSlowAdaptiveClockingManager"=1,"AppleUSBHostRequest"=2,"IODisplayAssertionUserClient"=0,"IOSKRegion"=33,"IOMedia"=11,"IO80211VirtualInterface"=0,"AppleUSBAudioDictionary"=0,"IOHistogramReporter"=5,"IOHIDAction"=0,"IOPlatformPluginFamilyPriv"=1,"IONVMeControllerPolledAdapter"=1,"IOPerfControlWorkContext"=115,"IO80211AWDLPeerManager"=0,"AppleHDAFunctionGroupExternalControlFactory"=0,"AppleSMBusDevice"=0,"IOBluetoothMemoryBlockQueue"=1,"EndpointSecurityDriverClient"=1,"OSSymbol"=22029,"IOSurfaceSharedEventNotificationPort"=0,"AppleUserHIDDevice"=0,"IOSMBusController"=1,"KDIDiskImageNubUserClient"=0,"IO80211LinkQualityMonitor"=0,"AppleRSMCommand"=0,"OSEntitlements"=1287,"AppleACPIPlatformExpert"=1,"IORegistryPlane"=8,"AppleUSBCDCControl"=0,"IOHIDLibUserClient"=0,"IOUSBMassStorageDriverNub"=0,"AppleUSBHostUserClient"=1,"AppleIntelUSBXHCI"=1,"AppleUSBInterfaceIterator"=0,"IOSlaveEndpoint"=0,"AppleCyrusUserClient"=0,"AppleHDAFunctionGroupExternalControl_GPIO"=1,"AppleSMBusController"=0,"CCDataPipeBlobOS"=0,"IOInterruptEventSource"=35,"VoodooGPIOSunrisePointH"=0,"AppleUSBXHCIInterrupterMSI"=6,"IOSkywalkPacketBufferPool"=0,"ACPI_SMC_GPU_CtrlLoop"=0,"AudioAUUCDriver"=1,"AppleUSBUserHCI"=0,"IO80211ServiceRequestDescriptor"=0,"OSObject"=128,"IOHIDTranslationEventReq"=0,"AppleHDAMikeyInternalCS8409"=0,"IOHDIXController"=1,"IOStateNotificationItem"=4,"TSNAssistedInterface"=0,"IOMbufNaturalMemoryCursor"=1312,"IOWatchdog"=1,"KDIEncoding"=0,"VoodooI2CACPIController"=0,"AppleHDAPathSet"=4,"IOKDP"=0,"CCIOReporterDataStream"=1,"IOBluetoothHIDDriver"=0,"IO80211AssociationJoinSnapshot"=1,"IOFence"=0,"AppleUSBNetworkingCommand"=0,"IOGraphicsDevice"=1,"IOResources"=1,"AppleNVMeRequest"=256,"IOUSBControllerListElement"=0,"IOAVBValidateUserClient"=0,"AUAMixerUnitDictionary"=0,"DIDeviceCreatorUserClient"=0,"KDIObject"=2,"AppleHDAWidgetAD1988"=0,"DspFuncMultiBandCompressor"=0,"GMetricsRecorder"=0,"IOGraphicsSystemWorkLoop"=1,"ItlHalService"=1,"IOSCSIPeripheralDeviceNub"=0,"RSNSupplicant"=1,"AppleUSBXHCIARRequestPool"=0,"VoodooI2CTouchscreenHIDEventDriver"=0,"IOSurfaceDeviceCache"=0,"AppleUIOMemUserClient"=0,"AGPMController"=1,"AppleUSBXHCIRequestPool"=3,"CoreAnalyticsPipe"=1,"AppleGraphicsDeviceControlClient"=1,"IOUSBBus"=1,"IOServicePM"=125,"AppleUSBLegacyDeviceUserClient"=1,"IOBigMemoryCursor"=0,"TSNInterface"=0,"CTimeout"=255,"AppleSmartBattery"=1,"AppleBusControllerCS8409"=0,"ACMRestrictedModeKernelService"=1,"AppleUSBHostBusCurrentPool"=0,"AppleHDAWidgetMCP89"=0,"IOMemoryDescriptor"=2,"AppleTDMAKSServices"=0,"AppleUIOMem"=1,"IOTimeSyncTimeSyncTimePort"=1,"AppleIntelLpssGspi"=0,"AppleHDAFunctionGroupATI_RS780"=0,"IOHIDActionQueue"=0,"IOUSBInterfaceUserClientV2"=1,"IODMAController"=0,"AppleUSBInterface"=8,"VoodooI2CControllerDriver"=1,"IOUSBControllerV3"=1,"TSNBSDStackInterface"=0,"AppleGraphicsControl"=0,"IOBluetoothSCOMemoryDescriptorRetainer"=0,"com_apple_driver_16X50PCI"=0,"EventQueue"=0,"NootedGreen"=1,"IOHIDTranslationEvent"=0,"AppleHDATDMBusManagerCS8409"=0,"AGPMEventSource"=1,"IOSystemStateNotification"=1,"SEPApNonce"=0,"KDIRAMBackingStore"=0,"DspFuncEQ"=1,"IOCatalogue"=1,"IOWorkLoop"=71,"AppleSEPEndpointService"=0,"IODataQueue"=1,"AppleAPFSMediaBSDClient"=2,"AppleUSBUserHCIRequestPool"=0,"CCIOReporterLogStream"=1,"AppleRSMChannelTestClient"=0,"ACMPersistentStoreKernelService"=1,"USBToolBox"=0,"IOHIDDevice"=4,"IOHDACodecDriver"=1,"IOSkywalkNetworkPacket"=0,"AppleHDAWidgetATI_RS730"=0,"IOBluetoothL2CAPChannel"=0,"AppleUSBHostFrameworkInterfaceClient"=3,"CCStream"=2,"AppleGCSyntheticDeviceUserClient"=0,"AppleGCResourceDeviceUserClient"=1,"AirportItlwm"=1,"_IOMemoryDescriptorMixedData"=4475,"IOHIDElement"=1,"IO80211InfraInterface"=0,"IOReportHub"=1,"VoodooGPIOCannonLakeH"=0,"AppleHDAWidgetATI_RS780"=0,"DspFunc6ChOutput"=0,"IO80211ScanManager"=1,"IOEthernetController"=1,"DspFuncStereoEnhancer"=0,"IOSlowAdaptiveClockingDomain"=0,"IOTimerEventSource"=184,"AppleHDAFunctionGroupCS8409"=0,"VoodooI2CDigitiserStylus"=0,"CryptoBufferDescriptor"=1152,"IOPCIConfigurator"=1,"IOSerialDriverSync"=0,"com_apple_filesystems_hfs_encodings"=1,"Stopwatch"=3,"IO80211NetBootNub"=0,"IOTimeSyncEthernetConcreteControllerAdapter"=0,"IOUserNetworkMemorySegment"=0,"DspFunc2WayCrossover"=0,"CCLogPipe"=2,"AppleSMCClient"=4,"AppleHDAWidgetGT216"=0,"AppleUSBXHCIFL1100CommandRing"=0,"AIDReporterState"=0,"HookCase"=1,"IOServiceMessageUserNotification"=226,"AppleXsanScheme"=0,"AppleTDMAKSDriver"=0,"IOReporter"=3,"IOTimeSyncUserClient"=0,"VoodooI2CSensorHubEnabler"=0,"OSObjectWrapper"=0,"AppleUSBHostBusCurrentClient"=4,"IOAVBTimeSyncCapture"=0,"IOMultiMemoryDescriptor"=0,"AnVMSRUserClient"=0,"DspFuncVolume_3ch"=0,"IOPlatformPluginFamily"=1,"hv_vmx_vma_t"=0,"IOSCSILogicalUnitNub"=0,"AUAInputTerminalDictionary"=0,"AppleLIFSUserClient"=3,"AUAStreamDictionary"=0,"HIDMTQueueEventSource"=1,"IOTimeSyncEthernetControllerAdapter"=0,"AppleHDAWidget_80862807"=0,"OSValueObject<PMAssertStruct>"=1,"IOSCSIHierarchicalLogicalUnit"=0,"IOTimeSyncDaemonServiceProcess"=2,"IORSMReceiveQueueEntry"=0,"AppleDiskImagesController"=1,"DisplayMergeNub"=0,"AppleHDATDMDeviceFactory"=0,"AppleSEPDeviceService"=0,"IOTimeSyncClockMapping"=2,"OSValueObject<OSKextRequestResourceCallback>"=0,"AIDCircularBuffer"=0,"KDIURL"=1,"IntelBluetoothOpsGen3"=0,"AGPMHeuristic1"=0,"IOPanicPlatform"=0,"IODMAEventSource"=0,"IOSCSIMultipathedLogicalUnit"=0,"IOPlatformDevice"=4,"AppleNVMeSMARTUserClient"=0,"AppleHDAWidgetCS4208"=0,"AppleHIDTransportIODataQueue"=0,"DspFuncSum"=0,"AppleUSBHostDARTDMACommand"=0,"IOSurfaceDescriptorComponent"=0,"AIDLogger"=0,"DspFuncStereoToMono"=0,"AppleUSBAudioEngine"=0,"IOUserNetworkEthernet"=0,"AppleUSBHostResourcesTypeC"=0,"KDIUDIFCacheBuffer"=0,"AppleHDATDMAmpSSM3515"=0,"AppleHDAAudioSelectorControlDP"=0,"CCCapture"=0,"AppleMultitouchHIDEventService"=0,"AppleUSBHostFrameworkDeviceClient"=0,"IOSurfaceWiredSendRight"=0,"IO80211RangingManager"=1,"VoodooI2CDigitiserTransducer"=5,"IOUSBMassStorageUASDriverCommand"=0,"IOSkywalkController"=0,"IOAudioControlUserClient"=32,"IOAVBStreamCaptureUserClient"=0,"DspBuffer"=4,"IOStateNotificationListener"=0,"IOAudioEngine"=1,"OSSerialize"=1,"ALCUserClient"=0,"AppleUSBDescriptorCache"=3,"IOSurfaceSharedEventReference"=0,"IOAudioDevice"=2,"OSKext"=504,"AppleHSBluetoothDevice"=0,"ApplePMC"=1,"AppleUSBDescriptor"=16,"AppleSMBIOS"=1,"com_apple_driver_pm_msr_reporter"=1,"IOProviderPropertyMerger"=0,"IOSkywalkTxCompletionQueue"=0,"AUAClockMultiplierDictionary"=0,"SMCWatchDogTimer"=1,"VoodooInputSimulatorDevice"=1,"AppleGPUWrangler_GPU"=1,"IOTimeSyncUnicastLinkLayerEtEPort"=0,"AppleHDAFunctionGroupAD1988"=0,"AppleUSBHostBouncedDMACommand"=0,"_IOServiceJob"=0,"IO80211InterfaceMonitor"=1,"AGDPClientControl"=0,"IOPMPowerStateQueue"=1,"NVMeFix"=1,"AppleEmbeddedHIDEventService"=0,"IOUserNetworkPacketQueue"=0,"OSIterator"=3,"hv_vcpu_t"=0,"IOAccelerationUserClient"=1,"IOBluetoothTimerEventSource"=0,"AppleUSBHostBusCurrentAllocator"=7,"IOMemoryMap"=672,"CCDataStream"=2,"IO80211RangingManagerExt"=0,"DspFuncDelay"=0,"IOAudioToggleControl"=10,"AppleSEPTesting"=0,"com_apple_driver_pmtelemetry"=1,"IOAVBTimeSyncCaptureUserClient"=0,"SCSITask"=0,"AppleSmartBatteryManagerUserClient"=0,"IOBluetoothL2CAPSupervisoryFrameMemoryBlock"=0,"IOHDIXHDDriveOutKernel"=0,"IOUserUserClient"=3,"IOUSBMassStorageCBIDriver"=0,"AppleNVMeController"=0,"AppleUSBXHCIDevice"=3,"IO80211Controller"=1,"AppleMobileFileIntegrity"=1,"AUAExtensionUnitDictionary"=0,"AGDCBacklightControl"=0,"AppleHDAEngineUserClient"=0,"AppleHDAFunctionGroupMCP79"=0,"X86PlatformPlugin"=1,"IOPCIDiagnosticsClient"=0,"IOHIDParamUserClient"=4,"IOPCIBridge"=2,"IORSMChannel"=0,"AppleASMediaUSBXHCIIsochronousRequestPool"=0,"AppleEffaceableStorageUserClient"=0,"OSData"=4943,"IORegistryIterator"=1,"AIDReporterSimple"=0,"AppleUIOPCI"=0,"IOHDIXCommandPool"=1,"TransducerState"=0,"PMAssertionsTracker"=1,"IOOutputQueue"=1,"AppleSEPUserClient"=0,"com_waves_WCAudioGridInterfaceFilter"=3,"IOExclaveProxy"=0,"EndpointSecurityExternalClient"=0,"AppleUSBHostDMACommand"=0,"AppleEmbeddedKeyboard"=0,"DspFuncCrossover"=0,"IOSCSIPeripheralDeviceType00"=0,"IOPMClientAck"=0,"IO80211PeerManager"=0,"IOHDIXHDDriveNub"=1,"AppleKeyStoreCommand"=2,"SMIMonitor"=1,"AppleACPIPlatformUserClient"=0,"AppleNVMeRequestTimer"=1,"IOSkywalkLegacyEthernetInterface"=0,"IOHIDKeyboardEventDevice"=2,"IOSCSITargetDevice"=0,"AppleBacklightDisplay"=0,"IOTimeSyncDaemonUserClient"=1,"IORootParent"=1,"AppleUSB20HostController"=0,"AppleASMedia1042USBXHCI"=0,"DspFuncMozartCompressor"=0,"com_apple_driver_pm_cstate_reporter"=1,"IO80211PeerMonitor"=0,"AppleUSBAudioControlInterface"=0,"AIDQueueEventSource"=0,"PMSettingObject"=5,"IODispatchSource"=0,"AppleUSBHostPortInterruptEventSource"=7,"TSNBSDInterface"=0,"AppleACPIPCI"=1,"AppleKeyStore"=1,"BatteryManager"=1,"IOUSBHostInterfaceIterator"=0,"IOUserNetworkRxSubmissionQueue"=0,"AppleGPUWrangler_MatchNotificationWorkItem"=0,"IOPMinformee"=73,"AppleUSBHostDMABufferMemoryDescriptor"=23,"IOUSBCommand"=0,"IOPMPowerSource"=1,"IOSlowAdaptiveClockingManager"=1,"AppleGCResource"=1,"hv_vmx_space_t"=0,"IOTimeSyncReverseSync"=0,"EndpointSecurityDriver"=1,"IOTimeSyncEdgeTimeCapture"=0,"IOUSBLog"=1,"DspFuncLimiter"=0,"CCPipeUserClient"=0,"AppleUSBHostResourcesBusPowerClient"=0,"IOTimeSyncTimedEdgeGenerator"=0,"AppleSEPManager"=0,"AppleHDAMikeyInternalFactory"=0,"IOBluetoothDevice"=1,"AppleBusPowerController"=0,"DspFuncWithSharedMemory"=0,"IOTimeSyncgPTPManager"=1,"IOExtensiblePaniclog"=0,"TSNUserWiFiControlInterface"=0,"AppleIntelPanelA"=1,"IODisplayParameterHandler"=3,"IOBufferMemoryDescriptor"=221,"AppleUSBXHCILPTH"=0,"AppleACPIButton"=1,"AppleHDADriverUserClient"=0,"CCPipe"=2,"IOHIDEventServiceUserClient"=6,"AppleHDAWidgetCS8409"=0,"AppleSystemPolicyUserClient"=2,"AppleHDAWidgetALC885"=0,"DspFuncBeam2"=0,"DspFunc2Dot1Crossover"=0,"AppleUSBHostInterfaceUserClient"=0,"AppleRSMChannelServerClient"=0,"AppleMultitouchHIDEventDriver"=0,"IOPolledInterface"=3,"IONDRVDevice"=0,"IOTimeSyncTimeLineFilter128"=0,"OSKextSavedMutableSegment"=6,"IOUserSerialUserClient"=0,"IOHIDElementContainer"=1,"AppleUSBDevice"=4,"IOPlatformExpertDevice"=1,"IOSurfaceMemoryTag"=110,"IOUSBHubPolicyMaker"=1,"IOHIPointing"=1,"IOBluetoothHCIController"=1,"AIDUserClient"=0,"IOTimeSyncFDEtEPort"=0,"AudioAUUC"=0,"AppleAPFSContainerScheme"=2,"IONetworkData"=4,"IOAudioLevelControl"=4,"AUAClockSourceDictionary"=0,"AppleUSBXHCISPTLP"=0,"IOECStateNotifier"=0,"IODTNVRAMPlatformNotifier"=0,"IOUSBCommandPool"=0,"AUAProcessingUnitDictionary"=0,"IORSMReceiveQueue"=0,"AppleAPFSVolumeBSDClient"=7,"AppleMultitouchEventServiceWrapper"=0,"IO80211FlowQueue"=0,"AppleHDADriver"=1,"AppleImage4UserClient"=0,"OSAction_IOHIDEventService__SetLED"=0,"IOPlatformPluginDevice"=2,"AppleTDMAKSCommand"=0,"IODTNVRAMDiags"=0,"KDISparseDiskImage"=0,"IOKernelDebugger"=0,"AppleRXE"=1,"IOBacklightDisplay"=0,"IODispatchQueue"=11,"CoreAnalyticsMessenger"=1,"AppleFIVRDriver"=0,"KDIHTTPBackingStore"=0,"IONetworkMedium"=1,"IODisplayConnect"=1,"CCIOService"=0,"ACPI_SMC_PluginUserClient"=0,"IOSurfaceDescriptorContext"=0,"IOSkywalkCloneableNetworkPacket"=0,"IOHIDResource"=1,"IOUserNetworkQueueSet"=0,"IOTimeSyncTimeLineFilterIIR"=0,"AGPMHeuristic0"=0,"AppleHDAWidgetATI_RS710"=0,"AppleNVMeTranslationSMARTUserClient"=0,"ALCUserClientProvider"=0,"VoodooGPIOSunrisePointLP"=0,"AppleHDAWidgetWM8800"=0,"AppleSATLSMARTUserClient"=0,"AppleUSBCDCCompositeDevice"=0,"AppleBSDKextStarter"=1,"IOTimeSyncPort"=1,"AppleUSBXHCISparseRequestPool"=0,"IOUSBRootHubDevice"=0,"AppleMultitouchInputHIDEventDriver"=1,"KDISocket"=0,"IOHIDPointingEventDevice"=1,"IOTimeSyncgPTPManagerUserClient"=0,"IOHIDDeviceShim"=2,"AppleSCSISubsystemGlobals"=1,"IOTimeSyncTimeOfDayPort"=0,"AppleHDAWidget_1002AAA0"=0,"OSValueObject<SMCNotification>"=1,"IOBluetoothObject"=1,"IOBluetoothACPIMethods"=1,"OSMetaClass"=0,"AppleUSBXHCIARIsochronousRequestPool"=0,"DspFuncVolume"=1,"AppleImage4"=1,"AppleGraphicsDeviceControl"=1,"CCDataPipeBlobOD"=0,"IOUSBControllerV2"=1,"IOHIDPointing"=0,"IOAudioSelectorControl"=2,"DspFuncAudioMeter"=0,"IOUserSerial"=1,"IOUserNetworkTxSubmissionQueue"=0,"CCDataSession"=0,"IO80211P2PSteeringManager"=0,"IOSKMapper"=7,"OSValueObject<__ReportResult>"=0,"IOSCSIProtocolServices"=0,"IOHIDEventDummyService"=0,"VoodooInput"=1,"IOPlatformPluginThermalProfile"=0,"AppleEFINVRAM"=1,"IOKitDiagnostics"=1,"IOTimeSyncDomain"=1,"AppleMultitouchDeviceUserClient"=1,"IODTNVRAM"=1,"IOHIDTranslationService"=0,"IOHIDEventServiceQueue"=7,"com_apple_driver_pm_reporter"=8,"AppleUSBHostDMACommandPool"=2,"IO80211P2PDFSProxyManager"=0,"AppleUSBXHCITDPool"=2,"IOSurfaceMemoryRegion"=0,"AppleACPIEC"=1,"AppleRTCUserClient"=2,"IO80211SkywalkInterface"=0,"DspFuncXTC"=0,"AppleUSBAudioIsocPipe"=0,"UIOPCIMatch"=0,"IO80211P2PSupervisor"=0,"AppleHDAWidgetMCP79"=0,"AppleSSE"=1,"IOBluetoothHIDChannel"=0,"hv_vm_t"=0,"hv_vatpic_t"=0,"IOPMRequest"=0,"IOECTimeSyncHandler"=0,"AppleGCSyntheticDevice"=0,"IOHIDUserDevice"=0,"IOHIKeyboard"=2,"AppleGPUWrangler_BusyInterestWorkItem"=0,"AppleHDATDMAmpTAS5758L"=0,"AppleMCCSControlCello"=0,"AUAASEndpointDictionary"=0,"AppleHDAFunctionGroupATI_Park"=0,"AppleXsanDevice"=0,"IOService"=204,"IOSurfaceSharedEvent"=0,"EndpointSecurityNoAuthClient"=0,"IORS232SerialStreamSync"=0,"IOUserServerCheckInToken"=3,"IOBluetoothWorkLoop"=0,"AppleHDAWidget_10DE0014"=0,"ACMAccessoryCacheKernelService"=1,"IOHIDEventRepairDriver"=0,"AppleHDAFunctionGroup_10DE0014"=0,"ACPI_SMC_Idle_CtrlLoop"=0,"IOSKMemoryBuffer"=119,"IOTimeSyncUnicastUDPv4EtEPort"=0,"KextAudit"=1,"AppleSMCFamily"=1,"IOFramebuffer"=1,"KDIDiskImage"=1,"HIDAlwaysNotifyingIODataQueue"=1,"pci_intr_handle"=1,"AppleMultitouchDevice"=1,"AppleIPAppender"=1,"AppleUSBXHCIIsochronousTransferRing"=0,"IOPMCompletionQueue"=1,"IOPlatformStateSensor"=0,"AppleSEPCommandPool"=0,"IOTimeSyncUserFilteredService"=0,"DspFuncVirtualization"=0,"IOSkywalkQueueSet"=0,"AppleHV"=1,"AppleCredentialManagerUserClient"=8,"AppleFileSystemDriver"=0,"mDNSOffloadUserClient"=0,"IOUSBHostInterfaceLegacyIterator"=0,"AppleUSBHostPort"=1,"PassthruInterruptController"=0,"CCDataPipeUserClient"=0,"AppleUSBUserHCICommandQueue"=0,"AppleHDAWidget"=1,"IOFDiskPartitionScheme"=0,"com_apple_filesystems_hfs"=1,"AppleMultitouchEventDriverWrapper"=1,"IODataQueueDispatchSource"=0,"KDIDiskImageNub"=1,"AppleTDMEffaceableNORDriver"=0,"OSAction_IOHIDDevice__CompleteReport"=0,"AppleUSBXHCITR"=0,"AppleHDAFunctionGroupCS4206"=0,"AppleUSBUserHCIRequest"=0,"AppleUSBXHCIStreamingEndpoint"=0,"AppleHDACodecGeneric"=1,"AppleGPUWrangler_DeferredReleaseWorkItem"=0,"AppleSSEUserClient"=0,"IOUSBMassStorageInterfaceNub"=0,"IOHIDPowerSourceController"=1,"IOPMPowerSourceList"=0,"AppleHDAEngineOutputDP"=0,"IOHIDSystem_notificationData"=0,"OSAction_IOUserClient_KernelCompletion"=0,"com_apple_filesystems_nfs"=1,"OSValueObject<KeyboardReserved>"=2,"AUAEndpointDictionary"=0,"mDNSHandoff"=0,"AppleVTDDeviceMapper"=3,"IOTimeSyncEthernetSoftDMAInterfaceAdapter"=0,"AppleHDAStream"=3,"AppleIntelLpssI2C"=0,"AppleAMDUSBXHCIPCI"=0,"ApplePS2Keyboard"=1,"AppleACPICPUInterruptController"=1,"IOUSBPipe"=0,"TSNITimeSyncHandler"=0,"AppleActuatorDeviceUserClient"=1,"IOAVBControllerHelper"=0,"AppleVTD"=1,"AppleSEPEndpoint"=0,"IOPerfControlClient"=2,"VoodooI2CNativeEngine"=1,"AppleUSBSparseArray"=3,"VirtualSMC"=1,"ApplePS2KeyboardDevice"=1,"EupDSP"=0,"CPUFriendData"=0,"Lilu"=1,"AppleBusControllerFactory"=0,"IOPlatformExpert"=1,"IOUserEthernetController"=0,"IOTimeSyncEthernetPort"=0,"IOUserSCSIPeripheralDeviceType00"=0,"com_apple_driver_pm_uncore_reporter"=1,"TSNWiFiInterface"=0,"AppleUSBController"=1,"IOTimeSyncUserFilteredServiceUserClient"=0,"IOPartitionScheme"=2,"IOAVBTimeSyncSyncUserClient"=0,"IOTimeSyncIntervalFilter128"=0,"IOUserSCSIPeripheralDeviceType07"=0,"ACPI_SMC_CtrlLoop"=0,"IOSlaveFirmware"=0,"AMFIPass"=1,"IOTimeSyncRootService"=1,"AppleASMedia3142USBXHCI"=0,"KDIReadWriteDiskImage"=1,"IOHIDUserClient"=1,"LogManager"=1,"IOACPIPlatformExpert"=1,"hv_vlapic_t"=0,"ACMLockdownModeKernelService"=1,"KDIUDIFCacheObject"=0,"com_apple_driver_pm_cpu_mbox"=105,"IOUSBControllerIsochEndpoint"=0,"IOTimeSyncEthernetModernInterfaceAdapter"=0,"DspFuncLoudness"=0,"IOSurfaceDeviceMemoryRegion"=0,"IOServiceCompatibility"=3,"IOHIDEventService"=4,"IOAudioTimeIntervalFilterFIR"=0,"AppleASMediaUSBXHCIIsochronousRequest"=0,"IOTimeSyncIntervalFilterIIR128"=0,"IOUserEthernetInterface"=0,"OSDextStatistics"=17,"IOAudioPort"=0,"IOInterruptDispatchSource"=0,"AppleUSBBusPowerClient"=0,"IOSkywalkPacketBuffer"=0,"IOHIKeyboardMapper"=2,"AppleSMBusPCI"=0,"OSAction_IOHIDEventService__CopyEvent"=0,"IOTimeSyncUnicastUDPv6EtEPort"=0,"ACMBridgeKernelService"=0,"IOTimeSyncIntervalFilterIIR"=0,"IOUSBHostInterface"=8,"AppleGPUWrangler"=1,"hv_vmx_vcpu_t"=0,"com_apple_driver_pm_msr_limits_reporter"=1,"OSArray"=11339,"IOGeneralMemoryDescriptor"=3091,"IOSkywalkBSDClient"=0,"IOSCSICommandGate"=0,"IOUSBIsocCommand"=0,"KDISecondaryEncoding"=0,"AIDCircularWriteBufferShared"=0,"IOSlaveProcessor"=0,"IO80211FlowQueueLegacy"=0,"DIDeviceIOUserClient"=0,"KDIShadowedDiskImage"=0,"IO80211ControllerMonitor"=1,"IOTimeSyncClockTestUserClient"=0,"IOUSBWorkLoop"=1,"AppleCallbackPowerSource"=0,"IOSurfaceClient"=150,"IOAudioEngineEntry"=0,"com_apple_driver_pm_ltr_reporter"=1,"IOConfigurationDescriptorOrderedSet"=1,"AppleBusController"=0,"AIDSerialLogger"=0,"AppleIntelICLUSBXHCI"=0,"AppleGraphicsDeviceControlPlugin"=1,"IO80211CommandQueue"=0,"IOCancelationWrapper"=0,"HibernationFixup"=1,"DspFuncManager"=2,"AppleUSB20XHCITypeCPort"=0,"DspFuncSplitBand"=0,"IOBootNDRV"=1,"IOHIDElementPrivate"=2622,"AppleHDAPath"=4,"AppleSSEInterface"=1,"AGDCPluginDisplayMetrics"=1,"VoodooI2CHIDDeviceOverride"=0,"IOHITablet"=0,"AUAClockSelectorDictionary"=0,"AppleTDMBlockStorageServices"=0,"AppleACPIEventController"=1,"IOFramebufferUserClient"=1},"IOMalloc allocation"=121834682} | | | | "model" = <"Intel Iris Xe Graphics"> | "boot-args" = "-v debug=0x100 keepsyms=1 agdpmod=pikera -radcodec -wegswitchgpu -wegbeta -amfipassbeta -lilubetaall -vi2c-force-polling amfi_get_out_of_my_way=1 -NGreenDebug -disablegfxfirmware ngreen-dmc=skip -allow3d -nbdyldoff" jkbuha@JuliansthGenAir ~ % system_profiler SPDisplaysDataType 2>/dev/null | head -20 Graphics/Displays: Intel Iris Xe Graphics: Chipset Model: Intel Iris Xe Graphics Type: GPU Bus: Built-In Slot: built-in VRAM (Total): 8 MB VRAM (Dynamic, Max): Vendor: Intel Device ID: 0x9a49 Revision ID: 0x0001 Kernel Extension Info: No Kext Loaded Displays: Display: Resolution: 1920 x 1200 (WUXGA - Widescreen Ultra eXtended Graphics Array) UI Looks like: 1920 x 1200 Framebuffer Depth: 24-Bit Color (ARGB8888) Main Display: Yes jkbuha@JuliansthGenAir ~ % Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849037 Share on other sites More sharing options...
Stezza88 Posted April 12 Author Share Posted April 12 (edited) My father has been taken today to the hospital.. they have found in him a cancer at the liver.. i need to suspehend a moment.. i'll be back soon as possible.. post logs and photos if you got problems.. blessing everybody 12 minutes ago, jkbuha said: Same issue here with i7-1185g7. Built NootedGreen, Lilu-NootedGreen and HookCase, all loading and running successfully, but not loading any TGL kexts from /L/E. Last login: Sun Apr 12 16:09:10 on ttys000 jkbuha@JuliansthGenAir ~ % kextstat | grep -i "ngreen\|NootedGreen\|StezzaPilot" Executing: /usr/bin/kmutil showloaded No variant specified, falling back to release 74 0 0xffffff8006b2d000 0x4e000 0x4e000 com.StezzaPilot.NootedGreen (1.0.0) 9FD0E4A7-B228-37FA-A902-28B738F711FD <57 18 9 7 6 3 2 1> jkbuha@JuliansthGenAir ~ % kextstat | grep -i "lilu\|vit9696" Executing: /usr/bin/kmutil showloaded No variant specified, falling back to release 57 16 0xffffff8004012000 0x88000 0x88000 as.vit9696.Lilu (1.7.3) EEAADD41-5187-36D3-8097-E99D80AB336F <9 7 6 3 2 1> 60 0 0xffffff800540d000 0x1cd000 0x1cd000 as.vit9696.AppleALC (1.9.7) CBFC7A37-E2E8-39D9-AF1F-77E36A9ACA66 <57 18 9 7 6 3 1> 65 0 0xffffff80069a4000 0xd000 0xd000 as.vit9696.RestrictEvents (1.1.7) A708639D-FD60-3173-8B5C-9B536E7A8191 <57 9 7 6 3 2 1> 66 5 0xffffff800409a000 0x19000 0x19000 as.vit9696.VirtualSMC (1.3.8) A6D60AC3-212F-3186-8A6B-96A81DC7240B <57 17 9 7 6 3 1> 76 0 0xffffff80069e1000 0xc000 0xc000 as.vit9696.SMCProcessor (1.3.8) A0652DDF-5B1B-352F-8823-0EEF1D612D6A <66 57 17 9 7 6 3 2 1> jkbuha@JuliansthGenAir ~ % kextstat | grep -i "TGL\|xxxxx" Executing: /usr/bin/kmutil showloaded No variant specified, falling back to release jkbuha@JuliansthGenAir ~ % kextstat | grep -i "HookCase\|smichaud" Executing: /usr/bin/kmutil showloaded No variant specified, falling back to release 183 0 0xffffff7f97385000 0x21306 0x21306 org.smichaud.HookCase (8.0.1) 1B4A7F61-3F35-3F47-BBEE-10E6870DDF19 <18 9 7 6 3 2 1> jkbuha@JuliansthGenAir ~ % log show --last 5m --predicate 'eventMessage contains "ngreen" or eventMessage contains "NGreen" or eventMessage contains "NootedGreen"' 2>/dev/null | head -30 Timestamp Thread Type Activity PID TTL jkbuha@JuliansthGenAir ~ % ioreg -l -p IOService | grep -i "Iris Xe\|Intel.*Graphics\|TGL\|ngreen" | head -10 | "IOKitDiagnostics" = {"Instance allocation"=27927760,"Container allocation"=5875438,"Pageable allocation"=424792064,"Classes"={"IONDRVFramebuffer"=1,"IOHIDEventServiceFastPathUserClient"=0,"IONaturalMemoryCursor"=0,"IOKitDiagnosticsClient"=0,"AppleUSBXHCIIsochronousRequestPool"=2,"AppleUSBDiagnostics"=0,"IOAudioClientBufferSet"=0,"AppleHDAMikeyInternalCS4208"=0,"AppleSMCPMC"=0,"IOEventLink"=0,"AppleUSBRequest"=1,"TSNPacketPool"=0,"AppleASMedia1042USBXHCICommandRing"=0,"DspFuncBuzzKill"=0,"IOUSBMassStorageDriverRequestTimer"=0,"IOUserBlockStorageDevice"=0,"IOHDACodecDevice"=1,"AppleHDATDM_Codec"=0,"IORegistryEntry"=144,"ApplePS2Controller"=1,"IOUSBMassStorageUASDriver"=0,"AppleActuatorDevice"=1,"AppleHDAWorkLoop"=1,"IORTC"=1,"AppleNVMeRequestPoolTagReserve"=0,"IOHIDevice"=2,"IOPCIEventSource"=0,"OSAction_IOUserNetworkEthernet__TxSQDataAvailable"=0,"KDIFileBackingStore"=1,"AppleHDAHardwareConfigDriver"=0,"IO80211DriverCommandDescriptor"=0,"AppleHDAHardwareConfigDriverLoader"=0,"DspFuncUserClient"=0,"IOMemoryCursor"=1,"IOPMGR"=0,"AppleSmartBatteryManager"=1,"ItlIwm"=0,"AppleHDATDM_CS42L81"=0,"IOBreaker"=0,"AppleHDAFunctionGroup_80862807"=0,"AppleUSBUserHCIDevice"=0,"IOUSBLowLatencyCommandLegacy"=0,"IOTimeSyncClockManagerDaemonClient"=2,"AppleUSBUserHCITransferQueue"=0,"EFIData"=334,"AIDCircularBufferShared"=0,"USBDeviceController"=0,"AppleUSBXHCIPort"=2,"AppleSMCControl"=0,"DspFunc4ChOutput"=0,"AppleLockdownMode"=1,"IOSurfaceSharedEventNotification"=0,"AppleKeyStoreUserClient"=46,"IOTimeSyncSyncDaemonClient"=1,"AppleHDAFunctionGroupWM8800"=0,"IOSMBusRequest"=0,"VoodooGPIOAMD"=0,"IOSkywalkPacket"=0,"IntelBTPatcher"=1,"DspFuncBeamFormer"=0,"IOPMServiceInterestNotifier"=127,"AppleACPILid"=1,"hv_vmx_vcpua_t"=0,"IOStorage"=4,"IOHIDResourceQueue"=0,"AppleUpstreamUserClientDriver"=1,"IOSkywalkLogicalLink"=0,"AppleRSMChannelControllerClient"=1,"ItlIwn"=0,"AppleUSBRequestPool"=2,"IOSerialStreamSync"=1,"IOHIDConsumer"=0,"AppleSMCRTC"=0,"IOSharedInterruptController"=4,"AppleUSBHostCompositeDevice"=1,"IO80211AWDLMulticastPeer"=0,"IOHIDClientData"=6,"IOBluetoothMemoryDescriptorRetainer"=0,"IOGraphicsWorkLoop"=2,"hv_vmx_vm_t"=0,"AppleHDATDMBusManagerCS4208"=0,"OSSerializer"=45,"IOTimeSyncClockManagerUserClient"=0,"OSCollection"=6,"IOPCIMessagedInterruptController"=1,"AppleKeyStoreTestUserClient"=0,"IOUserEthernetResourceUserClient"=0,"IORDMAInterface"=0,"CPUFriend"=1,"com_apple_driver_16X50BusInterface"=0,"IOUSBDeviceUserClientV2"=1,"SmbusHandler"=1,"AppleHDAEngineOutput"=1,"SMCSMBusController"=1,"AIDReporters"=0,"_IOServiceNullNotifier"=1,"AIDInterface"=0,"IOTimeSyncUnicastUDPv4PtPPort"=0,"IOUserNetworkRxCompletionQueue"=0,"AppleCallbackPowerSourceProvider"=1,"IOSkywalkMemorySegment"=0,"IOBluetoothHCIUserClient"=1,"hv_vioapic_t"=0,"AppleIntelPCHPMC"=0,"AppleASMediaUSBXHCIDevice"=0,"IONetworkStackUserClient"=1,"AppleMultitouchEventDriverV2Wrapper"=1,"AppleDisplay"=1,"IOTimeSyncPortManager"=0,"VoltageShiftAnVMSR"=1,"com_apple_driver_pm_cpu_reporter"=1,"_IOServiceNotifier"=693,"IOInterleavedMemoryDescriptor"=0,"AppleAPFSUserClient"=0,"AppleHDAFunctionGroupGT216"=0,"TrackpointDevice"=1,"AppleUSBLegacyInterfaceUserClient"=0,"IOServiceStateNotificationEventSource"=0,"AppleUSBUserHCIResources"=1,"AppleGraphicsDevicePolicy"=0,"AppleHDAFunctionGroupCS4208"=0,"IOSkywalkEthernetInterface"=0,"IOSKArena"=8,"IOTimeSyncEthernetInterfaceAdapter"=0,"AppleUSBXHCILPTCommandRing"=0,"IOUSBHostDevice"=3,"IOSubMemoryDescriptor"=4,"AppleHSBluetoothInterface"=0,"AppleUSBRequestCompleter"=1,"DspFuncVolume_4ch"=0,"IOHIDTranslationServiceClient"=0,"IOUserNetworkWLAN"=0,"IOAVBNubUserClient"=0,"AirportItlwmInterface"=1,"IOServiceUserNotification"=598,"AppleMultitouchTrackpadHIDEventDriver"=1,"AppleFDEKeyStoreUserClient"=0,"AppleUSBHostResourcesTypeCBPC"=0,"IO80211ThroughputCache"=0,"IOPlatformSensor"=0,"IO80211PacketDescriptor"=0,"IOSkywalkNetworkBSDClient"=0,"DspFuncPreGain"=0,"IOTimeSyncDomainDaemonClient"=1,"IOHIDReportElementQueue"=0,"AUAEffectUnitDictionary"=0,"com_apple_filesystems_apfs"=1,"DigitizerTransducer"=0,"IOSKRegionMapper"=22,"IOBluetoothL2CAPInformationFrameMemoryBlock"=0,"IOMbufMemoryCursor"=1,"AppleHDAController"=1,"IOSKMemoryArray"=0,"AppleUSBUserHCITransferStructPool"=0,"IOCPU"=1,"IONetworkStack"=1,"AppleACPIEventPoller"=1,"OSAction_IOUserNetworkEthernet__DataAvailable"=0,"IO80211ActionFrameDescriptor"=0,"DspFuncBiquad"=0,"CCDataPipeBlob"=0,"IOTimeSyncNetworkPortUserClient"=0,"ApplePlatformEnabler"=1,"VoodooInputActuatorDevice"=1,"IOSCSIPeripheralDeviceType07"=0,"IOSlaveMemory"=0,"ACMKeybagKernelService"=0,"AppleHDAFunctionGroupATI_RS710"=0,"ACMRestrictedModeAnalyticsKernelService"=1,"IOSimpleReporter"=232,"IO80211Interface"=1,"AppleUSBUserHCIIsochronousTransferQueue"=0,"AppleUSBXHCILPTHB"=0,"VoodooI2CControllerNub"=1,"IOModemSerialStreamSync"=0,"IOHDIXControllerUserClient"=0,"IOUSBMassStorageCBIDriverNub"=0,"AppleHDATDM_CS42L83"=0,"AppleALC"=1,"com_apple_AppleFSCompression_AppleFSCompressionTypeZlib"=1,"AppleHDATDMAmpMAX98706"=0,"DspFunc2Dot2Crossover"=0,"AppleUSBLegacyRoot"=1,"IOUSBInterface"=1,"CCFaultReporter"=1,"IO80211EventSource"=0,"AppleHDAPathControl"=8,"AGPMClient"=0,"AppleHDATDMAmpTAS5764L"=0,"IOAVBValidate"=1,"AppleKeyStoreTest"=1,"IOSCSIPrimaryCommandsDevice"=0,"AppleNVMeWorkLoop"=2,"AppleSMBusControllerMCP"=0,"IOTimeSyncDomainUserClient"=0,"AppleMCCSControlGibraltar"=0,"AppleUSBAudioInterruptPipe"=0,"IOHIDProviderPropertyMerger"=0,"IOUSBDevice"=1,"IOGDiagnosticUserClient"=0,"AppleSEPControl"=0,"AppleHDAEngineInput"=1,"IOServiceNotificationDispatchSource"=0,"IOUSBMassStorageResourceUserClient"=0,"IntelBluetoothFirmware"=1,"IOSkywalkNetworkInterface"=0,"IOHIDKeyboard"=0,"VoodooI2CPCIController"=1,"IOTimeSyncEdgeTimeCaptureUserClient"=0,"AIDQueueEventSourceWorkItem"=0,"AUAConfigurationDictionary"=0,"IOACPIPlatformDevice"=240,"IOUserService"=2,"IOTimeSyncTSNInterfaceAdapter"=0,"_IOServiceInterestNotifier"=173,"AppleUSBHostRequestCompleter"=3,"IOBluetoothLocalUtilityEventSource"=0,"IOFramebufferI2CInterface"=0,"IOPowerConnection"=91,"IOFBController"=1,"VoodooI2CSensor"=0,"IOWatchDogTimer"=0,"CoreAnalyticsEventRatePolicy"=1,"IOEventSource"=13,"IODMACommand"=52,"IOUserNetworkTxCompletionQueue"=0,"IOMachPort"=2066,"IOPMinformeeList"=125,"VoodooGPIOIceLakeLP"=0,"IO80211AsyncUserClientParameters"=0,"AppleCredentialManager"=1,"IO80211LinkRecovery"=0,"AppleRSMChannelController"=1,"AppleUSB30XHCITypeCPort"=0,"UVCService"=0,"AppleACPIPowerResource"=0,"CCLogStream"=3,"IOPCIHostBridgeData"=1,"AppleUSBHostControllerIsochEndpoint"=0,"AGDPUserClient"=0,"IOHIDEvent"=0,"IO80211AsyncEventUserClient"=0,"DspFuncNoiseCanceller"=1,"OSDictionary"=16635,"IOAGPDevice"=0,"AppleMultitouchMouseHIDEventDriver"=0,"IOHDACodecDeviceUserClient"=0,"AppleActuatorHIDEventDriver"=1,"IOTimeSyncServiceDaemonClient"=5,"AppleUSBXHCIParkingCommandRing"=0,"AppleFDEKeyStore"=1,"IODisplayWrangler"=1,"AppleCyrus"=1,"IOUSBMassStorageDriverUFIDevice"=0,"AppleUSBIORequest"=40,"_IOUserServerCheckInCancellationHandler"=0,"IOUSBPipeV2"=0,"AppleUSBHostLegacyClient"=3,"IOUSBMassStorageResource"=1,"VoodooI2CServices"=1,"IO80211HistogramReporter"=0,"DspFuncFIRdirect"=0,"IOTimeSyncUnicastUDPv6PtPPort"=0,"AppleHDATDMSinkDevice"=0,"AppleUIOPCIUserClient"=0,"Dont_Steal_Mac_OS_X"=1,"SEPEpoch"=0,"IOAudioTimeIntervalFilterIIR"=0,"IOHIDEventSource"=6,"IOSurfaceRootParavirtMapperInterface"=0,"GTraceBuffer"=4,"OSSet"=763,"IOSurfaceShared"=35,"AppleUSBUserHCIUserClient"=0,"AppleIntelPanel"=1,"AppleNVMeRequestPool"=1,"DspFuncCalibrationEQ"=0,"AppleUSB30XHCICardReaderPort"=0,"IOAudioEngineUserClient"=36,"AGPMHeuristic4"=0,"IOPCIHostBridge"=1,"AppleHDAWidget_80862805"=0,"DspFuncChOutput"=0,"IOAVBRingBufferMemoryDescriptor"=0,"VoodooGPIOIntel"=0,"IOCommand"=131,"AppleHDAWidgetAD1984"=35,"IOTimeSyncTranslationMach"=1,"IOAudioTimerEvent"=0,"CCDataPipe"=2,"DspPatchPoint"=8,"HIDMTQueueEventSourceWorkItem"=0,"IOSCSIProtocolInterface"=0,"AppleTDMType00"=0,"AppleUSBXHCIAR"=0,"IOTimeSyncNanosecondSnapshotService"=0,"IOPlatformIO"=0,"IOBluetoothGamepadHIDDriver"=0,"IOAVBNub"=1,"AppleHDAFunctionGroupALC885"=0,"AppleHDAFunctionGroup"=1,"AppleHDAFunctionGroupExternalControl"=2,"IOGUIDPartitionScheme"=1,"AppleHDANode"=2,"IOUSBMassStorageUFIDriverNub"=0,"OSCollectionIterator"=51,"AppleEFIRuntime"=1,"IOHIDPowerSourceClient"=0,"AIDSharedMemoryManager"=0,"IOFilterScheme"=0,"AppleMCCSIOController"=2,"AppleUSBHostResources"=1,"IONVMeController"=1,"AppleUSBAudioIsocFrameList"=0,"IOApplePartitionScheme"=0,"IOSkywalkInterface"=0,"IOSurfaceRootUserClient"=35,"IO80211PeerExtendedStats"=0,"IOTimeSyncTranslationPMGR"=0,"IODisplay"=1,"TDMConfig"=0,"IOHIDAsyncReportQueue"=0,"IOSkywalkPacketQueue"=0,"IOUserEthernetResource"=1,"IOBasicOutputQueue"=1,"VoodooI2CHIDTransducerWrapper"=1,"AppleS3ELabController"=0,"OSAction_IOUserNetworkEthernet__RxSQDataAvailable"=0,"AppleUSBHostControllerListElement"=0,"AppleHDACodec"=1,"AppleSEPIntelIOP"=0,"IOUSBControllerIsochListElement"=0,"AppleGPUWranglerClient"=4,"IOPacketQueue"=1,"IOFramebufferSharedUserClient"=1,"IOUserClient"=27,"IOHITabletPointer"=0,"IOAVBAudioLoader"=0,"IO80211PeerBssSteeringManager"=0,"AppleUSBAudioStreamNode"=0,"AppleUSBHostControllerIsochListElement"=0,"RestrictEvents"=1,"AUAControlDictionary"=0,"IOHIDEventSystemUserClient"=1,"AppleHDAWidgetFactory"=0,"IOHDIXHDDrive"=1,"DIDeviceRequestPool"=0,"IOSurfaceMemoryPoolBunch"=0,"AGPM"=1,"AppleSystemPolicy"=1,"IOSurfaceDescriptor"=0,"VoodooI2CMultitouchHIDEventDriver"=1,"IO80211AWDLPeer"=0,"AIDCircularReadBufferShared"=0,"AppleIPDormancyHandler"=1,"DspFunc3ChOutput"=0,"AppleMCCSControlModule"=1,"IO80211SimpleReporter"=8,"IORDMAFamilyUC"=0,"ACMKernelService"=6,"AppleASMedia3142USBXHCIUserClient"=0,"APFSOSNumberAtomic"=1030,"IOUSBHostPipe"=1,"IOPolledFilePollers"=1,"CoreAnalyticsTestUserClient"=0,"IOTimeSyncDaemonClientBase"=4,"IO80211String"=0,"IOHDIXHDDriveOutKernelUserClient"=0,"IOUSBNotification"=0,"AppleHDAWidgetSTAC9220"=0,"AppleUSBUserHCIPipe"=0,"IOSkywalkNetworkKDPPoller"=0,"IOSkywalkRxSubmissionQueue"=0,"IOUSBInterfaceUserClient"=1,"AppleUSBHostDeviceUserClient"=10,"KDIUDIFEncoding"=0,"AppleHDAMikeyInternal"=0,"IORSMCommand"=0,"IOFramebufferParameterHandler"=1,"AppleTDMControlLUN"=0,"IOGatedOutputQueue"=2,"IOSurface"=110,"AppleUSBRootHubDevice"=1,"com_apple_filesystems_lifs"=1,"IOReportLegend"=2,"com_waves_WCAudioGridDevice"=1,"AppleHDAFunctionGroupMCP89"=0,"SMCBatteryManager"=1,"AppleUSBXHCIEndpoint"=8,"OSValueObject<int>"=0,"IOHIDEventQueue"=0,"AppleIntelUSBXHCICommandRing"=1,"IOSurfaceSendRight"=1,"AppleAPICInterruptController"=1,"AppleSMC"=1,"IOSkywalkNetworkController"=0,"IOTimeSyncService"=2,"AppleSmartBatteryUserClient"=0,"AppleXsanDriver"=0,"IOCommandPool"=5,"IOBlockStorageDevice"=2,"VoodooI2CStylusHIDEventDriver"=0,"AIDService"=0,"AGPMHeuristic"=1,"AppleRSMChannel"=0,"IORSMCommandQueue"=0,"IOPMrootDomain"=1,"BrightnessKeys"=1,"AppleEffaceableStorage"=0,"AUAFeatureUnitDictionary"=0,"IOUSBDeviceUserClient"=1,"IO80211VirtualInterfaceNamer"=1,"KDIUDIFDiskImage"=0,"ItlIwx"=1,"AppleUSBNetworkingCommandPool"=0,"OSUserMetaClass"=171,"IOPlatformControl"=0,"VoodooGPIOCannonLakeLP"=0,"KextAuditUserClient"=1,"VoodooI2CDeviceNub"=1,"IOI2CInterfaceUserClient"=0,"IntelBluetoothOpsGen1"=0,"AppleHDAFunctionGroupAD1984"=1,"DspFuncControlFreak"=0,"_IOOpenServiceIterator"=0,"IOHDIXCommandQueue"=1,"IOCommandGate"=374,"EventElementCollection"=0,"VoodooI2CHIDSYNA3602Device"=0,"IOWorkGroup"=0,"IOUSBMassStorageDriver"=0,"AppleUSBNetworkingHostCommandPool"=0,"DspParameter"=23,"IOPMRequestQueue"=2,"IOSkywalkRxCompletionQueue"=0,"AppleECSMBusController"=0,"IOBlockStorageDriver"=2,"IOTimeSyncInterfaceAdapter"=0,"IOWatchdogx86"=1,"AppleHDAWidgetALC262"=0,"DspFuncThermalSpeakerProtection"=0,"IOHIDWorkLoop"=1,"AUASelectorUnitDictionary"=0,"IOBlockStorageServices"=0,"AppleACPIACAdapter"=1,"IOUSBInterfaceIterator"=0,"IODTPlatformExpert"=1,"IOAppleLabelScheme"=0,"IOBluetoothMemoryBlock"=0,"IOMbufBigMemoryCursor"=0,"IOSlaveMemoryBuffer"=0,"AppleUSBXHCIInterrupter"=1,"AppleUSBXHCIPCI"=2,"AppleUSBXHCIIsochronousEndpoint"=0,"AppleUSBXHCICommandRing"=2,"IOTimeSyncDaemonService"=1,"IOSurfaceMemoryPool"=0,"AUAUnitDictionary"=0,"AppleHDAControllerUserClient"=0,"IOTimeSyncLocalClockPort"=1,"AppleACPIPS2Nub"=1,"IO80211Peer"=0,"RootDomainUserClient"=103,"DspFuncSplineLimiter"=0,"AppleAPFSContainer"=2,"AppleSEPDiscovery"=0,"DspFuncMozartCompressorDualBand"=0,"IONDRV"=1,"AppleHSBluetoothNub"=0,"IOPCIDevice"=27,"AppleUSB20XHCIPort"=5,"IOBluetoothInactivityTimerEventSource"=0,"OSNumber"=44374,"AUAOutputTerminalDictionary"=0,"AIDUserClientLogger"=0,"CCFaultReport"=0,"SMCProcessor"=1,"OSValueObject<AsyncReportParam>"=0,"AppleHDAFunctionGroupExternalControl_VirtualGPO"=1,"AppleUSBUserHCIPort"=0,"IOTimeSyncTimedEdgeGeneratorUserClient"=0,"IOGDiagnosticGTraceClient"=1,"AppleUSBXHCI"=1,"IOTimeSyncIntervalFilter"=0,"IOTimeSyncNetworkPort"=0,"AppleUSBHostPacketFilter"=1,"AppleIntelCNLUSBXHCI"=0,"ACMFirstResponderKernelService"=1,"AppleHDAFunctionGroup_1002AAA0"=0,"IOUserNotification"=2,"IOTimeSyncUnicastLinkLayerPtPPort"=0,"IOHIDKeyboardDevice"=0,"SMCLightSensor"=0,"AppleUSBAudioStream"=0,"IOHDAStream"=2,"AppleUSBXHCILPT"=0,"AppleGPUWrangler_GPUPostStartWorkItem"=0,"com_apple_AppleFSCompression_AppleFSCompressionTypeDataless"=1,"VoodooGPIO"=0,"AGPMHeuristic3"=0,"IOSurfaceSharedEventListener"=0,"AppleUSBXHCITransferRing"=8,"SMCSuperIO"=0,"AppleAPFSSnapshot"=1,"OSDextCrash"=0,"IOWrappedMemoryDescriptor"=0,"AppleHDAFunctionGroupATI_Broadway"=0,"VoodooI2CLogger"=1,"IOUSBHubDevice"=0,"AppleUSBHostDeviceIdler"=3,"IOPMWorkQueue"=1,"IOTimeSyncFilteredService"=0,"VoodooI2CMultitouchInterface"=1,"AGDCBacklightControlNub"=0,"AIDImageDownloader"=0,"IOGuardPageMemoryDescriptor"=0,"AppleUSB30XHCIPort"=2,"AIDEventLogger"=0,"AppleSMBusControllerUserClient"=0,"IODeblocker"=0,"IOUserClient2022"=10,"AppleRTC"=1,"AppleUSBXHCISPT"=1,"IOPlatformCtrlLoop"=0,"IOSharedDataQueue"=3,"X86PlatformShim"=1,"IOSyncer"=0,"AppleGPUWrangler_WorkItem"=0,"AppleDeviceManagementHIDEventService"=0,"IOHDIXHDDriveInKernel"=1,"AppleUSBAudioPlugin"=0,"IORangeAllocator"=2,"IOKitRegistryCompatibility"=1,"OSBoolean"=2,"IOMediaBSDClient"=9,"AppleSEPCommand"=0,"OSAction"=10,"AppleUSBXHCIRequest"=21,"IOUserNetworkLogicalLink"=0,"IOTimeSyncUserFilteredServiceDaemonClient"=0,"OSAction_IOHIDEventService__SetUserProperties"=0,"com_waves_WCAudioGridEngine"=0,"IOWorkQueue"=1,"ApplePlatformEnablerUserClient"=0,"CoreAnalyticsUserClient"=1,"DspFuncAutoGainControl"=0,"IOMapper"=2,"IOHIDInterface"=6,"AppleACPIInterruptLink"=0,"IOUSBMassStorageUFIDriver"=0,"IOPCI2PCIBridge"=4,"IOSurfaceRoot"=1,"IOHIDSystem"=1,"com_apple_BootCache"=1,"IOUSBInterfaceUserClientV3"=2,"BlueToolFixup"=1,"IOAppleBluetoothHIDDriver"=0,"IOUSBHostStream"=0,"LogManagerDevice"=3,"IOTimeSyncgPTPManagerDaemonClient"=1,"AppleHDA8086_9D70Controller"=0,"IOHIDDeviceElementContainer"=6,"AIDReporter"=0,"IOUSBController"=1,"KDIBackingStore"=1,"AppleHDAFunctionGroupATI_RS730"=0,"AppleHDAWidgetATI_Park"=0,"_IOServiceStateNotification"=0,"AppleBacklightParameterHandler"=1,"AppleACPICPU"=8,"IONetworkInterface"=1,"AppleMCCSControlFamily"=1,"IOTimeSyncNetworkPortDaemonClient"=0,"IOBluetoothACLMemoryDescriptor"=0,"IOHIDOOBReportDescriptor"=0,"AppleASMediaUSBXHCIStreamingEndpoint"=0,"IONetworkUserClient"=0,"com_apple_driver_16X50UARTSync"=0,"IOReportUserClient"=3,"AppleUserHIDEventService"=2,"DspFunc2To4Splitter"=0,"AppleUSBXHCIPipe"=8,"DspFuncDRC"=0,"IOServiceStateNotificationDispatchSource"=0,"IOSkywalkLegacyEthernet"=0,"IOHDACodecFunction"=1,"IOCharacterDevice"=3,"IOUSBNub"=2,"AppleUSBHostMergeProperties"=0,"_IOConfigThread"=0,"AppleACPIPMC"=1,"AppleMultitouchHIDEventDriverV2"=1,"AppleHDAEngine"=2,"IOTimeSyncClockManager"=1,"AppleUSBXHCIARRequest"=0,"IO80211FlowQueueDatabase"=1,"AppleUSBAudioDevice"=0,"AppleHDAWidgetGK10X"=0,"AppleUSBHostController"=1,"IODiskImageBlockStorageDeviceOutKernel"=0,"OSValueObject<AsyncCommitParam>"=0,"AppleMultitouchHIDService"=0,"IOTimeSyncFDPtPPort"=0,"AppleSEPXART"=0,"IOUSBMassStorageDriverUFIStorageServices"=0,"AppleRXEDevice"=0,"IOCPUInterruptController"=1,"IOHIDPowerSource"=1,"BtIntel"=0,"ApplePS2MouseDevice"=1,"AppleHDAFunctionGroupFactory"=0,"CoreAnalyticsHub"=1,"IOSkywalkKernelPipeBSDClient"=0,"IOUserServer"=3,"VoodooI2CMultitouchEngine"=1,"IO80211P2PInterface"=0,"CCLogPipeUserClient"=0,"AppleIPAppenderUserClient"=0,"PMHaltWorker"=0,"AppleHDAFunctionGroupALC262"=0,"AppleHDATDMDevice"=0,"VoodooI2CController"=1,"AppleMCCSUserClient"=0,"AppleHSBluetoothHIDDriver"=0,"IOSlaveCPU"=0,"AppleUSBXHCIFL1100"=0,"IOUserNetworkPacket"=0,"AppleUpstreamUserClient"=0,"IOTimeSyncSyncUserClient"=0,"KDISocketPool"=0,"ACPI_SMC_PlatformPlugin"=0,"AppleAPFSGraft"=3,"IOAudioTimeIntervalFilter"=0,"IOTSAEITimeSyncHandler"=0,"AppleUSBTDMMassStorageClass"=0,"IOBootFramebuffer"=0,"IOHIDResourceDeviceUserClient"=0,"IOInterruptController"=5,"DspFunc"=4,"AppleASMediaUSBXHCI"=0,"SMCPolledInterface"=1,"AppleUSBHostResourcesClient"=1,"IOEthernetInterface"=1,"IOSkywalkPacketPoller"=0,"AppleHDAFunctionGroup_80862805"=0,"IOTimeSyncTimeLineFilter"=0,"AppleANS2Controller"=0,"AppleUSBXHCIARIsochronousRequest"=0,"IOAVBStreamCapture"=0,"IOMbufLittleMemoryCursor"=0,"com_waves_WCAudioGridUserClient"=1,"AGDCPlugin"=1,"AppleHDATDMBusManager"=0,"AppleUSBHubPolicyMaker"=1,"IOConditionLock"=0,"IOGraphicsControllerWorkLoop"=1,"IO80211WorkLoop"=1,"AppleUSBAudioComposite"=0,"AppleDiskImageDevice"=0,"IOUSBUserClientLegacy"=1,"AppleUSBHostIORequestPool"=8,"AppleHDAFunctionGroupGK10X"=0,"AppleUSBHostFrameworkClient"=1,"com_apple_driver_pm_pch_reporter"=1,"DspFuncMultiBandDRC"=0,"IOAccelerator"=0,"IOPlatformPluginLegacy"=0,"IOUserResources"=1,"AppleAPFSVolume"=8,"AppleNVMeBuffer"=5,"IOWatchdogUserClient"=1,"IOFenceTransaction"=0,"IOSkywalkStatisticsReporter"=0,"PMTraceWorker"=1,"NVMePMProxy"=1,"AppleUSBXHCISparseRequest"=0,"IOSCSIBlockCommandsDevice"=0,"VoodooI2CDeviceOrientationSensor"=0,"ApplePS2Device"=2,"IO80211QueueCall"=1,"IOAudioControl"=3,"AppleSMBusControllerICH"=0,"IntelBluetoothOpsGen2"=0,"IONVMeBlockStorageDevice"=1,"AppleHDAWidgetCS4206"=0,"IOI2CInterface"=0,"AppleHDAHDMI_DPDriver"=0,"IO80211QueueDescriptor"=0,"IODTNVRAMVariables"=0,"AppleUSBXHCIEndpointSoftRetry"=0,"VoodooI2CPCILakeController"=1,"IOUSBHostIOSource"=1,"AppleHDAFunctionGroupSTAC9220"=0,"VoodooI2CHIDDevice"=1,"OSString"=39856,"IONetworkController"=1,"IODiskImageBlockStorageDeviceInKernel"=1,"IORSMMemoryDescriptorArray"=0,"CCIOReporterHub"=2,"IOUserIterator"=49,"SMCDellSensors"=1,"AppleMCCSParameterHandler"=1,"IOSortableConfigurationDescriptor"=1,"PMSettingHandle"=5,"DspFunc2To6Splitter"=0,"OSOrderedSet"=286,"AppleMobileFileIntegrityUserClient"=0,"AppleUSBXHCIIsochronousRequest"=10,"VoodooI2CPrecisionTouchpadHIDEventDriver"=1,"AppleUSBXHCIStream"=0,"IOHIDEventDriver"=3,"DspFuncClientGainAdjust"=0,"TSNWiFiControlInterface"=0,"IOAudioStream"=1,"IOStateReporter"=7,"AppleUSBXHCIPPT"=0,"IOSerialBSDClient"=1,"com_apple_driver_pm_flex_reporter"=1,"AppleAPFSMedia"=3,"APFSCryptoContext"=1152,"IONotifier"=4,"IOBluetoothL2CAPMemoryBlock"=0,"AIDLoggerUserClient"=0,"AGPMHeuristic2"=1,"OSValueObject<void*>"=0,"VoodooI2CAccelerometerSensor"=0,"AppleUSBPipe"=0,"IOTimeSyncTimeLineFilterIIR128"=0,"AUAADC3ClassSpecificDescriptorFetcher"=0,"IOFilterInterruptEventSource"=5,"IOLittleMemoryCursor"=0,"IOTimeSyncDaemonServiceBase"=1,"DspFuncGain"=1,"IOUserNetworkPacketBufferPool"=0,"VoodooI2CSensorHubEventDriver"=0,"IOHIDPointingDevice"=0,"IOSkywalkTxSubmissionQueue"=0,"AppleUSBXHCIWPT"=0,"AppleSEPIntelIOPNub"=0,"AppleSmartBatteryHFDataClient"=0,"_IOFramebufferNotifier"=4,"IOBluetoothDataQueue"=0,"IOHDAController"=1,"AppleIntelSlowAdaptiveClockingManager"=1,"AppleUSBHostRequest"=2,"IODisplayAssertionUserClient"=0,"IOSKRegion"=33,"IOMedia"=11,"IO80211VirtualInterface"=0,"AppleUSBAudioDictionary"=0,"IOHistogramReporter"=5,"IOHIDAction"=0,"IOPlatformPluginFamilyPriv"=1,"IONVMeControllerPolledAdapter"=1,"IOPerfControlWorkContext"=115,"IO80211AWDLPeerManager"=0,"AppleHDAFunctionGroupExternalControlFactory"=0,"AppleSMBusDevice"=0,"IOBluetoothMemoryBlockQueue"=1,"EndpointSecurityDriverClient"=1,"OSSymbol"=22029,"IOSurfaceSharedEventNotificationPort"=0,"AppleUserHIDDevice"=0,"IOSMBusController"=1,"KDIDiskImageNubUserClient"=0,"IO80211LinkQualityMonitor"=0,"AppleRSMCommand"=0,"OSEntitlements"=1287,"AppleACPIPlatformExpert"=1,"IORegistryPlane"=8,"AppleUSBCDCControl"=0,"IOHIDLibUserClient"=0,"IOUSBMassStorageDriverNub"=0,"AppleUSBHostUserClient"=1,"AppleIntelUSBXHCI"=1,"AppleUSBInterfaceIterator"=0,"IOSlaveEndpoint"=0,"AppleCyrusUserClient"=0,"AppleHDAFunctionGroupExternalControl_GPIO"=1,"AppleSMBusController"=0,"CCDataPipeBlobOS"=0,"IOInterruptEventSource"=35,"VoodooGPIOSunrisePointH"=0,"AppleUSBXHCIInterrupterMSI"=6,"IOSkywalkPacketBufferPool"=0,"ACPI_SMC_GPU_CtrlLoop"=0,"AudioAUUCDriver"=1,"AppleUSBUserHCI"=0,"IO80211ServiceRequestDescriptor"=0,"OSObject"=128,"IOHIDTranslationEventReq"=0,"AppleHDAMikeyInternalCS8409"=0,"IOHDIXController"=1,"IOStateNotificationItem"=4,"TSNAssistedInterface"=0,"IOMbufNaturalMemoryCursor"=1312,"IOWatchdog"=1,"KDIEncoding"=0,"VoodooI2CACPIController"=0,"AppleHDAPathSet"=4,"IOKDP"=0,"CCIOReporterDataStream"=1,"IOBluetoothHIDDriver"=0,"IO80211AssociationJoinSnapshot"=1,"IOFence"=0,"AppleUSBNetworkingCommand"=0,"IOGraphicsDevice"=1,"IOResources"=1,"AppleNVMeRequest"=256,"IOUSBControllerListElement"=0,"IOAVBValidateUserClient"=0,"AUAMixerUnitDictionary"=0,"DIDeviceCreatorUserClient"=0,"KDIObject"=2,"AppleHDAWidgetAD1988"=0,"DspFuncMultiBandCompressor"=0,"GMetricsRecorder"=0,"IOGraphicsSystemWorkLoop"=1,"ItlHalService"=1,"IOSCSIPeripheralDeviceNub"=0,"RSNSupplicant"=1,"AppleUSBXHCIARRequestPool"=0,"VoodooI2CTouchscreenHIDEventDriver"=0,"IOSurfaceDeviceCache"=0,"AppleUIOMemUserClient"=0,"AGPMController"=1,"AppleUSBXHCIRequestPool"=3,"CoreAnalyticsPipe"=1,"AppleGraphicsDeviceControlClient"=1,"IOUSBBus"=1,"IOServicePM"=125,"AppleUSBLegacyDeviceUserClient"=1,"IOBigMemoryCursor"=0,"TSNInterface"=0,"CTimeout"=255,"AppleSmartBattery"=1,"AppleBusControllerCS8409"=0,"ACMRestrictedModeKernelService"=1,"AppleUSBHostBusCurrentPool"=0,"AppleHDAWidgetMCP89"=0,"IOMemoryDescriptor"=2,"AppleTDMAKSServices"=0,"AppleUIOMem"=1,"IOTimeSyncTimeSyncTimePort"=1,"AppleIntelLpssGspi"=0,"AppleHDAFunctionGroupATI_RS780"=0,"IOHIDActionQueue"=0,"IOUSBInterfaceUserClientV2"=1,"IODMAController"=0,"AppleUSBInterface"=8,"VoodooI2CControllerDriver"=1,"IOUSBControllerV3"=1,"TSNBSDStackInterface"=0,"AppleGraphicsControl"=0,"IOBluetoothSCOMemoryDescriptorRetainer"=0,"com_apple_driver_16X50PCI"=0,"EventQueue"=0,"NootedGreen"=1,"IOHIDTranslationEvent"=0,"AppleHDATDMBusManagerCS8409"=0,"AGPMEventSource"=1,"IOSystemStateNotification"=1,"SEPApNonce"=0,"KDIRAMBackingStore"=0,"DspFuncEQ"=1,"IOCatalogue"=1,"IOWorkLoop"=71,"AppleSEPEndpointService"=0,"IODataQueue"=1,"AppleAPFSMediaBSDClient"=2,"AppleUSBUserHCIRequestPool"=0,"CCIOReporterLogStream"=1,"AppleRSMChannelTestClient"=0,"ACMPersistentStoreKernelService"=1,"USBToolBox"=0,"IOHIDDevice"=4,"IOHDACodecDriver"=1,"IOSkywalkNetworkPacket"=0,"AppleHDAWidgetATI_RS730"=0,"IOBluetoothL2CAPChannel"=0,"AppleUSBHostFrameworkInterfaceClient"=3,"CCStream"=2,"AppleGCSyntheticDeviceUserClient"=0,"AppleGCResourceDeviceUserClient"=1,"AirportItlwm"=1,"_IOMemoryDescriptorMixedData"=4475,"IOHIDElement"=1,"IO80211InfraInterface"=0,"IOReportHub"=1,"VoodooGPIOCannonLakeH"=0,"AppleHDAWidgetATI_RS780"=0,"DspFunc6ChOutput"=0,"IO80211ScanManager"=1,"IOEthernetController"=1,"DspFuncStereoEnhancer"=0,"IOSlowAdaptiveClockingDomain"=0,"IOTimerEventSource"=184,"AppleHDAFunctionGroupCS8409"=0,"VoodooI2CDigitiserStylus"=0,"CryptoBufferDescriptor"=1152,"IOPCIConfigurator"=1,"IOSerialDriverSync"=0,"com_apple_filesystems_hfs_encodings"=1,"Stopwatch"=3,"IO80211NetBootNub"=0,"IOTimeSyncEthernetConcreteControllerAdapter"=0,"IOUserNetworkMemorySegment"=0,"DspFunc2WayCrossover"=0,"CCLogPipe"=2,"AppleSMCClient"=4,"AppleHDAWidgetGT216"=0,"AppleUSBXHCIFL1100CommandRing"=0,"AIDReporterState"=0,"HookCase"=1,"IOServiceMessageUserNotification"=226,"AppleXsanScheme"=0,"AppleTDMAKSDriver"=0,"IOReporter"=3,"IOTimeSyncUserClient"=0,"VoodooI2CSensorHubEnabler"=0,"OSObjectWrapper"=0,"AppleUSBHostBusCurrentClient"=4,"IOAVBTimeSyncCapture"=0,"IOMultiMemoryDescriptor"=0,"AnVMSRUserClient"=0,"DspFuncVolume_3ch"=0,"IOPlatformPluginFamily"=1,"hv_vmx_vma_t"=0,"IOSCSILogicalUnitNub"=0,"AUAInputTerminalDictionary"=0,"AppleLIFSUserClient"=3,"AUAStreamDictionary"=0,"HIDMTQueueEventSource"=1,"IOTimeSyncEthernetControllerAdapter"=0,"AppleHDAWidget_80862807"=0,"OSValueObject<PMAssertStruct>"=1,"IOSCSIHierarchicalLogicalUnit"=0,"IOTimeSyncDaemonServiceProcess"=2,"IORSMReceiveQueueEntry"=0,"AppleDiskImagesController"=1,"DisplayMergeNub"=0,"AppleHDATDMDeviceFactory"=0,"AppleSEPDeviceService"=0,"IOTimeSyncClockMapping"=2,"OSValueObject<OSKextRequestResourceCallback>"=0,"AIDCircularBuffer"=0,"KDIURL"=1,"IntelBluetoothOpsGen3"=0,"AGPMHeuristic1"=0,"IOPanicPlatform"=0,"IODMAEventSource"=0,"IOSCSIMultipathedLogicalUnit"=0,"IOPlatformDevice"=4,"AppleNVMeSMARTUserClient"=0,"AppleHDAWidgetCS4208"=0,"AppleHIDTransportIODataQueue"=0,"DspFuncSum"=0,"AppleUSBHostDARTDMACommand"=0,"IOSurfaceDescriptorComponent"=0,"AIDLogger"=0,"DspFuncStereoToMono"=0,"AppleUSBAudioEngine"=0,"IOUserNetworkEthernet"=0,"AppleUSBHostResourcesTypeC"=0,"KDIUDIFCacheBuffer"=0,"AppleHDATDMAmpSSM3515"=0,"AppleHDAAudioSelectorControlDP"=0,"CCCapture"=0,"AppleMultitouchHIDEventService"=0,"AppleUSBHostFrameworkDeviceClient"=0,"IOSurfaceWiredSendRight"=0,"IO80211RangingManager"=1,"VoodooI2CDigitiserTransducer"=5,"IOUSBMassStorageUASDriverCommand"=0,"IOSkywalkController"=0,"IOAudioControlUserClient"=32,"IOAVBStreamCaptureUserClient"=0,"DspBuffer"=4,"IOStateNotificationListener"=0,"IOAudioEngine"=1,"OSSerialize"=1,"ALCUserClient"=0,"AppleUSBDescriptorCache"=3,"IOSurfaceSharedEventReference"=0,"IOAudioDevice"=2,"OSKext"=504,"AppleHSBluetoothDevice"=0,"ApplePMC"=1,"AppleUSBDescriptor"=16,"AppleSMBIOS"=1,"com_apple_driver_pm_msr_reporter"=1,"IOProviderPropertyMerger"=0,"IOSkywalkTxCompletionQueue"=0,"AUAClockMultiplierDictionary"=0,"SMCWatchDogTimer"=1,"VoodooInputSimulatorDevice"=1,"AppleGPUWrangler_GPU"=1,"IOTimeSyncUnicastLinkLayerEtEPort"=0,"AppleHDAFunctionGroupAD1988"=0,"AppleUSBHostBouncedDMACommand"=0,"_IOServiceJob"=0,"IO80211InterfaceMonitor"=1,"AGDPClientControl"=0,"IOPMPowerStateQueue"=1,"NVMeFix"=1,"AppleEmbeddedHIDEventService"=0,"IOUserNetworkPacketQueue"=0,"OSIterator"=3,"hv_vcpu_t"=0,"IOAccelerationUserClient"=1,"IOBluetoothTimerEventSource"=0,"AppleUSBHostBusCurrentAllocator"=7,"IOMemoryMap"=672,"CCDataStream"=2,"IO80211RangingManagerExt"=0,"DspFuncDelay"=0,"IOAudioToggleControl"=10,"AppleSEPTesting"=0,"com_apple_driver_pmtelemetry"=1,"IOAVBTimeSyncCaptureUserClient"=0,"SCSITask"=0,"AppleSmartBatteryManagerUserClient"=0,"IOBluetoothL2CAPSupervisoryFrameMemoryBlock"=0,"IOHDIXHDDriveOutKernel"=0,"IOUserUserClient"=3,"IOUSBMassStorageCBIDriver"=0,"AppleNVMeController"=0,"AppleUSBXHCIDevice"=3,"IO80211Controller"=1,"AppleMobileFileIntegrity"=1,"AUAExtensionUnitDictionary"=0,"AGDCBacklightControl"=0,"AppleHDAEngineUserClient"=0,"AppleHDAFunctionGroupMCP79"=0,"X86PlatformPlugin"=1,"IOPCIDiagnosticsClient"=0,"IOHIDParamUserClient"=4,"IOPCIBridge"=2,"IORSMChannel"=0,"AppleASMediaUSBXHCIIsochronousRequestPool"=0,"AppleEffaceableStorageUserClient"=0,"OSData"=4943,"IORegistryIterator"=1,"AIDReporterSimple"=0,"AppleUIOPCI"=0,"IOHDIXCommandPool"=1,"TransducerState"=0,"PMAssertionsTracker"=1,"IOOutputQueue"=1,"AppleSEPUserClient"=0,"com_waves_WCAudioGridInterfaceFilter"=3,"IOExclaveProxy"=0,"EndpointSecurityExternalClient"=0,"AppleUSBHostDMACommand"=0,"AppleEmbeddedKeyboard"=0,"DspFuncCrossover"=0,"IOSCSIPeripheralDeviceType00"=0,"IOPMClientAck"=0,"IO80211PeerManager"=0,"IOHDIXHDDriveNub"=1,"AppleKeyStoreCommand"=2,"SMIMonitor"=1,"AppleACPIPlatformUserClient"=0,"AppleNVMeRequestTimer"=1,"IOSkywalkLegacyEthernetInterface"=0,"IOHIDKeyboardEventDevice"=2,"IOSCSITargetDevice"=0,"AppleBacklightDisplay"=0,"IOTimeSyncDaemonUserClient"=1,"IORootParent"=1,"AppleUSB20HostController"=0,"AppleASMedia1042USBXHCI"=0,"DspFuncMozartCompressor"=0,"com_apple_driver_pm_cstate_reporter"=1,"IO80211PeerMonitor"=0,"AppleUSBAudioControlInterface"=0,"AIDQueueEventSource"=0,"PMSettingObject"=5,"IODispatchSource"=0,"AppleUSBHostPortInterruptEventSource"=7,"TSNBSDInterface"=0,"AppleACPIPCI"=1,"AppleKeyStore"=1,"BatteryManager"=1,"IOUSBHostInterfaceIterator"=0,"IOUserNetworkRxSubmissionQueue"=0,"AppleGPUWrangler_MatchNotificationWorkItem"=0,"IOPMinformee"=73,"AppleUSBHostDMABufferMemoryDescriptor"=23,"IOUSBCommand"=0,"IOPMPowerSource"=1,"IOSlowAdaptiveClockingManager"=1,"AppleGCResource"=1,"hv_vmx_space_t"=0,"IOTimeSyncReverseSync"=0,"EndpointSecurityDriver"=1,"IOTimeSyncEdgeTimeCapture"=0,"IOUSBLog"=1,"DspFuncLimiter"=0,"CCPipeUserClient"=0,"AppleUSBHostResourcesBusPowerClient"=0,"IOTimeSyncTimedEdgeGenerator"=0,"AppleSEPManager"=0,"AppleHDAMikeyInternalFactory"=0,"IOBluetoothDevice"=1,"AppleBusPowerController"=0,"DspFuncWithSharedMemory"=0,"IOTimeSyncgPTPManager"=1,"IOExtensiblePaniclog"=0,"TSNUserWiFiControlInterface"=0,"AppleIntelPanelA"=1,"IODisplayParameterHandler"=3,"IOBufferMemoryDescriptor"=221,"AppleUSBXHCILPTH"=0,"AppleACPIButton"=1,"AppleHDADriverUserClient"=0,"CCPipe"=2,"IOHIDEventServiceUserClient"=6,"AppleHDAWidgetCS8409"=0,"AppleSystemPolicyUserClient"=2,"AppleHDAWidgetALC885"=0,"DspFuncBeam2"=0,"DspFunc2Dot1Crossover"=0,"AppleUSBHostInterfaceUserClient"=0,"AppleRSMChannelServerClient"=0,"AppleMultitouchHIDEventDriver"=0,"IOPolledInterface"=3,"IONDRVDevice"=0,"IOTimeSyncTimeLineFilter128"=0,"OSKextSavedMutableSegment"=6,"IOUserSerialUserClient"=0,"IOHIDElementContainer"=1,"AppleUSBDevice"=4,"IOPlatformExpertDevice"=1,"IOSurfaceMemoryTag"=110,"IOUSBHubPolicyMaker"=1,"IOHIPointing"=1,"IOBluetoothHCIController"=1,"AIDUserClient"=0,"IOTimeSyncFDEtEPort"=0,"AudioAUUC"=0,"AppleAPFSContainerScheme"=2,"IONetworkData"=4,"IOAudioLevelControl"=4,"AUAClockSourceDictionary"=0,"AppleUSBXHCISPTLP"=0,"IOECStateNotifier"=0,"IODTNVRAMPlatformNotifier"=0,"IOUSBCommandPool"=0,"AUAProcessingUnitDictionary"=0,"IORSMReceiveQueue"=0,"AppleAPFSVolumeBSDClient"=7,"AppleMultitouchEventServiceWrapper"=0,"IO80211FlowQueue"=0,"AppleHDADriver"=1,"AppleImage4UserClient"=0,"OSAction_IOHIDEventService__SetLED"=0,"IOPlatformPluginDevice"=2,"AppleTDMAKSCommand"=0,"IODTNVRAMDiags"=0,"KDISparseDiskImage"=0,"IOKernelDebugger"=0,"AppleRXE"=1,"IOBacklightDisplay"=0,"IODispatchQueue"=11,"CoreAnalyticsMessenger"=1,"AppleFIVRDriver"=0,"KDIHTTPBackingStore"=0,"IONetworkMedium"=1,"IODisplayConnect"=1,"CCIOService"=0,"ACPI_SMC_PluginUserClient"=0,"IOSurfaceDescriptorContext"=0,"IOSkywalkCloneableNetworkPacket"=0,"IOHIDResource"=1,"IOUserNetworkQueueSet"=0,"IOTimeSyncTimeLineFilterIIR"=0,"AGPMHeuristic0"=0,"AppleHDAWidgetATI_RS710"=0,"AppleNVMeTranslationSMARTUserClient"=0,"ALCUserClientProvider"=0,"VoodooGPIOSunrisePointLP"=0,"AppleHDAWidgetWM8800"=0,"AppleSATLSMARTUserClient"=0,"AppleUSBCDCCompositeDevice"=0,"AppleBSDKextStarter"=1,"IOTimeSyncPort"=1,"AppleUSBXHCISparseRequestPool"=0,"IOUSBRootHubDevice"=0,"AppleMultitouchInputHIDEventDriver"=1,"KDISocket"=0,"IOHIDPointingEventDevice"=1,"IOTimeSyncgPTPManagerUserClient"=0,"IOHIDDeviceShim"=2,"AppleSCSISubsystemGlobals"=1,"IOTimeSyncTimeOfDayPort"=0,"AppleHDAWidget_1002AAA0"=0,"OSValueObject<SMCNotification>"=1,"IOBluetoothObject"=1,"IOBluetoothACPIMethods"=1,"OSMetaClass"=0,"AppleUSBXHCIARIsochronousRequestPool"=0,"DspFuncVolume"=1,"AppleImage4"=1,"AppleGraphicsDeviceControl"=1,"CCDataPipeBlobOD"=0,"IOUSBControllerV2"=1,"IOHIDPointing"=0,"IOAudioSelectorControl"=2,"DspFuncAudioMeter"=0,"IOUserSerial"=1,"IOUserNetworkTxSubmissionQueue"=0,"CCDataSession"=0,"IO80211P2PSteeringManager"=0,"IOSKMapper"=7,"OSValueObject<__ReportResult>"=0,"IOSCSIProtocolServices"=0,"IOHIDEventDummyService"=0,"VoodooInput"=1,"IOPlatformPluginThermalProfile"=0,"AppleEFINVRAM"=1,"IOKitDiagnostics"=1,"IOTimeSyncDomain"=1,"AppleMultitouchDeviceUserClient"=1,"IODTNVRAM"=1,"IOHIDTranslationService"=0,"IOHIDEventServiceQueue"=7,"com_apple_driver_pm_reporter"=8,"AppleUSBHostDMACommandPool"=2,"IO80211P2PDFSProxyManager"=0,"AppleUSBXHCITDPool"=2,"IOSurfaceMemoryRegion"=0,"AppleACPIEC"=1,"AppleRTCUserClient"=2,"IO80211SkywalkInterface"=0,"DspFuncXTC"=0,"AppleUSBAudioIsocPipe"=0,"UIOPCIMatch"=0,"IO80211P2PSupervisor"=0,"AppleHDAWidgetMCP79"=0,"AppleSSE"=1,"IOBluetoothHIDChannel"=0,"hv_vm_t"=0,"hv_vatpic_t"=0,"IOPMRequest"=0,"IOECTimeSyncHandler"=0,"AppleGCSyntheticDevice"=0,"IOHIDUserDevice"=0,"IOHIKeyboard"=2,"AppleGPUWrangler_BusyInterestWorkItem"=0,"AppleHDATDMAmpTAS5758L"=0,"AppleMCCSControlCello"=0,"AUAASEndpointDictionary"=0,"AppleHDAFunctionGroupATI_Park"=0,"AppleXsanDevice"=0,"IOService"=204,"IOSurfaceSharedEvent"=0,"EndpointSecurityNoAuthClient"=0,"IORS232SerialStreamSync"=0,"IOUserServerCheckInToken"=3,"IOBluetoothWorkLoop"=0,"AppleHDAWidget_10DE0014"=0,"ACMAccessoryCacheKernelService"=1,"IOHIDEventRepairDriver"=0,"AppleHDAFunctionGroup_10DE0014"=0,"ACPI_SMC_Idle_CtrlLoop"=0,"IOSKMemoryBuffer"=119,"IOTimeSyncUnicastUDPv4EtEPort"=0,"KextAudit"=1,"AppleSMCFamily"=1,"IOFramebuffer"=1,"KDIDiskImage"=1,"HIDAlwaysNotifyingIODataQueue"=1,"pci_intr_handle"=1,"AppleMultitouchDevice"=1,"AppleIPAppender"=1,"AppleUSBXHCIIsochronousTransferRing"=0,"IOPMCompletionQueue"=1,"IOPlatformStateSensor"=0,"AppleSEPCommandPool"=0,"IOTimeSyncUserFilteredService"=0,"DspFuncVirtualization"=0,"IOSkywalkQueueSet"=0,"AppleHV"=1,"AppleCredentialManagerUserClient"=8,"AppleFileSystemDriver"=0,"mDNSOffloadUserClient"=0,"IOUSBHostInterfaceLegacyIterator"=0,"AppleUSBHostPort"=1,"PassthruInterruptController"=0,"CCDataPipeUserClient"=0,"AppleUSBUserHCICommandQueue"=0,"AppleHDAWidget"=1,"IOFDiskPartitionScheme"=0,"com_apple_filesystems_hfs"=1,"AppleMultitouchEventDriverWrapper"=1,"IODataQueueDispatchSource"=0,"KDIDiskImageNub"=1,"AppleTDMEffaceableNORDriver"=0,"OSAction_IOHIDDevice__CompleteReport"=0,"AppleUSBXHCITR"=0,"AppleHDAFunctionGroupCS4206"=0,"AppleUSBUserHCIRequest"=0,"AppleUSBXHCIStreamingEndpoint"=0,"AppleHDACodecGeneric"=1,"AppleGPUWrangler_DeferredReleaseWorkItem"=0,"AppleSSEUserClient"=0,"IOUSBMassStorageInterfaceNub"=0,"IOHIDPowerSourceController"=1,"IOPMPowerSourceList"=0,"AppleHDAEngineOutputDP"=0,"IOHIDSystem_notificationData"=0,"OSAction_IOUserClient_KernelCompletion"=0,"com_apple_filesystems_nfs"=1,"OSValueObject<KeyboardReserved>"=2,"AUAEndpointDictionary"=0,"mDNSHandoff"=0,"AppleVTDDeviceMapper"=3,"IOTimeSyncEthernetSoftDMAInterfaceAdapter"=0,"AppleHDAStream"=3,"AppleIntelLpssI2C"=0,"AppleAMDUSBXHCIPCI"=0,"ApplePS2Keyboard"=1,"AppleACPICPUInterruptController"=1,"IOUSBPipe"=0,"TSNITimeSyncHandler"=0,"AppleActuatorDeviceUserClient"=1,"IOAVBControllerHelper"=0,"AppleVTD"=1,"AppleSEPEndpoint"=0,"IOPerfControlClient"=2,"VoodooI2CNativeEngine"=1,"AppleUSBSparseArray"=3,"VirtualSMC"=1,"ApplePS2KeyboardDevice"=1,"EupDSP"=0,"CPUFriendData"=0,"Lilu"=1,"AppleBusControllerFactory"=0,"IOPlatformExpert"=1,"IOUserEthernetController"=0,"IOTimeSyncEthernetPort"=0,"IOUserSCSIPeripheralDeviceType00"=0,"com_apple_driver_pm_uncore_reporter"=1,"TSNWiFiInterface"=0,"AppleUSBController"=1,"IOTimeSyncUserFilteredServiceUserClient"=0,"IOPartitionScheme"=2,"IOAVBTimeSyncSyncUserClient"=0,"IOTimeSyncIntervalFilter128"=0,"IOUserSCSIPeripheralDeviceType07"=0,"ACPI_SMC_CtrlLoop"=0,"IOSlaveFirmware"=0,"AMFIPass"=1,"IOTimeSyncRootService"=1,"AppleASMedia3142USBXHCI"=0,"KDIReadWriteDiskImage"=1,"IOHIDUserClient"=1,"LogManager"=1,"IOACPIPlatformExpert"=1,"hv_vlapic_t"=0,"ACMLockdownModeKernelService"=1,"KDIUDIFCacheObject"=0,"com_apple_driver_pm_cpu_mbox"=105,"IOUSBControllerIsochEndpoint"=0,"IOTimeSyncEthernetModernInterfaceAdapter"=0,"DspFuncLoudness"=0,"IOSurfaceDeviceMemoryRegion"=0,"IOServiceCompatibility"=3,"IOHIDEventService"=4,"IOAudioTimeIntervalFilterFIR"=0,"AppleASMediaUSBXHCIIsochronousRequest"=0,"IOTimeSyncIntervalFilterIIR128"=0,"IOUserEthernetInterface"=0,"OSDextStatistics"=17,"IOAudioPort"=0,"IOInterruptDispatchSource"=0,"AppleUSBBusPowerClient"=0,"IOSkywalkPacketBuffer"=0,"IOHIKeyboardMapper"=2,"AppleSMBusPCI"=0,"OSAction_IOHIDEventService__CopyEvent"=0,"IOTimeSyncUnicastUDPv6EtEPort"=0,"ACMBridgeKernelService"=0,"IOTimeSyncIntervalFilterIIR"=0,"IOUSBHostInterface"=8,"AppleGPUWrangler"=1,"hv_vmx_vcpu_t"=0,"com_apple_driver_pm_msr_limits_reporter"=1,"OSArray"=11339,"IOGeneralMemoryDescriptor"=3091,"IOSkywalkBSDClient"=0,"IOSCSICommandGate"=0,"IOUSBIsocCommand"=0,"KDISecondaryEncoding"=0,"AIDCircularWriteBufferShared"=0,"IOSlaveProcessor"=0,"IO80211FlowQueueLegacy"=0,"DIDeviceIOUserClient"=0,"KDIShadowedDiskImage"=0,"IO80211ControllerMonitor"=1,"IOTimeSyncClockTestUserClient"=0,"IOUSBWorkLoop"=1,"AppleCallbackPowerSource"=0,"IOSurfaceClient"=150,"IOAudioEngineEntry"=0,"com_apple_driver_pm_ltr_reporter"=1,"IOConfigurationDescriptorOrderedSet"=1,"AppleBusController"=0,"AIDSerialLogger"=0,"AppleIntelICLUSBXHCI"=0,"AppleGraphicsDeviceControlPlugin"=1,"IO80211CommandQueue"=0,"IOCancelationWrapper"=0,"HibernationFixup"=1,"DspFuncManager"=2,"AppleUSB20XHCITypeCPort"=0,"DspFuncSplitBand"=0,"IOBootNDRV"=1,"IOHIDElementPrivate"=2622,"AppleHDAPath"=4,"AppleSSEInterface"=1,"AGDCPluginDisplayMetrics"=1,"VoodooI2CHIDDeviceOverride"=0,"IOHITablet"=0,"AUAClockSelectorDictionary"=0,"AppleTDMBlockStorageServices"=0,"AppleACPIEventController"=1,"IOFramebufferUserClient"=1},"IOMalloc allocation"=121834682} | | | | "model" = <"Intel Iris Xe Graphics"> | "boot-args" = "-v debug=0x100 keepsyms=1 agdpmod=pikera -radcodec -wegswitchgpu -wegbeta -amfipassbeta -lilubetaall -vi2c-force-polling amfi_get_out_of_my_way=1 -NGreenDebug -disablegfxfirmware ngreen-dmc=skip -allow3d -nbdyldoff" jkbuha@JuliansthGenAir ~ % system_profiler SPDisplaysDataType 2>/dev/null | head -20 Graphics/Displays: Intel Iris Xe Graphics: Chipset Model: Intel Iris Xe Graphics Type: GPU Bus: Built-In Slot: built-in VRAM (Total): 8 MB VRAM (Dynamic, Max): Vendor: Intel Device ID: 0x9a49 Revision ID: 0x0001 Kernel Extension Info: No Kext Loaded Displays: Display: Resolution: 1920 x 1200 (WUXGA - Widescreen Ultra eXtended Graphics Array) UI Looks like: 1920 x 1200 Framebuffer Depth: 24-Bit Color (ARGB8888) Main Display: Yes jkbuha@JuliansthGenAir ~ % With mine lilu plugin it push kexts - FB and Graphics - to be loaded forcely. Check sources to understand how. Build in release not debug version! Edited April 12 by Stezza88 1 Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849038 Share on other sites More sharing options...
jkbuha Posted April 12 Share Posted April 12 3 minutes ago, Stezza88 said: My father has been taken today to the hospital.. they have found in him a cancer at the liver.. i need to suspehend a moment.. i'll be back soon as possible.. post logs and photos if you got problems.. blessing everybody coraggio stezza. fatti forza. un abraccio a tutta la famiglia. 1 Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849039 Share on other sites More sharing options...
Stezza88 Posted April 12 Author Share Posted April 12 They will never stops me!! We'll make a powerful library.. Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849043 Share on other sites More sharing options...
Mastachief Posted April 12 Share Posted April 12 Share a screenshot of your hackintool interface, go to the connectors tab, click on the connector highlighted in red, Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849045 Share on other sites More sharing options...
Stezza88 Posted April 12 Author Share Posted April 12 (edited) 31 minutes ago, Mastachief said: Share a screenshot of your hackintool interface, go to the connectors tab, click on the connector highlighted in red, My gen infrastructure is still in development, still not booting.. but it should working most probably only with TGL at the actual state.. i will make a post with every info when finally i will boot with RPL.. At the actual state i'm implementing the infrastucture for "!realTGL" branches.. i could be glad if someone post logs or something about the real testing of TGL actual state.. Edited April 12 by Stezza88 Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849047 Share on other sites More sharing options...
Mastachief Posted April 12 Share Posted April 12 When you say not booting, you mean KP or freeze at window server, can you VNC, does it start the iGPU in verbose mode allowing visuals via VNC, I get a KP with NootedGreen, BatGPT is working on fixing it right now. Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849051 Share on other sites More sharing options...
jkbuha Posted April 12 Share Posted April 12 (edited) 1 hour ago, Stezza88 said: My gen infrastructure is still in development, still not booting.. but it should working most probably only with TGL at the actual state.. i will make a post with every info when finally i will boot with RPL.. At the actual state i'm implementing the infrastucture for "!realTGL" branches.. i could be glad if someone post logs or something about the real testing of TGL actual state.. I've managed to patch your Lilu fork to compile and load on Sequoia, compile NootedGreen and HookCase, force load both TGL kexts with a launchdaemon. Screen boots up without acceleration, but still on 8MB VRAM. Here's what's working NootedGreen V58 Release+Debug: loads, patches both TGL kexts Patched Lilu 1.7.3 with loadKinfoPlaceholder: loads, Release build on EFI HookCase 8.0.1: loads from /Library/Extensions TGL FB + TGL HW: both load (via launch daemons), both in auxiliary KC V58 real-TGL detection works: "Real TGL — native topology" IOAccelF2 patches: OK Not working so far: All Intel classes at 0 instances (AppleIntelFramebufferController, IntelAccelerator, IGAccelDevice, IGHardwareGuC, IntelTGLMemoryManager) NDRV still owns IGPU — no TGL framebuffer matched VRAM 8MB, "No Kext Loaded" in System Profiler No dmesg/log output on Sequoia (buffer rolls over before capture, unified log empty) Let me know how to produce debug/logfiles and I'll attach them here. Edited April 12 by jkbuha Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849055 Share on other sites More sharing options...
Mastachief Posted April 12 Share Posted April 12 Share those kexts you built in a zip, my boot does not give that. You can get logs by running dmesg, however you will need to truncate it so it's not overload with irellevevant info, you can also use hackintool and go to the logs section and parse the system logs.Also do you have SSDT-PNLF enabled? Should be disabled for now, also AppleIntelFramebufferController should have personalities published, similar to Nblues way of publishing the personality upfront Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849058 Share on other sites More sharing options...
Mastachief Posted April 13 Share Posted April 13 (edited) Current error in Metal pipeline creation. ------------------------------------- Translated Report (Full Report Below) ------------------------------------- Process: WindowServer [156] Path: /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/Resources/WindowServer Identifier: WindowServer Version: ??? Code Type: X86-64 (Native) Parent Process: launchd [1] User ID: 88 Date/Time: 2026-04-12 23:55:32.6523 -0500 OS Version: macOS 14.8.3 (23J220) Report Version: 12 Anonymous UUID: C61662F0-F760-1F32-8B2C-5C0905DEF1EA Time Awake Since Boot: 110 seconds System Integrity Protection: disabled Crashed Thread: 0 ws_main_thread Dispatch queue: com.apple.main-thread Exception Type: EXC_CRASH (SIGABRT) Exception Codes: 0x0000000000000000, 0x0000000000000000 Termination Reason: Namespace SIGNAL, Code 6 Abort trap: 6 Terminating Process: WindowServer [156] Application Specific Information: abort() called Kernel Triage: VM - (arg = 0x0) Returned success with no page VM - (arg = 0x0) Returned success with no page Thread 0 Crashed:: ws_main_thread Dispatch queue: com.apple.main-thread 0 libsystem_kernel.dylib 0x7ff8033f7d96 __pthread_kill + 10 1 libsystem_pthread.dylib 0x7ff803430e51 pthread_kill + 262 2 libsystem_c.dylib 0x7ff803356a69 abort + 126 3 SkyLight 0x7ff808cc3657 MetalShader::CopyPipelineState(MetalContext*, bool, bool) + 3209 4 SkyLight 0x7ff808e5ecec MetalTiledBacking::RenderToDestination(MetalContext*, WSCompositeSourceLayer*, WSCompositeDestination*) + 676 5 SkyLight 0x7ff808e697b4 MetalCompositeLayers + 41 6 SkyLight 0x7ff808e6928b CompositorMetal::composite(WSCompositeSourceLayer*, WSCompositeDestination*, bool, bool) + 415 7 SkyLight 0x7ff808e63f3a CompositorMetal::CompositeLayersToDestination(WSCompositeSourceLayer*, WSCompositeDestination*, unsigned long long) + 244 8 SkyLight 0x7ff808cef44e WS::Displays::CDDisplay::render_update(WS::Displays::Update&, Compositor*, unsigned int, WSCompositeSourceLayer*) + 872 9 SkyLight 0x7ff808dac3ae WS::Updater::UpdateDisplays(CGXConnection*, bool, std::__1::vector<std::__1::shared_ptr<WS::Displays::Display>, std::__1::allocator<std::__1::shared_ptr<WS::Displays::Display>>>) + 21295 10 SkyLight 0x7ff808da7053 CGXUpdateDisplay + 91 11 SkyLight 0x7ff808d9ad27 update_display_callback(void*, double) + 1825 12 SkyLight 0x7ff808e39ab7 run_timer_pass + 556 13 SkyLight 0x7ff808e39baa non_coalesced_timer_handler + 16 14 SkyLight 0x7ff808e78f70 post_port_data + 269 15 SkyLight 0x7ff808e78cbb CGXRunOneServicesPass + 1696 16 SkyLight 0x7ff808e79662 server_loop + 98 17 SkyLight 0x7ff808e794bc SLXServer + 1265 18 WindowServer 0x10b0e048c 0x10b0df000 + 5260 19 dyld 0x7ff8030a5345 start + 1909 Thread 1:: com.apple.coreanimation.render-server 0 libsystem_kernel.dylib 0x7ff8033f106e mach_msg2_trap + 10 1 libsystem_kernel.dylib 0x7ff8033ff858 mach_msg2_internal + 84 2 libsystem_kernel.dylib 0x7ff8033f8158 mach_msg_overwrite + 653 3 libsystem_kernel.dylib 0x7ff8033f135d mach_msg + 19 4 QuartzCore 0x7ff80bb3bc3e CA::Render::Server::server_thread(void*) + 664 5 QuartzCore 0x7ff80bb3b993 thread_fun(void*) + 25 6 libsystem_pthread.dylib 0x7ff80343111f _pthread_start + 99 7 libsystem_pthread.dylib 0x7ff80342cac3 thread_start + 15 Thread 2:: Dispatch queue: com.apple.VirtualDisplayListener 0 libsystem_kernel.dylib 0x7ff8033f106e mach_msg2_trap + 10 1 libsystem_kernel.dylib 0x7ff8033ff858 mach_msg2_internal + 84 2 libsystem_kernel.dylib 0x7ff8033f8158 mach_msg_overwrite + 653 3 libsystem_kernel.dylib 0x7ff8033fa156 mach_msg_server_once + 266 4 CoreDisplay 0x7ff80527b95d -[VirtualDisplayListener rx] + 77 5 libdispatch.dylib 0x7ff80328eac6 _dispatch_call_block_and_release + 12 6 libdispatch.dylib 0x7ff80328fdbc _dispatch_client_callout + 8 7 libdispatch.dylib 0x7ff803295eff _dispatch_lane_serial_drain + 800 8 libdispatch.dylib 0x7ff803296997 _dispatch_lane_invoke + 377 9 libdispatch.dylib 0x7ff8032a0414 _dispatch_root_queue_drain_deferred_wlh + 271 10 libdispatch.dylib 0x7ff80329fd2a _dispatch_workloop_worker_thread + 451 11 libsystem_pthread.dylib 0x7ff80342db18 _pthread_wqthread + 327 12 libsystem_pthread.dylib 0x7ff80342caaf start_wqthread + 15 Thread 3:: Dispatch queue: PLClientLoggingAdaptivePermissionWorkQueue 0 libsystem_kernel.dylib 0x7ff8033f106e mach_msg2_trap + 10 1 libsystem_kernel.dylib 0x7ff8033ff858 mach_msg2_internal + 84 2 libsystem_kernel.dylib 0x7ff8033f8158 mach_msg_overwrite + 653 3 libsystem_kernel.dylib 0x7ff8033f135d mach_msg + 19 4 libdispatch.dylib 0x7ff8032a7661 _dispatch_mach_send_and_wait_for_reply + 521 5 libdispatch.dylib 0x7ff8032a7a65 dispatch_mach_send_with_result_and_wait_for_reply + 50 6 libxpc.dylib 0x7ff80313fb8d xpc_connection_send_message_with_reply_sync + 261 7 PowerLog 0x7ff818e2b671 -[PLClientLogger xpcSendMessageWithReply:withClientID:withKey:withPayload:] + 251 8 PowerLog 0x7ff818e2a96c __68-[PLClientLogger permissionForClientID:withKey:withType:completion:]_block_invoke + 133 9 libdispatch.dylib 0x7ff80328eac6 _dispatch_call_block_and_release + 12 10 libdispatch.dylib 0x7ff80328fdbc _dispatch_client_callout + 8 11 libdispatch.dylib 0x7ff803295eff _dispatch_lane_serial_drain + 800 12 libdispatch.dylib 0x7ff803296997 _dispatch_lane_invoke + 377 13 libdispatch.dylib 0x7ff8032a0414 _dispatch_root_queue_drain_deferred_wlh + 271 14 libdispatch.dylib 0x7ff80329fd2a _dispatch_workloop_worker_thread + 451 15 libsystem_pthread.dylib 0x7ff80342db18 _pthread_wqthread + 327 16 libsystem_pthread.dylib 0x7ff80342caaf start_wqthread + 15 Thread 4:: Dispatch queue: com.apple.libtrace.state.block-list 0 libsystem_kernel.dylib 0x7ff8033f2826 __ulock_wait + 10 1 libdispatch.dylib 0x7ff8032905d4 _dlock_wait + 46 2 libdispatch.dylib 0x7ff80329045c _dispatch_thread_event_wait_slow + 40 3 libdispatch.dylib 0x7ff80329cfb8 __DISPATCH_WAIT_FOR_QUEUE__ + 307 4 libdispatch.dylib 0x7ff80329cbe4 _dispatch_sync_f_slow + 175 5 libsystem_trace.dylib 0x7ff803188099 ___os_state_request_for_self_block_invoke + 375 6 libdispatch.dylib 0x7ff80328eac6 _dispatch_call_block_and_release + 12 7 libdispatch.dylib 0x7ff80328fdbc _dispatch_client_callout + 8 8 libdispatch.dylib 0x7ff803295eff _dispatch_lane_serial_drain + 800 9 libdispatch.dylib 0x7ff803296997 _dispatch_lane_invoke + 377 10 libdispatch.dylib 0x7ff8032a0414 _dispatch_root_queue_drain_deferred_wlh + 271 11 libdispatch.dylib 0x7ff80329fd2a _dispatch_workloop_worker_thread + 451 12 libsystem_pthread.dylib 0x7ff80342db18 _pthread_wqthread + 327 13 libsystem_pthread.dylib 0x7ff80342caaf start_wqthread + 15 Thread 5: 0 libsystem_pthread.dylib 0x7ff80342caa0 start_wqthread + 0 Thread 6:: Dispatch queue: com.apple.CoreBrightness.BSCI serial 0 libsystem_kernel.dylib 0x7ff8033f106e mach_msg2_trap + 10 1 libsystem_kernel.dylib 0x7ff8033ff858 mach_msg2_internal + 84 2 libsystem_kernel.dylib 0x7ff8033f8158 mach_msg_overwrite + 653 3 libsystem_kernel.dylib 0x7ff8033f135d mach_msg + 19 4 libdispatch.dylib 0x7ff8032a7661 _dispatch_mach_send_and_wait_for_reply + 521 5 libdispatch.dylib 0x7ff8032a7a65 dispatch_mach_send_with_result_and_wait_for_reply + 50 6 libxpc.dylib 0x7ff80313fb8d xpc_connection_send_message_with_reply_sync + 261 7 Foundation 0x7ff804482fd0 __NSXPCCONNECTION_IS_WAITING_FOR_A_SYNCHRONOUS_REPLY__ + 9 8 Foundation 0x7ff804480f56 -[NSXPCConnection _sendInvocation:orArguments:count:methodSignature:selector:withProxy:] + 3103 9 Foundation 0x7ff80448758a -[NSXPCConnection _sendSelector:withProxy:arg1:arg2:] + 132 10 Foundation 0x7ff8044874b7 _NSXPCDistantObjectSimpleMessageSend2 + 63 11 CoreBrightness 0x7ff812519133 __53-[BrightnessSystemClientInternal copyPropertyForKey:]_block_invoke + 89 12 libdispatch.dylib 0x7ff803293050 _dispatch_block_sync_invoke + 301 13 libdispatch.dylib 0x7ff80328fdbc _dispatch_client_callout + 8 14 libdispatch.dylib 0x7ff80329cd3c _dispatch_lane_barrier_sync_invoke_and_complete + 60 15 libdispatch.dylib 0x7ff803293f0f _dispatch_sync_block_with_privdata + 410 16 CoreBrightness 0x7ff812518dfe -[BrightnessSystemClientInternal copyPropertyForKey:] + 233 17 CoreBrightness 0x7ff812583b53 -[CBBlueLightClient init] + 98 18 SkyLight 0x7ff808c9b232 invocation function for block in get_shared_blue_light_client() + 188 19 libdispatch.dylib 0x7ff80328fdbc _dispatch_client_callout + 8 20 libdispatch.dylib 0x7ff80329104e _dispatch_once_callout + 20 21 SkyLight 0x7ff808c9afd3 __PKGInitializeAppearanceTransitions_block_invoke + 61 22 libdispatch.dylib 0x7ff80328eac6 _dispatch_call_block_and_release + 12 23 libdispatch.dylib 0x7ff80328fdbc _dispatch_client_callout + 8 24 libdispatch.dylib 0x7ff803295eff _dispatch_lane_serial_drain + 800 25 libdispatch.dylib 0x7ff803296997 _dispatch_lane_invoke + 377 26 libdispatch.dylib 0x7ff8032a0414 _dispatch_root_queue_drain_deferred_wlh + 271 27 libdispatch.dylib 0x7ff80329fd2a _dispatch_workloop_worker_thread + 451 28 libsystem_pthread.dylib 0x7ff80342db18 _pthread_wqthread + 327 29 libsystem_pthread.dylib 0x7ff80342caaf start_wqthread + 15 Thread 7:: IOHIDService - RunLoopCompatibilityThread 0 libsystem_kernel.dylib 0x7ff8033f106e mach_msg2_trap + 10 1 libsystem_kernel.dylib 0x7ff8033ff858 mach_msg2_internal + 84 2 libsystem_kernel.dylib 0x7ff8033f8158 mach_msg_overwrite + 653 3 libsystem_kernel.dylib 0x7ff8033f135d mach_msg + 19 4 CoreFoundation 0x7ff80350f035 __CFRunLoopServiceMachPort + 143 5 CoreFoundation 0x7ff80350daa5 __CFRunLoopRun + 1371 6 CoreFoundation 0x7ff80350cf82 CFRunLoopRunSpecific + 557 7 CoreFoundation 0x7ff803588a0e CFRunLoopRun + 40 8 IOKit 0x7ff806a723be __IOHIDServiceRunLoopCompatibilityThread + 307 9 libsystem_pthread.dylib 0x7ff80343111f _pthread_start + 99 10 libsystem_pthread.dylib 0x7ff80342cac3 thread_start + 15 Thread 8: 0 libsystem_kernel.dylib 0x7ff8033f106e mach_msg2_trap + 10 1 libsystem_kernel.dylib 0x7ff8033ff858 mach_msg2_internal + 84 2 libsystem_kernel.dylib 0x7ff8033f8158 mach_msg_overwrite + 653 3 libsystem_kernel.dylib 0x7ff8033f135d mach_msg + 19 4 CoreDisplay 0x7ff805299ca0 CoreDisplay::Mach::Message::Receive(unsigned int) + 80 5 CoreDisplay 0x7ff80535637b CoreDisplay::Mach::Server::Start() + 105 6 CoreDisplay 0x7ff805356444 void* std::__1::__thread_proxy[abi:ue170006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (CoreDisplay::Mach::Server::*)(), CoreDisplay::Mach::Server*>>(void*) + 79 7 libsystem_pthread.dylib 0x7ff80343111f _pthread_start + 99 8 libsystem_pthread.dylib 0x7ff80342cac3 thread_start + 15 Thread 9: 0 libsystem_pthread.dylib 0x7ff80342caa0 start_wqthread + 0 Thread 10: 0 libsystem_pthread.dylib 0x7ff80342caa0 start_wqthread + 0 Thread 11:: com.apple.windowserver.root_queue 0 libsystem_kernel.dylib 0x7ff8033f1002 semaphore_timedwait_trap + 10 1 libdispatch.dylib 0x7ff80329030d _dispatch_sema4_timedwait + 73 2 libdispatch.dylib 0x7ff803290759 _dispatch_semaphore_wait_slow + 58 3 libdispatch.dylib 0x7ff80329eee1 _dispatch_worker_thread + 324 4 libsystem_pthread.dylib 0x7ff80343111f _pthread_start + 99 5 libsystem_pthread.dylib 0x7ff80342cac3 thread_start + 15 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x0000000000000000 rbx: 0x0000000000000006 rcx: 0x00007ff7b4e0ea38 rdx: 0x0000000000000000 rdi: 0x0000000000000103 rsi: 0x0000000000000006 rbp: 0x00007ff7b4e0ea60 rsp: 0x00007ff7b4e0ea38 r8: 0x00007ff844c11390 r9: 0x0000000000000500 r10: 0x0000000000000000 r11: 0x0000000000000246 r12: 0x0000000000000103 r13: 0x00007ff82346c292 r14: 0x00007ff846971800 r15: 0x0000000000000016 rip: 0x00007ff8033f7d96 rfl: 0x0000000000000246 cr2: 0x0000000000000000 Logical CPU: 0 Error Code: 0x02000148 Trap Number: 133 Binary Images: 0x10b52b000 - 0x10b53efff TouchBarEvent.bundle (*) <9347c308-5d42-3576-919f-e3c6412920d7> /System/Library/CoreServices/TouchBarEvent.bundle 0x1279f4000 - 0x127e73fff com.apple.driver.AppleIntelTGLGraphicsMTLDriver (16.0.32) <2b849e57-ac6a-3216-a67b-38e080603585> /System/Library/Extensions/AppleIntelTGLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelTGLGraphicsMTLDriver 0x10b36f000 - 0x10b36ffff com.apple.driver.IOAccelerator2D (481.40.2) <9156b710-fd38-3f08-853d-4815e994e497> /System/Library/Extensions/IOAccelerator2D.plugin/Contents/MacOS/IOAccelerator2D 0x10b327000 - 0x10b32bfff com.apple.KeyboardTelemetryServiceFilter (1.0) <5b63b15c-8384-3842-b2fc-610d3c111571> /System/Library/HIDPlugins/ServiceFilters/KeyboardTelemetryServiceFilter.plugin/Contents/MacOS/KeyboardTelemetryServiceFilter 0x10b2c4000 - 0x10b2d0fff com.apple.iokit.hid.IOHIDKeyboardFilter (1.0) <0a6f1836-9411-3cff-b4d4-3601951b8f68> /System/Library/HIDPlugins/IOHIDKeyboardFilter.plugin/Contents/MacOS/IOHIDKeyboardFilter 0x10b2ee000 - 0x10b2f1fff com.apple.IOHIDEventServicePlugin (1.0) <e98a8bdc-ceb0-353c-a792-ac43b4c156ec> /System/Library/HIDPlugins/ServicePlugins/IOHIDEventServicePlugin.plugin/Contents/MacOS/IOHIDEventServicePlugin 0x10b2e2000 - 0x10b2e3fff com.apple.iokit.IOHIDNXEventRouter (2.0.0) <c5776ed1-edf2-32dd-931d-0c9af0baa570> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDNXEventRouter.plugin/Contents/MacOS/IOHIDNXEventRouter 0x10b290000 - 0x10b29afff com.apple.iokit.hid.IOHIDPointerScrollFilter (1.0) <fffa6ff3-aca0-336c-a683-3d6ad2aec591> /System/Library/HIDPlugins/IOHIDPointerScrollFilter.plugin/Contents/MacOS/IOHIDPointerScrollFilter 0x10b641000 - 0x10b6f8fff com.apple.universalcontrol.servicefilter (1.0) <3fb727a2-1bf5-3eca-8eb4-83cba783ec3e> /System/Library/HIDPlugins/ServiceFilters/UniversalControlServiceFilter.plugin/Contents/MacOS/UniversalControlServiceFilter 0x10b2b2000 - 0x10b2b4fff com.apple.AppleHIDBluetoothFilter (1.0) <1ec1be0b-acc8-3dd0-a1ad-44224ab7a799> /System/Library/HIDPlugins/ServiceFilters/AppleHIDBluetoothFilter.plugin/Contents/MacOS/AppleHIDBluetoothFilter 0x10b20f000 - 0x10b213fff com.apple.iokit.hid.IOHIDEventProcessorFilter (1.0) <d17a743a-1e32-3f58-9e2c-82f55f34c9f1> /System/Library/HIDPlugins/IOHIDEventProcessorFilter.plugin/Contents/MacOS/IOHIDEventProcessorFilter 0x10b1ec000 - 0x10b200fff com.apple.hid.ColourSensorFilterPlugin (1.0) <ea9e0391-31e6-3871-8b14-ccf2caeb95ec> /System/Library/HIDPlugins/ColourSensorFilterPlugin.plugin/Contents/MacOS/ColourSensorFilterPlugin 0x10b245000 - 0x10b247fff com.apple.iokit.hid.IOHIDNXEventTranslatorServiceFilter (1.0) <43951734-596c-3deb-9ee9-4b80ee2830c5> /System/Library/HIDPlugins/IOHIDNXEventTranslatorServiceFilter.plugin/Contents/MacOS/IOHIDNXEventTranslatorServiceFilter 0x10b233000 - 0x10b236fff com.apple.iokit.plugin.AmbientLightSensorHID (361) <d5810c88-faab-36f9-9039-f93cc5f0fc33> /System/Library/Extensions/AppleSMCLMU.kext/Contents/PlugIns/AmbientLightSensorHID.plugin/Contents/MacOS/AmbientLightSensorHID 0x10b21f000 - 0x10b227fff com.apple.CoreRCPlugin (1.0) <29ac854d-98c8-334d-8d6e-5ce6f6a6c682> /System/Library/HIDPlugins/SessionFilters/CoreRCPlugin.plugin/Contents/MacOS/CoreRCPlugin 0x10b1e0000 - 0x10b1e1fff com.apple.IOHIDRemoteSensorSessionFilter (1.0) <6a629302-3064-33a5-9084-a035ce3c1837> /System/Library/HIDPlugins/SessionFilters/IOHIDRemoteSensorSessionFilter.plugin/Contents/MacOS/IOHIDRemoteSensorSessionFilter 0x10b258000 - 0x10b26afff com.apple.IOAnalytics (1.0) <004cbf55-ba19-3c6f-a3fa-e8137b5f0fc6> /System/Library/HIDPlugins/SessionFilters/IOAnalytics.plugin/Contents/MacOS/IOAnalytics 0x10b1b3000 - 0x10b1b5fff com.apple.iokit.hid.IOHIDDFREventFilter (1.0) <9a9ef30e-c243-35bd-8d1d-67c26ec7eb0e> /System/Library/HIDPlugins/IOHIDDFREventFilter.plugin/Contents/MacOS/IOHIDDFREventFilter 0x10b1c7000 - 0x10b1d0fff com.apple.iokit.hid.IOHIDNXEventTranslatorSessionFilter (1.0) <2e19b531-bc96-3cde-8212-76ae6e45ea84> /System/Library/HIDPlugins/IOHIDNXEventTranslatorSessionFilter.plugin/Contents/MacOS/IOHIDNXEventTranslatorSessionFilter 0x10c4d8000 - 0x10cc0afff CursorAsset (*) <8a2677bd-626f-36bd-b101-497695b244eb> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/Resources/CursorAsset 0x10b0df000 - 0x10b0e0fff WindowServer (*) <199c252f-22bf-3ce0-877c-126b96555a61> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/Resources/WindowServer 0x7ff8033f0000 - 0x7ff80342aff7 libsystem_kernel.dylib (*) <c14e014c-3042-3d58-9021-a9d513db9f17> /usr/lib/system/libsystem_kernel.dylib 0x7ff80342b000 - 0x7ff803436fff libsystem_pthread.dylib (*) <94607857-3850-3632-af50-37163dd339f7> /usr/lib/system/libsystem_pthread.dylib 0x7ff8032d7000 - 0x7ff80335eff7 libsystem_c.dylib (*) <3ac1393a-1569-381a-a323-7aa477b504c5> /usr/lib/system/libsystem_c.dylib 0x7ff808b0a000 - 0x7ff808f6cffe com.apple.SkyLight (1.600.0) <17842b99-c260-30bb-bec8-d1e270c11d56> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight 0x7ff80309f000 - 0x7ff80312fa87 dyld (*) <43926ebe-f6c6-30d6-aa12-c0945b2bf6d3> /usr/lib/dyld 0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ??? 0x7ff80baf3000 - 0x7ff80be7dffd com.apple.QuartzCore (1.11) <a43c79b7-1399-3e97-b225-9ee0fc73c68d> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7ff80526a000 - 0x7ff805397ff5 com.apple.CoreDisplay (285) <817784a6-869c-3676-ae6c-a552292238b0> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay 0x7ff80328d000 - 0x7ff8032d3ff1 libdispatch.dylib (*) <1b5bc7ce-4058-3461-839d-24e12c03a809> /usr/lib/system/libdispatch.dylib 0x7ff803134000 - 0x7ff80317bffd libxpc.dylib (*) <8d4dfdcc-86f5-305b-92d1-66fd33efc920> /usr/lib/system/libxpc.dylib 0x7ff818e28000 - 0x7ff818e4ffff com.apple.PowerLog (1.0) <2c630a86-ed64-3caf-9f81-64a60ff3e42e> /System/Library/PrivateFrameworks/PowerLog.framework/Versions/A/PowerLog 0x7ff80317c000 - 0x7ff803195ffe libsystem_trace.dylib (*) <e35d68c9-391f-3e37-9aaf-b7c2186ab377> /usr/lib/system/libsystem_trace.dylib 0x7ff804465000 - 0x7ff80509cffb com.apple.Foundation (6.9) <c14ad813-8ea1-31fd-8197-5fd3ebe56186> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7ff812516000 - 0x7ff812618fff com.apple.corebrightness (1.0) <f09fde2b-ab55-348a-85e9-a85f721ded79> /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness 0x7ff803493000 - 0x7ff80392dffc com.apple.CoreFoundation (6.9) <b125508e-b96a-3abc-b2da-cba80ed21f4b> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7ff806a18000 - 0x7ff806adbfff com.apple.framework.IOKit (2.0.2) <6d34b5af-17e8-3292-970f-dd672c908f56> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by all processes on this machine: task_for_pid: 0 thread_create: 0 thread_set_state: 0 VM Region Summary: ReadOnly portion of Libraries: Total=463.9M resident=0K(0%) swapped_out_or_unallocated=463.9M(100%) Writable regions: Total=2.9G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=2.9G(100%) VIRTUAL REGION REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Activity Tracing 256K 1 CG backing stores 8120K 6 CG framebuffers 1.0G 9 CG framebuffers (reserved) 589.1M 8 reserved VM address space (unallocated) ColorSync 12K 2 Kernel Alloc Once 8K 1 MALLOC 1.3G 43 MALLOC guard page 48K 12 Mach message 12K 1 STACK GUARD 56.0M 12 Stack 14.1M 12 VM_ALLOCATE 992K 11 VM_ALLOCATE (reserved) 12K 1 reserved VM address space (unallocated) __CGSERVER 4K 1 __DATA 18.6M 370 __DATA_CONST 16.5M 242 __DATA_DIRTY 656K 113 __FONT_DATA 2352 1 __LINKEDIT 181.5M 23 __OBJC_RO 71.9M 1 __OBJC_RW 2201K 2 __SLSERVER 4K 1 __TEXT 282.3M 396 mapped file 31.3M 4 shared memory 768K 16 =========== ======= ======= TOTAL 3.6G 1289 TOTAL, minus reserved VM space 3.0G 1289 ----------- Full Report ----------- {"app_name":"WindowServer","timestamp":"2026-04-12 23:55:36.00 -0500","app_version":"","slice_uuid":"199c252f-22bf-3ce0-877c-126b96555a61","build_version":"","platform":1,"share_with_app_devs":0,"is_first_party":1,"bug_type":"309","os_version":"macOS 14.8.3 (23J220)","roots_installed":0,"incident_id":"929E3F9B-B8CD-41B9-BE4E-45D167D53951","name":"WindowServer"} { "uptime" : 110, "procRole" : "Graphics", "version" : 2, "userID" : 88, "deployVersion" : 210, "modelCode" : "MacBookPro16,2", "coalitionID" : 141, "osVersion" : { "train" : "macOS 14.8.3", "build" : "23J220", "releaseType" : "User" }, "captureTime" : "2026-04-12 23:55:32.6523 -0500", "codeSigningMonitor" : 0, "incident" : "929E3F9B-B8CD-41B9-BE4E-45D167D53951", "pid" : 156, "cpuType" : "X86-64", "roots_installed" : 0, "bug_type" : "309", "procLaunch" : "2026-04-12 23:54:00.4306 -0500", "procStartAbsTime" : 24712200816, "procExitAbsTime" : 116902853318, "procName" : "WindowServer", "procPath" : "\/System\/Library\/PrivateFrameworks\/SkyLight.framework\/Versions\/A\/Resources\/WindowServer", "parentProc" : "launchd", "parentPid" : 1, "coalitionName" : "com.apple.WindowServer", "crashReporterKey" : "C61662F0-F760-1F32-8B2C-5C0905DEF1EA", "throttleTimeout" : 10, "codeSigningID" : "com.apple.WindowServer", "codeSigningTeamID" : "", "codeSigningFlags" : 570518017, "codeSigningValidationCategory" : 1, "codeSigningTrustLevel" : 4294967295, "sip" : "disabled", "exception" : {"codes":"0x0000000000000000, 0x0000000000000000","rawCodes":[0,0],"type":"EXC_CRASH","signal":"SIGABRT"}, "termination" : {"flags":0,"code":6,"namespace":"SIGNAL","indicator":"Abort trap: 6","byProc":"WindowServer","byPid":156}, "ktriageinfo" : "VM - (arg = 0x0) Returned success with no page\nVM - (arg = 0x0) Returned success with no page\n", "asi" : {"libsystem_c.dylib":["abort() called"]}, "extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0}, "faultingThread" : 0, "threads" : [{"threadState":{"r13":{"value":140703720456850,"objc-selector":"name"},"rax":{"value":0},"rflags":{"value":582},"cpu":{"value":0},"r14":{"value":140704312924160,"symbolLocation":0,"symbol":"_main_thread"},"rsi":{"value":6},"r8":{"value":140704282121104,"symbolLocation":0,"symbol":"_os_log_current_test_callback"},"cr2":{"value":0},"rdx":{"value":0},"r10":{"value":0},"r9":{"value":1280},"r15":{"value":22},"rbx":{"value":6},"trap":{"value":133},"err":{"value":33554760},"r11":{"value":582},"rip":{"value":140703183109526,"matchesCrashFrame":1},"rbp":{"value":140701868288608},"rsp":{"value":140701868288568},"r12":{"value":259},"rcx":{"value":140701868288568},"flavor":"x86_THREAD_STATE","rdi":{"value":259}},"id":809,"triggered":true,"name":"ws_main_thread","queue":"com.apple.main-thread","frames":[{"imageOffset":32150,"symbol":"__pthread_kill","symbolLocation":10,"imageIndex":21},{"imageOffset":24145,"symbol":"pthread_kill","symbolLocation":262,"imageIndex":22},{"imageOffset":522857,"symbol":"abort","symbolLocation":126,"imageIndex":23},{"imageOffset":1807959,"symbol":"MetalShader::CopyPipelineState(MetalContext*, bool, bool)","symbolLocation":3209,"imageIndex":24},{"imageOffset":3493100,"symbol":"MetalTiledBacking::RenderToDestination(MetalContext*, WSCompositeSourceLayer*, WSCompositeDestination*)","symbolLocation":676,"imageIndex":24},{"imageOffset":3536820,"symbol":"MetalCompositeLayers","symbolLocation":41,"imageIndex":24},{"imageOffset":3535499,"symbol":"CompositorMetal::composite(WSCompositeSourceLayer*, WSCompositeDestination*, bool, bool)","symbolLocation":415,"imageIndex":24},{"imageOffset":3514170,"symbol":"CompositorMetal::CompositeLayersToDestination(WSCompositeSourceLayer*, WSCompositeDestination*, unsigned long long)","symbolLocation":244,"imageIndex":24},{"imageOffset":1987662,"symbol":"WS::Displays::CDDisplay::render_update(WS::Displays::Update&, Compositor*, unsigned int, WSCompositeSourceLayer*)","symbolLocation":872,"imageIndex":24},{"imageOffset":2761646,"symbol":"WS::Updater::UpdateDisplays(CGXConnection*, bool, std::__1::vector<std::__1::shared_ptr<WS::Displays::Display>, std::__1::allocator<std::__1::shared_ptr<WS::Displays::Display>>>)","symbolLocation":21295,"imageIndex":24},{"imageOffset":2740307,"symbol":"CGXUpdateDisplay","symbolLocation":91,"imageIndex":24},{"imageOffset":2690343,"symbol":"update_display_callback(void*, double)","symbolLocation":1825,"imageIndex":24},{"imageOffset":3340983,"symbol":"run_timer_pass","symbolLocation":556,"imageIndex":24},{"imageOffset":3341226,"symbol":"non_coalesced_timer_handler","symbolLocation":16,"imageIndex":24},{"imageOffset":3600240,"symbol":"post_port_data","symbolLocation":269,"imageIndex":24},{"imageOffset":3599547,"symbol":"CGXRunOneServicesPass","symbolLocation":1696,"imageIndex":24},{"imageOffset":3602018,"symbol":"server_loop","symbolLocation":98,"imageIndex":24},{"imageOffset":3601596,"symbol":"SLXServer","symbolLocation":1265,"imageIndex":24},{"imageOffset":5260,"imageIndex":20},{"imageOffset":25413,"symbol":"start","symbolLocation":1909,"imageIndex":25}]},{"id":2241,"name":"com.apple.coreanimation.render-server","threadState":{"r13":{"value":21525170190},"rax":{"value":268451845},"rflags":{"value":514},"cpu":{"value":0},"r14":{"value":2},"rsi":{"value":21525170190},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":8589934592},"r10":{"value":0},"r9":{"value":43993350012928},"r15":{"value":43993350012928},"rbx":{"value":123145536088800},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":514},"rip":{"value":140703183081582},"rbp":{"value":123145536088640},"rsp":{"value":123145536088536},"r12":{"value":0},"rcx":{"value":123145536088536},"flavor":"x86_THREAD_STATE","rdi":{"value":123145536088800}},"frames":[{"imageOffset":4206,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":21},{"imageOffset":63576,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":21},{"imageOffset":33112,"symbol":"mach_msg_overwrite","symbolLocation":653,"imageIndex":21},{"imageOffset":4957,"symbol":"mach_msg","symbolLocation":19,"imageIndex":21},{"imageOffset":298046,"symbol":"CA::Render::Server::server_thread(void*)","symbolLocation":664,"imageIndex":27},{"imageOffset":297363,"symbol":"thread_fun(void*)","symbolLocation":25,"imageIndex":27},{"imageOffset":24863,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":22},{"imageOffset":6851,"symbol":"thread_start","symbolLocation":15,"imageIndex":22}]},{"id":2249,"threadState":{"r13":{"value":21525170178},"rax":{"value":268451845},"rflags":{"value":514},"cpu":{"value":0},"r14":{"value":2},"rsi":{"value":21525170178},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":8589934592},"r10":{"value":0},"r9":{"value":344160024395776},"r15":{"value":344160024395776},"rbx":{"value":123145536640832},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":514},"rip":{"value":140703183081582},"rbp":{"value":123145536640672},"rsp":{"value":123145536640568},"r12":{"value":0},"rcx":{"value":123145536640568},"flavor":"x86_THREAD_STATE","rdi":{"value":123145536640832}},"queue":"com.apple.VirtualDisplayListener","frames":[{"imageOffset":4206,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":21},{"imageOffset":63576,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":21},{"imageOffset":33112,"symbol":"mach_msg_overwrite","symbolLocation":653,"imageIndex":21},{"imageOffset":41302,"symbol":"mach_msg_server_once","symbolLocation":266,"imageIndex":21},{"imageOffset":72029,"symbol":"-[VirtualDisplayListener rx]","symbolLocation":77,"imageIndex":28},{"imageOffset":6854,"symbol":"_dispatch_call_block_and_release","symbolLocation":12,"imageIndex":29},{"imageOffset":11708,"symbol":"_dispatch_client_callout","symbolLocation":8,"imageIndex":29},{"imageOffset":36607,"symbol":"_dispatch_lane_serial_drain","symbolLocation":800,"imageIndex":29},{"imageOffset":39319,"symbol":"_dispatch_lane_invoke","symbolLocation":377,"imageIndex":29},{"imageOffset":78868,"symbol":"_dispatch_root_queue_drain_deferred_wlh","symbolLocation":271,"imageIndex":29},{"imageOffset":77098,"symbol":"_dispatch_workloop_worker_thread","symbolLocation":451,"imageIndex":29},{"imageOffset":11032,"symbol":"_pthread_wqthread","symbolLocation":327,"imageIndex":22},{"imageOffset":6831,"symbol":"start_wqthread","symbolLocation":15,"imageIndex":22}]},{"id":2255,"threadState":{"r13":{"value":17297326606},"rax":{"value":268451845},"rflags":{"value":514},"cpu":{"value":0},"r14":{"value":16384},"rsi":{"value":17297326606},"r8":{"value":7812748569497375763},"cr2":{"value":0},"rdx":{"value":1702259048},"r10":{"value":867967677400964355},"r9":{"value":57187489546240},"r15":{"value":57187489546240},"rbx":{"value":123145537160576},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":514},"rip":{"value":140703183081582},"rbp":{"value":123145537160208},"rsp":{"value":123145537160104},"r12":{"value":0},"rcx":{"value":123145537160104},"flavor":"x86_THREAD_STATE","rdi":{"value":123145537160576}},"queue":"PLClientLoggingAdaptivePermissionWorkQueue","frames":[{"imageOffset":4206,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":21},{"imageOffset":63576,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":21},{"imageOffset":33112,"symbol":"mach_msg_overwrite","symbolLocation":653,"imageIndex":21},{"imageOffset":4957,"symbol":"mach_msg","symbolLocation":19,"imageIndex":21},{"imageOffset":108129,"symbol":"_dispatch_mach_send_and_wait_for_reply","symbolLocation":521,"imageIndex":29},{"imageOffset":109157,"symbol":"dispatch_mach_send_with_result_and_wait_for_reply","symbolLocation":50,"imageIndex":29},{"imageOffset":48013,"symbol":"xpc_connection_send_message_with_reply_sync","symbolLocation":261,"imageIndex":30},{"imageOffset":13937,"symbol":"-[PLClientLogger xpcSendMessageWithReply:withClientID:withKey:withPayload:]","symbolLocation":251,"imageIndex":31},{"imageOffset":10604,"symbol":"__68-[PLClientLogger permissionForClientID:withKey:withType:completion:]_block_invoke","symbolLocation":133,"imageIndex":31},{"imageOffset":6854,"symbol":"_dispatch_call_block_and_release","symbolLocation":12,"imageIndex":29},{"imageOffset":11708,"symbol":"_dispatch_client_callout","symbolLocation":8,"imageIndex":29},{"imageOffset":36607,"symbol":"_dispatch_lane_serial_drain","symbolLocation":800,"imageIndex":29},{"imageOffset":39319,"symbol":"_dispatch_lane_invoke","symbolLocation":377,"imageIndex":29},{"imageOffset":78868,"symbol":"_dispatch_root_queue_drain_deferred_wlh","symbolLocation":271,"imageIndex":29},{"imageOffset":77098,"symbol":"_dispatch_workloop_worker_thread","symbolLocation":451,"imageIndex":29},{"imageOffset":11032,"symbol":"_pthread_wqthread","symbolLocation":327,"imageIndex":22},{"imageOffset":6831,"symbol":"start_wqthread","symbolLocation":15,"imageIndex":22}]},{"id":2260,"threadState":{"r13":{"value":123145537713952},"rax":{"value":18446744073709551612},"rflags":{"value":514},"cpu":{"value":0},"r14":{"value":16777217},"rsi":{"value":123145537714048},"r8":{"value":335007449088},"cr2":{"value":0},"rdx":{"value":0},"r10":{"value":0},"r9":{"value":0},"r15":{"value":0},"rbx":{"value":4294967295},"trap":{"value":133},"err":{"value":33554947},"r11":{"value":514},"rip":{"value":140703183087654},"rbp":{"value":123145537713856},"rsp":{"value":123145537713816},"r12":{"value":123145537714048},"rcx":{"value":123145537713816},"flavor":"x86_THREAD_STATE","rdi":{"value":16777217}},"queue":"com.apple.libtrace.state.block-list","frames":[{"imageOffset":10278,"symbol":"__ulock_wait","symbolLocation":10,"imageIndex":21},{"imageOffset":13780,"symbol":"_dlock_wait","symbolLocation":46,"imageIndex":29},{"imageOffset":13404,"symbol":"_dispatch_thread_event_wait_slow","symbolLocation":40,"imageIndex":29},{"imageOffset":65464,"symbol":"__DISPATCH_WAIT_FOR_QUEUE__","symbolLocation":307,"imageIndex":29},{"imageOffset":64484,"symbol":"_dispatch_sync_f_slow","symbolLocation":175,"imageIndex":29},{"imageOffset":49305,"symbol":"___os_state_request_for_self_block_invoke","symbolLocation":375,"imageIndex":32},{"imageOffset":6854,"symbol":"_dispatch_call_block_and_release","symbolLocation":12,"imageIndex":29},{"imageOffset":11708,"symbol":"_dispatch_client_callout","symbolLocation":8,"imageIndex":29},{"imageOffset":36607,"symbol":"_dispatch_lane_serial_drain","symbolLocation":800,"imageIndex":29},{"imageOffset":39319,"symbol":"_dispatch_lane_invoke","symbolLocation":377,"imageIndex":29},{"imageOffset":78868,"symbol":"_dispatch_root_queue_drain_deferred_wlh","symbolLocation":271,"imageIndex":29},{"imageOffset":77098,"symbol":"_dispatch_workloop_worker_thread","symbolLocation":451,"imageIndex":29},{"imageOffset":11032,"symbol":"_pthread_wqthread","symbolLocation":327,"imageIndex":22},{"imageOffset":6831,"symbol":"start_wqthread","symbolLocation":15,"imageIndex":22}]},{"id":2356,"frames":[{"imageOffset":6816,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":22}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":16743},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145537728512},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145538251640},"rbx":{"value":123145538252800},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703183325856},"rbp":{"value":0},"rsp":{"value":123145538252800},"r12":{"value":5193732},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145538252800}}},{"id":2357,"threadState":{"r13":{"value":17297326606},"rax":{"value":268451845},"rflags":{"value":514},"cpu":{"value":0},"r14":{"value":16384},"rsi":{"value":17297326606},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":0},"r10":{"value":82179},"r9":{"value":355155140673536},"r15":{"value":355155140673536},"rbx":{"value":123145538767168},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":514},"rip":{"value":140703183081582},"rbp":{"value":123145538766800},"rsp":{"value":123145538766696},"r12":{"value":0},"rcx":{"value":123145538766696},"flavor":"x86_THREAD_STATE","rdi":{"value":123145538767168}},"queue":"com.apple.CoreBrightness.BSCI serial","frames":[{"imageOffset":4206,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":21},{"imageOffset":63576,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":21},{"imageOffset":33112,"symbol":"mach_msg_overwrite","symbolLocation":653,"imageIndex":21},{"imageOffset":4957,"symbol":"mach_msg","symbolLocation":19,"imageIndex":21},{"imageOffset":108129,"symbol":"_dispatch_mach_send_and_wait_for_reply","symbolLocation":521,"imageIndex":29},{"imageOffset":109157,"symbol":"dispatch_mach_send_with_result_and_wait_for_reply","symbolLocation":50,"imageIndex":29},{"imageOffset":48013,"symbol":"xpc_connection_send_message_with_reply_sync","symbolLocation":261,"imageIndex":30},{"imageOffset":122832,"symbol":"__NSXPCCONNECTION_IS_WAITING_FOR_A_SYNCHRONOUS_REPLY__","symbolLocation":9,"imageIndex":33},{"imageOffset":114518,"symbol":"-[NSXPCConnection _sendInvocation:orArguments:count:methodSignature:selector:withProxy:]","symbolLocation":3103,"imageIndex":33},{"imageOffset":140682,"symbol":"-[NSXPCConnection _sendSelector:withProxy:arg1:arg2:]","symbolLocation":132,"imageIndex":33},{"imageOffset":140471,"symbol":"_NSXPCDistantObjectSimpleMessageSend2","symbolLocation":63,"imageIndex":33},{"imageOffset":12595,"symbol":"__53-[BrightnessSystemClientInternal copyPropertyForKey:]_block_invoke","symbolLocation":89,"imageIndex":34},{"imageOffset":24656,"symbol":"_dispatch_block_sync_invoke","symbolLocation":301,"imageIndex":29},{"imageOffset":11708,"symbol":"_dispatch_client_callout","symbolLocation":8,"imageIndex":29},{"imageOffset":64828,"symbol":"_dispatch_lane_barrier_sync_invoke_and_complete","symbolLocation":60,"imageIndex":29},{"imageOffset":28431,"symbol":"_dispatch_sync_block_with_privdata","symbolLocation":410,"imageIndex":29},{"imageOffset":11774,"symbol":"-[BrightnessSystemClientInternal copyPropertyForKey:]","symbolLocation":233,"imageIndex":34},{"imageOffset":449363,"symbol":"-[CBBlueLightClient init]","symbolLocation":98,"imageIndex":34},{"imageOffset":1643058,"symbol":"invocation function for block in get_shared_blue_light_client()","symbolLocation":188,"imageIndex":24},{"imageOffset":11708,"symbol":"_dispatch_client_callout","symbolLocation":8,"imageIndex":29},{"imageOffset":16462,"symbol":"_dispatch_once_callout","symbolLocation":20,"imageIndex":29},{"imageOffset":1642451,"symbol":"__PKGInitializeAppearanceTransitions_block_invoke","symbolLocation":61,"imageIndex":24},{"imageOffset":6854,"symbol":"_dispatch_call_block_and_release","symbolLocation":12,"imageIndex":29},{"imageOffset":11708,"symbol":"_dispatch_client_callout","symbolLocation":8,"imageIndex":29},{"imageOffset":36607,"symbol":"_dispatch_lane_serial_drain","symbolLocation":800,"imageIndex":29},{"imageOffset":39319,"symbol":"_dispatch_lane_invoke","symbolLocation":377,"imageIndex":29},{"imageOffset":78868,"symbol":"_dispatch_root_queue_drain_deferred_wlh","symbolLocation":271,"imageIndex":29},{"imageOffset":77098,"symbol":"_dispatch_workloop_worker_thread","symbolLocation":451,"imageIndex":29},{"imageOffset":11032,"symbol":"_pthread_wqthread","symbolLocation":327,"imageIndex":22},{"imageOffset":6831,"symbol":"start_wqthread","symbolLocation":15,"imageIndex":22}]},{"id":2367,"name":"IOHIDService - RunLoopCompatibilityThread","threadState":{"r13":{"value":21592279046},"rax":{"value":268451845},"rflags":{"value":518},"cpu":{"value":0},"r14":{"value":2},"rsi":{"value":21592279046},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":8589934592},"r10":{"value":133070971731968},"r9":{"value":133070971731968},"r15":{"value":133070971731968},"rbx":{"value":123145539321808},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":518},"rip":{"value":140703183081582},"rbp":{"value":123145539321648},"rsp":{"value":123145539321544},"r12":{"value":4294967295},"rcx":{"value":123145539321544},"flavor":"x86_THREAD_STATE","rdi":{"value":123145539321808}},"frames":[{"imageOffset":4206,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":21},{"imageOffset":63576,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":21},{"imageOffset":33112,"symbol":"mach_msg_overwrite","symbolLocation":653,"imageIndex":21},{"imageOffset":4957,"symbol":"mach_msg","symbolLocation":19,"imageIndex":21},{"imageOffset":507957,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":143,"imageIndex":35},{"imageOffset":502437,"symbol":"__CFRunLoopRun","symbolLocation":1371,"imageIndex":35},{"imageOffset":499586,"symbol":"CFRunLoopRunSpecific","symbolLocation":557,"imageIndex":35},{"imageOffset":1006094,"symbol":"CFRunLoopRun","symbolLocation":40,"imageIndex":35},{"imageOffset":369598,"symbol":"__IOHIDServiceRunLoopCompatibilityThread","symbolLocation":307,"imageIndex":36},{"imageOffset":24863,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":22},{"imageOffset":6851,"symbol":"thread_start","symbolLocation":15,"imageIndex":22}]},{"id":2564,"frames":[{"imageOffset":4206,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":21},{"imageOffset":63576,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":21},{"imageOffset":33112,"symbol":"mach_msg_overwrite","symbolLocation":653,"imageIndex":21},{"imageOffset":4957,"symbol":"mach_msg","symbolLocation":19,"imageIndex":21},{"imageOffset":195744,"symbol":"CoreDisplay::Mach::Message::Receive(unsigned int)","symbolLocation":80,"imageIndex":28},{"imageOffset":967547,"symbol":"CoreDisplay::Mach::Server::Start()","symbolLocation":105,"imageIndex":28},{"imageOffset":967748,"symbol":"void* std::__1::__thread_proxy[abi:ue170006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (CoreDisplay::Mach::Server::*)(), CoreDisplay::Mach::Server*>>(void*)","symbolLocation":79,"imageIndex":28},{"imageOffset":24863,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":22},{"imageOffset":6851,"symbol":"thread_start","symbolLocation":15,"imageIndex":22}],"threadState":{"r13":{"value":21525170182},"rax":{"value":268451845},"rflags":{"value":518},"cpu":{"value":0},"r14":{"value":2},"rsi":{"value":21525170182},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":8589934592},"r10":{"value":0},"r9":{"value":346719824904192},"r15":{"value":346719824904192},"rbx":{"value":123145540935024},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":518},"rip":{"value":140703183081582},"rbp":{"value":123145540934864},"rsp":{"value":123145540934760},"r12":{"value":0},"rcx":{"value":123145540934760},"flavor":"x86_THREAD_STATE","rdi":{"value":123145540935024}}},{"id":2801,"frames":[{"imageOffset":6816,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":22}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":129315},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145539874816},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145540397944},"rbx":{"value":123145540399104},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703183325856},"rbp":{"value":0},"rsp":{"value":123145540399104},"r12":{"value":13500416},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145540399104}}},{"id":2802,"frames":[{"imageOffset":6816,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":22}],"threadState":{"r13":{"value":0},"rax":{"value":0},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":0},"rsi":{"value":0},"r8":{"value":278530},"cr2":{"value":0},"rdx":{"value":123145541484544},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":0},"rbx":{"value":0},"trap":{"value":0},"err":{"value":0},"r11":{"value":0},"rip":{"value":140703183325856},"rbp":{"value":0},"rsp":{"value":123145542008832},"r12":{"value":0},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145542008832}}},{"id":2871,"name":"com.apple.windowserver.root_queue","threadState":{"r13":{"value":18446744071427850239},"rax":{"value":14},"rflags":{"value":518},"cpu":{"value":0},"r14":{"value":140408935957056},"rsi":{"value":4294965663912427524},"r8":{"value":1},"cr2":{"value":0},"rdx":{"value":999999620},"r10":{"value":4294965663912427520},"r9":{"value":2638291157},"r15":{"value":19342813113834067},"rbx":{"value":121380681995},"trap":{"value":133},"err":{"value":16777254},"r11":{"value":518},"rip":{"value":140703183081474},"rbp":{"value":123145541472064},"rsp":{"value":123145541472024},"r12":{"value":0},"rcx":{"value":123145541472024},"flavor":"x86_THREAD_STATE","rdi":{"value":5891}},"frames":[{"imageOffset":4098,"symbol":"semaphore_timedwait_trap","symbolLocation":10,"imageIndex":21},{"imageOffset":13069,"symbol":"_dispatch_sema4_timedwait","symbolLocation":73,"imageIndex":29},{"imageOffset":14169,"symbol":"_dispatch_semaphore_wait_slow","symbolLocation":58,"imageIndex":29},{"imageOffset":73441,"symbol":"_dispatch_worker_thread","symbolLocation":324,"imageIndex":29},{"imageOffset":24863,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":22},{"imageOffset":6851,"symbol":"thread_start","symbolLocation":15,"imageIndex":22}]}], "usedImages" : [ { "source" : "P", "arch" : "x86_64", "base" : 4484935680, "size" : 81920, "uuid" : "9347c308-5d42-3576-919f-e3c6412920d7", "path" : "\/System\/Library\/CoreServices\/TouchBarEvent.bundle", "name" : "TouchBarEvent.bundle" }, { "source" : "P", "arch" : "x86_64", "base" : 4959715328, "CFBundleShortVersionString" : "16.0.32", "CFBundleIdentifier" : "com.apple.driver.AppleIntelTGLGraphicsMTLDriver", "size" : 4718592, "uuid" : "2b849e57-ac6a-3216-a67b-38e080603585", "path" : "\/System\/Library\/Extensions\/AppleIntelTGLGraphicsMTLDriver.bundle\/Contents\/MacOS\/AppleIntelTGLGraphicsMTLDriver", "name" : "AppleIntelTGLGraphicsMTLDriver", "CFBundleVersion" : "16.0.0" }, { "source" : "P", "arch" : "x86_64", "base" : 4483117056, "CFBundleShortVersionString" : "481.40.2", "CFBundleIdentifier" : "com.apple.driver.IOAccelerator2D", "size" : 4096, "uuid" : "9156b710-fd38-3f08-853d-4815e994e497", "path" : "\/System\/Library\/Extensions\/IOAccelerator2D.plugin\/Contents\/MacOS\/IOAccelerator2D", "name" : "IOAccelerator2D", "CFBundleVersion" : "481.40.2" }, { "source" : "P", "arch" : "x86_64", "base" : 4482822144, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.KeyboardTelemetryServiceFilter", "size" : 20480, "uuid" : "5b63b15c-8384-3842-b2fc-610d3c111571", "path" : "\/System\/Library\/HIDPlugins\/ServiceFilters\/KeyboardTelemetryServiceFilter.plugin\/Contents\/MacOS\/KeyboardTelemetryServiceFilter", "name" : "KeyboardTelemetryServiceFilter", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4482416640, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.iokit.hid.IOHIDKeyboardFilter", "size" : 53248, "uuid" : "0a6f1836-9411-3cff-b4d4-3601951b8f68", "path" : "\/System\/Library\/HIDPlugins\/IOHIDKeyboardFilter.plugin\/Contents\/MacOS\/IOHIDKeyboardFilter", "name" : "IOHIDKeyboardFilter", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4482588672, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.IOHIDEventServicePlugin", "size" : 16384, "uuid" : "e98a8bdc-ceb0-353c-a792-ac43b4c156ec", "path" : "\/System\/Library\/HIDPlugins\/ServicePlugins\/IOHIDEventServicePlugin.plugin\/Contents\/MacOS\/IOHIDEventServicePlugin", "name" : "IOHIDEventServicePlugin", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4482539520, "CFBundleShortVersionString" : "2.0.0", "CFBundleIdentifier" : "com.apple.iokit.IOHIDNXEventRouter", "size" : 8192, "uuid" : "c5776ed1-edf2-32dd-931d-0c9af0baa570", "path" : "\/System\/Library\/Extensions\/IOHIDFamily.kext\/Contents\/PlugIns\/IOHIDNXEventRouter.plugin\/Contents\/MacOS\/IOHIDNXEventRouter", "name" : "IOHIDNXEventRouter", "CFBundleVersion" : "2.0.0" }, { "source" : "P", "arch" : "x86_64", "base" : 4482203648, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.iokit.hid.IOHIDPointerScrollFilter", "size" : 45056, "uuid" : "fffa6ff3-aca0-336c-a683-3d6ad2aec591", "path" : "\/System\/Library\/HIDPlugins\/IOHIDPointerScrollFilter.plugin\/Contents\/MacOS\/IOHIDPointerScrollFilter", "name" : "IOHIDPointerScrollFilter", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4486074368, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.universalcontrol.servicefilter", "size" : 753664, "uuid" : "3fb727a2-1bf5-3eca-8eb4-83cba783ec3e", "path" : "\/System\/Library\/HIDPlugins\/ServiceFilters\/UniversalControlServiceFilter.plugin\/Contents\/MacOS\/UniversalControlServiceFilter", "name" : "UniversalControlServiceFilter", "CFBundleVersion" : "140.300" }, { "source" : "P", "arch" : "x86_64", "base" : 4482342912, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.AppleHIDBluetoothFilter", "size" : 12288, "uuid" : "1ec1be0b-acc8-3dd0-a1ad-44224ab7a799", "path" : "\/System\/Library\/HIDPlugins\/ServiceFilters\/AppleHIDBluetoothFilter.plugin\/Contents\/MacOS\/AppleHIDBluetoothFilter", "name" : "AppleHIDBluetoothFilter", "CFBundleVersion" : "7440.8.2" }, { "source" : "P", "arch" : "x86_64", "base" : 4481675264, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.iokit.hid.IOHIDEventProcessorFilter", "size" : 20480, "uuid" : "d17a743a-1e32-3f58-9e2c-82f55f34c9f1", "path" : "\/System\/Library\/HIDPlugins\/IOHIDEventProcessorFilter.plugin\/Contents\/MacOS\/IOHIDEventProcessorFilter", "name" : "IOHIDEventProcessorFilter", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4481531904, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.hid.ColourSensorFilterPlugin", "size" : 86016, "uuid" : "ea9e0391-31e6-3871-8b14-ccf2caeb95ec", "path" : "\/System\/Library\/HIDPlugins\/ColourSensorFilterPlugin.plugin\/Contents\/MacOS\/ColourSensorFilterPlugin", "name" : "ColourSensorFilterPlugin", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4481896448, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.iokit.hid.IOHIDNXEventTranslatorServiceFilter", "size" : 12288, "uuid" : "43951734-596c-3deb-9ee9-4b80ee2830c5", "path" : "\/System\/Library\/HIDPlugins\/IOHIDNXEventTranslatorServiceFilter.plugin\/Contents\/MacOS\/IOHIDNXEventTranslatorServiceFilter", "name" : "IOHIDNXEventTranslatorServiceFilter", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4481822720, "CFBundleShortVersionString" : "361", "CFBundleIdentifier" : "com.apple.iokit.plugin.AmbientLightSensorHID", "size" : 16384, "uuid" : "d5810c88-faab-36f9-9039-f93cc5f0fc33", "path" : "\/System\/Library\/Extensions\/AppleSMCLMU.kext\/Contents\/PlugIns\/AmbientLightSensorHID.plugin\/Contents\/MacOS\/AmbientLightSensorHID", "name" : "AmbientLightSensorHID", "CFBundleVersion" : "361" }, { "source" : "P", "arch" : "x86_64", "base" : 4481740800, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.CoreRCPlugin", "size" : 36864, "uuid" : "29ac854d-98c8-334d-8d6e-5ce6f6a6c682", "path" : "\/System\/Library\/HIDPlugins\/SessionFilters\/CoreRCPlugin.plugin\/Contents\/MacOS\/CoreRCPlugin", "name" : "CoreRCPlugin", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4481482752, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.IOHIDRemoteSensorSessionFilter", "size" : 8192, "uuid" : "6a629302-3064-33a5-9084-a035ce3c1837", "path" : "\/System\/Library\/HIDPlugins\/SessionFilters\/IOHIDRemoteSensorSessionFilter.plugin\/Contents\/MacOS\/IOHIDRemoteSensorSessionFilter", "name" : "IOHIDRemoteSensorSessionFilter", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4481974272, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.IOAnalytics", "size" : 77824, "uuid" : "004cbf55-ba19-3c6f-a3fa-e8137b5f0fc6", "path" : "\/System\/Library\/HIDPlugins\/SessionFilters\/IOAnalytics.plugin\/Contents\/MacOS\/IOAnalytics", "name" : "IOAnalytics", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4481298432, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.iokit.hid.IOHIDDFREventFilter", "size" : 12288, "uuid" : "9a9ef30e-c243-35bd-8d1d-67c26ec7eb0e", "path" : "\/System\/Library\/HIDPlugins\/IOHIDDFREventFilter.plugin\/Contents\/MacOS\/IOHIDDFREventFilter", "name" : "IOHIDDFREventFilter", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4481380352, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.iokit.hid.IOHIDNXEventTranslatorSessionFilter", "size" : 40960, "uuid" : "2e19b531-bc96-3cde-8212-76ae6e45ea84", "path" : "\/System\/Library\/HIDPlugins\/IOHIDNXEventTranslatorSessionFilter.plugin\/Contents\/MacOS\/IOHIDNXEventTranslatorSessionFilter", "name" : "IOHIDNXEventTranslatorSessionFilter", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4501372928, "size" : 7548928, "uuid" : "8a2677bd-626f-36bd-b101-497695b244eb", "path" : "\/System\/Library\/PrivateFrameworks\/SkyLight.framework\/Versions\/A\/Resources\/CursorAsset", "name" : "CursorAsset" }, { "source" : "P", "arch" : "x86_64", "base" : 4480430080, "size" : 8192, "uuid" : "199c252f-22bf-3ce0-877c-126b96555a61", "path" : "\/System\/Library\/PrivateFrameworks\/SkyLight.framework\/Versions\/A\/Resources\/WindowServer", "name" : "WindowServer" }, { "source" : "P", "arch" : "x86_64", "base" : 140703183077376, "size" : 241656, "uuid" : "c14e014c-3042-3d58-9021-a9d513db9f17", "path" : "\/usr\/lib\/system\/libsystem_kernel.dylib", "name" : "libsystem_kernel.dylib" }, { "source" : "P", "arch" : "x86_64", "base" : 140703183319040, "size" : 49152, "uuid" : "94607857-3850-3632-af50-37163dd339f7", "path" : "\/usr\/lib\/system\/libsystem_pthread.dylib", "name" : "libsystem_pthread.dylib" }, { "source" : "P", "arch" : "x86_64", "base" : 140703181926400, "size" : 557048, "uuid" : "3ac1393a-1569-381a-a323-7aa477b504c5", "path" : "\/usr\/lib\/system\/libsystem_c.dylib", "name" : "libsystem_c.dylib" }, { "source" : "P", "arch" : "x86_64", "base" : 140703274409984, "CFBundleShortVersionString" : "1.600.0", "CFBundleIdentifier" : "com.apple.SkyLight", "size" : 4599807, "uuid" : "17842b99-c260-30bb-bec8-d1e270c11d56", "path" : "\/System\/Library\/PrivateFrameworks\/SkyLight.framework\/Versions\/A\/SkyLight", "name" : "SkyLight" }, { "source" : "P", "arch" : "x86_64", "base" : 140703179599872, "size" : 592520, "uuid" : "43926ebe-f6c6-30d6-aa12-c0945b2bf6d3", "path" : "\/usr\/lib\/dyld", "name" : "dyld" }, { "size" : 0, "source" : "A", "base" : 0, "uuid" : "00000000-0000-0000-0000-000000000000" }, { "source" : "P", "arch" : "x86_64", "base" : 140703324647424, "CFBundleShortVersionString" : "1.11", "CFBundleIdentifier" : "com.apple.QuartzCore", "size" : 3715070, "uuid" : "a43c79b7-1399-3e97-b225-9ee0fc73c68d", "path" : "\/System\/Library\/Frameworks\/QuartzCore.framework\/Versions\/A\/QuartzCore", "name" : "QuartzCore", "CFBundleVersion" : "1120.34.15" }, { "source" : "P", "arch" : "x86_64", "base" : 140703215034368, "CFBundleShortVersionString" : "285", "CFBundleIdentifier" : "com.apple.CoreDisplay", "size" : 1236982, "uuid" : "817784a6-869c-3676-ae6c-a552292238b0", "path" : "\/System\/Library\/Frameworks\/CoreDisplay.framework\/Versions\/A\/CoreDisplay", "name" : "CoreDisplay", "CFBundleVersion" : "285" }, { "source" : "P", "arch" : "x86_64", "base" : 140703181623296, "size" : 290802, "uuid" : "1b5bc7ce-4058-3461-839d-24e12c03a809", "path" : "\/usr\/lib\/system\/libdispatch.dylib", "name" : "libdispatch.dylib" }, { "source" : "P", "arch" : "x86_64", "base" : 140703180210176, "size" : 294910, "uuid" : "8d4dfdcc-86f5-305b-92d1-66fd33efc920", "path" : "\/usr\/lib\/system\/libxpc.dylib", "name" : "libxpc.dylib" }, { "source" : "P", "arch" : "x86_64", "base" : 140703546114048, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.PowerLog", "size" : 163840, "uuid" : "2c630a86-ed64-3caf-9f81-64a60ff3e42e", "path" : "\/System\/Library\/PrivateFrameworks\/PowerLog.framework\/Versions\/A\/PowerLog", "name" : "PowerLog", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 140703180505088, "size" : 106495, "uuid" : "e35d68c9-391f-3e37-9aaf-b7c2186ab377", "path" : "\/usr\/lib\/system\/libsystem_trace.dylib", "name" : "libsystem_trace.dylib" }, { "source" : "P", "arch" : "x86_64", "base" : 140703200333824, "CFBundleShortVersionString" : "6.9", "CFBundleIdentifier" : "com.apple.Foundation", "size" : 12812284, "uuid" : "c14ad813-8ea1-31fd-8197-5fd3ebe56186", "path" : "\/System\/Library\/Frameworks\/Foundation.framework\/Versions\/C\/Foundation", "name" : "Foundation", "CFBundleVersion" : "2602.0.902.1.403" }, { "source" : "P", "arch" : "x86_64", "base" : 140703435939840, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.corebrightness", "size" : 1060864, "uuid" : "f09fde2b-ab55-348a-85e9-a85f721ded79", "path" : "\/System\/Library\/PrivateFrameworks\/CoreBrightness.framework\/Versions\/A\/CoreBrightness", "name" : "CoreBrightness", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64h", "base" : 140703183745024, "CFBundleShortVersionString" : "6.9", "CFBundleIdentifier" : "com.apple.CoreFoundation", "size" : 4829181, "uuid" : "b125508e-b96a-3abc-b2da-cba80ed21f4b", "path" : "\/System\/Library\/Frameworks\/CoreFoundation.framework\/Versions\/A\/CoreFoundation", "name" : "CoreFoundation", "CFBundleVersion" : "2602.0.902.1.403" }, { "source" : "P", "arch" : "x86_64", "base" : 140703239864320, "CFBundleShortVersionString" : "2.0.2", "CFBundleIdentifier" : "com.apple.framework.IOKit", "size" : 802816, "uuid" : "6d34b5af-17e8-3292-970f-dd672c908f56", "path" : "\/System\/Library\/Frameworks\/IOKit.framework\/Versions\/A\/IOKit", "name" : "IOKit" } ], "sharedCache" : { "base" : 140703178903552, "size" : 25769803776, "uuid" : "6b48bb4a-0319-363f-b4b8-675f97dcaba4" }, "vmSummary" : "ReadOnly portion of Libraries: Total=463.9M resident=0K(0%) swapped_out_or_unallocated=463.9M(100%)\nWritable regions: Total=2.9G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=2.9G(100%)\n\n VIRTUAL REGION \nREGION TYPE SIZE COUNT (non-coalesced) \n=========== ======= ======= \nActivity Tracing 256K 1 \nCG backing stores 8120K 6 \nCG framebuffers 1.0G 9 \nCG framebuffers (reserved) 589.1M 8 reserved VM address space (unallocated)\nColorSync 12K 2 \nKernel Alloc Once 8K 1 \nMALLOC 1.3G 43 \nMALLOC guard page 48K 12 \nMach message 12K 1 \nSTACK GUARD 56.0M 12 \nStack 14.1M 12 \nVM_ALLOCATE 992K 11 \nVM_ALLOCATE (reserved) 12K 1 reserved VM address space (unallocated)\n__CGSERVER 4K 1 \n__DATA 18.6M 370 \n__DATA_CONST 16.5M 242 \n__DATA_DIRTY 656K 113 \n__FONT_DATA 2352 1 \n__LINKEDIT 181.5M 23 \n__OBJC_RO 71.9M 1 \n__OBJC_RW 2201K 2 \n__SLSERVER 4K 1 \n__TEXT 282.3M 396 \nmapped file 31.3M 4 \nshared memory 768K 16 \n=========== ======= ======= \nTOTAL 3.6G 1289 \nTOTAL, minus reserved VM space 3.0G 1289 \n", "legacyInfo" : { "threadTriggered" : { "name" : "ws_main_thread", "queue" : "com.apple.main-thread" } }, "logWritingSignature" : "29cc8bafac136fe7f7cba38f92a88c8b26d6baf2" } Model: MacBookPro16,2, BootROM 9999.999.999.999.999, 4 processors, Quad-Core Intel Core i5, 1.38 GHz, 32 GB, SMC Graphics: Intel Iris Xe Graphics, Intel Iris Xe Graphics, Built-In Display: Unknown Display, 1920 x 1080 (1080p FHD - Full High Definition), Main, MirrorOff, Online Memory Module: BANK 0/DIMM 1, 16 GB, DDR4, 3200 MHz, 80CE000080CE, M471A2K43DB1-CWE Memory Module: BANK 0/DIMM 2, 16 GB, DDR4, 3200 MHz, 80CE000080CE, M471A2K43DB1-CWE AirPort: spairport_wireless_card_type_wifi (0x8086, 0x84), itlwm: 2.3.0 fw: 68.01d30b0c.0 Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports Network Service: Wi-Fi, AirPort, en1 Network Service: Tailscale, VPN (io.tailscale.ipn.macsys), utun4 PCI Card: Intel Iris Xe Graphics, VGA-Compatible Controller, built-in PCI Card: Tiger Lake-LP Dynamic Tuning Processor Participant, Signal processing controller, Internal@0,4,0 PCI Card: GNA Scoring Accelerator module, System peripheral, Internal@0,8,0 PCI Card: Tiger Lake-LP Thunderbolt 4 USB Controller, USB controller, Internal@0,13,0 PCI Card: Tiger Lake-LP USB 3.2 Gen 2x1 xHCI Host Controller, USB controller, Internal@0,20,0 PCI Card: Tiger Lake-LP Shared SRAM, RAM memory, Internal@0,20,2 PCI Card: Tiger Lake-LP Serial IO I2C Controller #0, Serial bus controller, Internal@0,21,0 PCI Card: Tiger Lake-LP Serial IO I2C Controller #1, Serial bus controller, Internal@0,21,1 PCI Card: Tiger Lake-LP Management Engine Interface, Communication controller, Internal@0,22,0 PCI Card: Tiger Lake-LP Smart Sound Technology Audio Controller, Multimedia audio controller, Internal@0,31,3 PCI Card: Tiger Lake-LP SMBus Controller, SMBus, Internal@0,31,4 PCI Card: Tiger Lake-LP SPI Controller, Serial bus controller, Internal@0,31,5 USB Device: USB31Bus USB Device: Dell dock USB Device: USB 10/100/1000 LAN USB Device: Dell dock USB Device: USB31Bus USB Device: Bluetooth USB Host Controller USB Device: Integrated_Webcam_HD USB Device: 2.4G Mouse USB Device: DataTraveler 3.0 USB Device: Dell dock USB Device: Dell Dock WD19S USB Device: Dell dock USB Device: Dell dock Thunderbolt Bus: Upon Boot, currently at the frozen screen, no vnc options, the client gets stuck at downloading first frame. Edited April 13 by Mastachief Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849062 Share on other sites More sharing options...
Stezza88 Posted April 13 Author Share Posted April 13 (edited) 15 hours ago, jkbuha said: I've managed to patch your Lilu fork to compile and load on Sequoia, compile NootedGreen and HookCase, force load both TGL kexts with a launchdaemon. Screen boots up without acceleration, but still on 8MB VRAM. Here's what's working NootedGreen V58 Release+Debug: loads, patches both TGL kexts Patched Lilu 1.7.3 with loadKinfoPlaceholder: loads, Release build on EFI HookCase 8.0.1: loads from /Library/Extensions TGL FB + TGL HW: both load (via launch daemons), both in auxiliary KC V58 real-TGL detection works: "Real TGL — native topology" IOAccelF2 patches: OK Not working so far: All Intel classes at 0 instances (AppleIntelFramebufferController, IntelAccelerator, IGAccelDevice, IGHardwareGuC, IntelTGLMemoryManager) NDRV still owns IGPU — no TGL framebuffer matched VRAM 8MB, "No Kext Loaded" in System Profiler No dmesg/log output on Sequoia (buffer rolls over before capture, unified log empty) Let me know how to produce debug/logfiles and I'll attach them here. Need these below and your lilu dump at /var/log : log show --style syslog --predicate 'processID == 0' --last 15m --info --debug > /tmp/x.log 5 hours ago, Mastachief said: Current error in Metal pipeline creation. ------------------------------------- Translated Report (Full Report Below) ------------------------------------- Process: WindowServer [156] Path: /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/Resources/WindowServer Identifier: WindowServer Version: ??? Code Type: X86-64 (Native) Parent Process: launchd [1] User ID: 88 Date/Time: 2026-04-12 23:55:32.6523 -0500 OS Version: macOS 14.8.3 (23J220) Report Version: 12 Anonymous UUID: C61662F0-F760-1F32-8B2C-5C0905DEF1EA Time Awake Since Boot: 110 seconds System Integrity Protection: disabled Crashed Thread: 0 ws_main_thread Dispatch queue: com.apple.main-thread Exception Type: EXC_CRASH (SIGABRT) Exception Codes: 0x0000000000000000, 0x0000000000000000 Termination Reason: Namespace SIGNAL, Code 6 Abort trap: 6 Terminating Process: WindowServer [156] Application Specific Information: abort() called Kernel Triage: VM - (arg = 0x0) Returned success with no page VM - (arg = 0x0) Returned success with no page Thread 0 Crashed:: ws_main_thread Dispatch queue: com.apple.main-thread 0 libsystem_kernel.dylib 0x7ff8033f7d96 __pthread_kill + 10 1 libsystem_pthread.dylib 0x7ff803430e51 pthread_kill + 262 2 libsystem_c.dylib 0x7ff803356a69 abort + 126 3 SkyLight 0x7ff808cc3657 MetalShader::CopyPipelineState(MetalContext*, bool, bool) + 3209 4 SkyLight 0x7ff808e5ecec MetalTiledBacking::RenderToDestination(MetalContext*, WSCompositeSourceLayer*, WSCompositeDestination*) + 676 5 SkyLight 0x7ff808e697b4 MetalCompositeLayers + 41 6 SkyLight 0x7ff808e6928b CompositorMetal::composite(WSCompositeSourceLayer*, WSCompositeDestination*, bool, bool) + 415 7 SkyLight 0x7ff808e63f3a CompositorMetal::CompositeLayersToDestination(WSCompositeSourceLayer*, WSCompositeDestination*, unsigned long long) + 244 8 SkyLight 0x7ff808cef44e WS::Displays::CDDisplay::render_update(WS::Displays::Update&, Compositor*, unsigned int, WSCompositeSourceLayer*) + 872 9 SkyLight 0x7ff808dac3ae WS::Updater::UpdateDisplays(CGXConnection*, bool, std::__1::vector<std::__1::shared_ptr<WS::Displays::Display>, std::__1::allocator<std::__1::shared_ptr<WS::Displays::Display>>>) + 21295 10 SkyLight 0x7ff808da7053 CGXUpdateDisplay + 91 11 SkyLight 0x7ff808d9ad27 update_display_callback(void*, double) + 1825 12 SkyLight 0x7ff808e39ab7 run_timer_pass + 556 13 SkyLight 0x7ff808e39baa non_coalesced_timer_handler + 16 14 SkyLight 0x7ff808e78f70 post_port_data + 269 15 SkyLight 0x7ff808e78cbb CGXRunOneServicesPass + 1696 16 SkyLight 0x7ff808e79662 server_loop + 98 17 SkyLight 0x7ff808e794bc SLXServer + 1265 18 WindowServer 0x10b0e048c 0x10b0df000 + 5260 19 dyld 0x7ff8030a5345 start + 1909 Thread 1:: com.apple.coreanimation.render-server 0 libsystem_kernel.dylib 0x7ff8033f106e mach_msg2_trap + 10 1 libsystem_kernel.dylib 0x7ff8033ff858 mach_msg2_internal + 84 2 libsystem_kernel.dylib 0x7ff8033f8158 mach_msg_overwrite + 653 3 libsystem_kernel.dylib 0x7ff8033f135d mach_msg + 19 4 QuartzCore 0x7ff80bb3bc3e CA::Render::Server::server_thread(void*) + 664 5 QuartzCore 0x7ff80bb3b993 thread_fun(void*) + 25 6 libsystem_pthread.dylib 0x7ff80343111f _pthread_start + 99 7 libsystem_pthread.dylib 0x7ff80342cac3 thread_start + 15 Thread 2:: Dispatch queue: com.apple.VirtualDisplayListener 0 libsystem_kernel.dylib 0x7ff8033f106e mach_msg2_trap + 10 1 libsystem_kernel.dylib 0x7ff8033ff858 mach_msg2_internal + 84 2 libsystem_kernel.dylib 0x7ff8033f8158 mach_msg_overwrite + 653 3 libsystem_kernel.dylib 0x7ff8033fa156 mach_msg_server_once + 266 4 CoreDisplay 0x7ff80527b95d -[VirtualDisplayListener rx] + 77 5 libdispatch.dylib 0x7ff80328eac6 _dispatch_call_block_and_release + 12 6 libdispatch.dylib 0x7ff80328fdbc _dispatch_client_callout + 8 7 libdispatch.dylib 0x7ff803295eff _dispatch_lane_serial_drain + 800 8 libdispatch.dylib 0x7ff803296997 _dispatch_lane_invoke + 377 9 libdispatch.dylib 0x7ff8032a0414 _dispatch_root_queue_drain_deferred_wlh + 271 10 libdispatch.dylib 0x7ff80329fd2a _dispatch_workloop_worker_thread + 451 11 libsystem_pthread.dylib 0x7ff80342db18 _pthread_wqthread + 327 12 libsystem_pthread.dylib 0x7ff80342caaf start_wqthread + 15 Thread 3:: Dispatch queue: PLClientLoggingAdaptivePermissionWorkQueue 0 libsystem_kernel.dylib 0x7ff8033f106e mach_msg2_trap + 10 1 libsystem_kernel.dylib 0x7ff8033ff858 mach_msg2_internal + 84 2 libsystem_kernel.dylib 0x7ff8033f8158 mach_msg_overwrite + 653 3 libsystem_kernel.dylib 0x7ff8033f135d mach_msg + 19 4 libdispatch.dylib 0x7ff8032a7661 _dispatch_mach_send_and_wait_for_reply + 521 5 libdispatch.dylib 0x7ff8032a7a65 dispatch_mach_send_with_result_and_wait_for_reply + 50 6 libxpc.dylib 0x7ff80313fb8d xpc_connection_send_message_with_reply_sync + 261 7 PowerLog 0x7ff818e2b671 -[PLClientLogger xpcSendMessageWithReply:withClientID:withKey:withPayload:] + 251 8 PowerLog 0x7ff818e2a96c __68-[PLClientLogger permissionForClientID:withKey:withType:completion:]_block_invoke + 133 9 libdispatch.dylib 0x7ff80328eac6 _dispatch_call_block_and_release + 12 10 libdispatch.dylib 0x7ff80328fdbc _dispatch_client_callout + 8 11 libdispatch.dylib 0x7ff803295eff _dispatch_lane_serial_drain + 800 12 libdispatch.dylib 0x7ff803296997 _dispatch_lane_invoke + 377 13 libdispatch.dylib 0x7ff8032a0414 _dispatch_root_queue_drain_deferred_wlh + 271 14 libdispatch.dylib 0x7ff80329fd2a _dispatch_workloop_worker_thread + 451 15 libsystem_pthread.dylib 0x7ff80342db18 _pthread_wqthread + 327 16 libsystem_pthread.dylib 0x7ff80342caaf start_wqthread + 15 Thread 4:: Dispatch queue: com.apple.libtrace.state.block-list 0 libsystem_kernel.dylib 0x7ff8033f2826 __ulock_wait + 10 1 libdispatch.dylib 0x7ff8032905d4 _dlock_wait + 46 2 libdispatch.dylib 0x7ff80329045c _dispatch_thread_event_wait_slow + 40 3 libdispatch.dylib 0x7ff80329cfb8 __DISPATCH_WAIT_FOR_QUEUE__ + 307 4 libdispatch.dylib 0x7ff80329cbe4 _dispatch_sync_f_slow + 175 5 libsystem_trace.dylib 0x7ff803188099 ___os_state_request_for_self_block_invoke + 375 6 libdispatch.dylib 0x7ff80328eac6 _dispatch_call_block_and_release + 12 7 libdispatch.dylib 0x7ff80328fdbc _dispatch_client_callout + 8 8 libdispatch.dylib 0x7ff803295eff _dispatch_lane_serial_drain + 800 9 libdispatch.dylib 0x7ff803296997 _dispatch_lane_invoke + 377 10 libdispatch.dylib 0x7ff8032a0414 _dispatch_root_queue_drain_deferred_wlh + 271 11 libdispatch.dylib 0x7ff80329fd2a _dispatch_workloop_worker_thread + 451 12 libsystem_pthread.dylib 0x7ff80342db18 _pthread_wqthread + 327 13 libsystem_pthread.dylib 0x7ff80342caaf start_wqthread + 15 Thread 5: 0 libsystem_pthread.dylib 0x7ff80342caa0 start_wqthread + 0 Thread 6:: Dispatch queue: com.apple.CoreBrightness.BSCI serial 0 libsystem_kernel.dylib 0x7ff8033f106e mach_msg2_trap + 10 1 libsystem_kernel.dylib 0x7ff8033ff858 mach_msg2_internal + 84 2 libsystem_kernel.dylib 0x7ff8033f8158 mach_msg_overwrite + 653 3 libsystem_kernel.dylib 0x7ff8033f135d mach_msg + 19 4 libdispatch.dylib 0x7ff8032a7661 _dispatch_mach_send_and_wait_for_reply + 521 5 libdispatch.dylib 0x7ff8032a7a65 dispatch_mach_send_with_result_and_wait_for_reply + 50 6 libxpc.dylib 0x7ff80313fb8d xpc_connection_send_message_with_reply_sync + 261 7 Foundation 0x7ff804482fd0 __NSXPCCONNECTION_IS_WAITING_FOR_A_SYNCHRONOUS_REPLY__ + 9 8 Foundation 0x7ff804480f56 -[NSXPCConnection _sendInvocation:orArguments:count:methodSignature:selector:withProxy:] + 3103 9 Foundation 0x7ff80448758a -[NSXPCConnection _sendSelector:withProxy:arg1:arg2:] + 132 10 Foundation 0x7ff8044874b7 _NSXPCDistantObjectSimpleMessageSend2 + 63 11 CoreBrightness 0x7ff812519133 __53-[BrightnessSystemClientInternal copyPropertyForKey:]_block_invoke + 89 12 libdispatch.dylib 0x7ff803293050 _dispatch_block_sync_invoke + 301 13 libdispatch.dylib 0x7ff80328fdbc _dispatch_client_callout + 8 14 libdispatch.dylib 0x7ff80329cd3c _dispatch_lane_barrier_sync_invoke_and_complete + 60 15 libdispatch.dylib 0x7ff803293f0f _dispatch_sync_block_with_privdata + 410 16 CoreBrightness 0x7ff812518dfe -[BrightnessSystemClientInternal copyPropertyForKey:] + 233 17 CoreBrightness 0x7ff812583b53 -[CBBlueLightClient init] + 98 18 SkyLight 0x7ff808c9b232 invocation function for block in get_shared_blue_light_client() + 188 19 libdispatch.dylib 0x7ff80328fdbc _dispatch_client_callout + 8 20 libdispatch.dylib 0x7ff80329104e _dispatch_once_callout + 20 21 SkyLight 0x7ff808c9afd3 __PKGInitializeAppearanceTransitions_block_invoke + 61 22 libdispatch.dylib 0x7ff80328eac6 _dispatch_call_block_and_release + 12 23 libdispatch.dylib 0x7ff80328fdbc _dispatch_client_callout + 8 24 libdispatch.dylib 0x7ff803295eff _dispatch_lane_serial_drain + 800 25 libdispatch.dylib 0x7ff803296997 _dispatch_lane_invoke + 377 26 libdispatch.dylib 0x7ff8032a0414 _dispatch_root_queue_drain_deferred_wlh + 271 27 libdispatch.dylib 0x7ff80329fd2a _dispatch_workloop_worker_thread + 451 28 libsystem_pthread.dylib 0x7ff80342db18 _pthread_wqthread + 327 29 libsystem_pthread.dylib 0x7ff80342caaf start_wqthread + 15 Thread 7:: IOHIDService - RunLoopCompatibilityThread 0 libsystem_kernel.dylib 0x7ff8033f106e mach_msg2_trap + 10 1 libsystem_kernel.dylib 0x7ff8033ff858 mach_msg2_internal + 84 2 libsystem_kernel.dylib 0x7ff8033f8158 mach_msg_overwrite + 653 3 libsystem_kernel.dylib 0x7ff8033f135d mach_msg + 19 4 CoreFoundation 0x7ff80350f035 __CFRunLoopServiceMachPort + 143 5 CoreFoundation 0x7ff80350daa5 __CFRunLoopRun + 1371 6 CoreFoundation 0x7ff80350cf82 CFRunLoopRunSpecific + 557 7 CoreFoundation 0x7ff803588a0e CFRunLoopRun + 40 8 IOKit 0x7ff806a723be __IOHIDServiceRunLoopCompatibilityThread + 307 9 libsystem_pthread.dylib 0x7ff80343111f _pthread_start + 99 10 libsystem_pthread.dylib 0x7ff80342cac3 thread_start + 15 Thread 8: 0 libsystem_kernel.dylib 0x7ff8033f106e mach_msg2_trap + 10 1 libsystem_kernel.dylib 0x7ff8033ff858 mach_msg2_internal + 84 2 libsystem_kernel.dylib 0x7ff8033f8158 mach_msg_overwrite + 653 3 libsystem_kernel.dylib 0x7ff8033f135d mach_msg + 19 4 CoreDisplay 0x7ff805299ca0 CoreDisplay::Mach::Message::Receive(unsigned int) + 80 5 CoreDisplay 0x7ff80535637b CoreDisplay::Mach::Server::Start() + 105 6 CoreDisplay 0x7ff805356444 void* std::__1::__thread_proxy[abi:ue170006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (CoreDisplay::Mach::Server::*)(), CoreDisplay::Mach::Server*>>(void*) + 79 7 libsystem_pthread.dylib 0x7ff80343111f _pthread_start + 99 8 libsystem_pthread.dylib 0x7ff80342cac3 thread_start + 15 Thread 9: 0 libsystem_pthread.dylib 0x7ff80342caa0 start_wqthread + 0 Thread 10: 0 libsystem_pthread.dylib 0x7ff80342caa0 start_wqthread + 0 Thread 11:: com.apple.windowserver.root_queue 0 libsystem_kernel.dylib 0x7ff8033f1002 semaphore_timedwait_trap + 10 1 libdispatch.dylib 0x7ff80329030d _dispatch_sema4_timedwait + 73 2 libdispatch.dylib 0x7ff803290759 _dispatch_semaphore_wait_slow + 58 3 libdispatch.dylib 0x7ff80329eee1 _dispatch_worker_thread + 324 4 libsystem_pthread.dylib 0x7ff80343111f _pthread_start + 99 5 libsystem_pthread.dylib 0x7ff80342cac3 thread_start + 15 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x0000000000000000 rbx: 0x0000000000000006 rcx: 0x00007ff7b4e0ea38 rdx: 0x0000000000000000 rdi: 0x0000000000000103 rsi: 0x0000000000000006 rbp: 0x00007ff7b4e0ea60 rsp: 0x00007ff7b4e0ea38 r8: 0x00007ff844c11390 r9: 0x0000000000000500 r10: 0x0000000000000000 r11: 0x0000000000000246 r12: 0x0000000000000103 r13: 0x00007ff82346c292 r14: 0x00007ff846971800 r15: 0x0000000000000016 rip: 0x00007ff8033f7d96 rfl: 0x0000000000000246 cr2: 0x0000000000000000 Logical CPU: 0 Error Code: 0x02000148 Trap Number: 133 Binary Images: 0x10b52b000 - 0x10b53efff TouchBarEvent.bundle (*) <9347c308-5d42-3576-919f-e3c6412920d7> /System/Library/CoreServices/TouchBarEvent.bundle 0x1279f4000 - 0x127e73fff com.apple.driver.AppleIntelTGLGraphicsMTLDriver (16.0.32) <2b849e57-ac6a-3216-a67b-38e080603585> /System/Library/Extensions/AppleIntelTGLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelTGLGraphicsMTLDriver 0x10b36f000 - 0x10b36ffff com.apple.driver.IOAccelerator2D (481.40.2) <9156b710-fd38-3f08-853d-4815e994e497> /System/Library/Extensions/IOAccelerator2D.plugin/Contents/MacOS/IOAccelerator2D 0x10b327000 - 0x10b32bfff com.apple.KeyboardTelemetryServiceFilter (1.0) <5b63b15c-8384-3842-b2fc-610d3c111571> /System/Library/HIDPlugins/ServiceFilters/KeyboardTelemetryServiceFilter.plugin/Contents/MacOS/KeyboardTelemetryServiceFilter 0x10b2c4000 - 0x10b2d0fff com.apple.iokit.hid.IOHIDKeyboardFilter (1.0) <0a6f1836-9411-3cff-b4d4-3601951b8f68> /System/Library/HIDPlugins/IOHIDKeyboardFilter.plugin/Contents/MacOS/IOHIDKeyboardFilter 0x10b2ee000 - 0x10b2f1fff com.apple.IOHIDEventServicePlugin (1.0) <e98a8bdc-ceb0-353c-a792-ac43b4c156ec> /System/Library/HIDPlugins/ServicePlugins/IOHIDEventServicePlugin.plugin/Contents/MacOS/IOHIDEventServicePlugin 0x10b2e2000 - 0x10b2e3fff com.apple.iokit.IOHIDNXEventRouter (2.0.0) <c5776ed1-edf2-32dd-931d-0c9af0baa570> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDNXEventRouter.plugin/Contents/MacOS/IOHIDNXEventRouter 0x10b290000 - 0x10b29afff com.apple.iokit.hid.IOHIDPointerScrollFilter (1.0) <fffa6ff3-aca0-336c-a683-3d6ad2aec591> /System/Library/HIDPlugins/IOHIDPointerScrollFilter.plugin/Contents/MacOS/IOHIDPointerScrollFilter 0x10b641000 - 0x10b6f8fff com.apple.universalcontrol.servicefilter (1.0) <3fb727a2-1bf5-3eca-8eb4-83cba783ec3e> /System/Library/HIDPlugins/ServiceFilters/UniversalControlServiceFilter.plugin/Contents/MacOS/UniversalControlServiceFilter 0x10b2b2000 - 0x10b2b4fff com.apple.AppleHIDBluetoothFilter (1.0) <1ec1be0b-acc8-3dd0-a1ad-44224ab7a799> /System/Library/HIDPlugins/ServiceFilters/AppleHIDBluetoothFilter.plugin/Contents/MacOS/AppleHIDBluetoothFilter 0x10b20f000 - 0x10b213fff com.apple.iokit.hid.IOHIDEventProcessorFilter (1.0) <d17a743a-1e32-3f58-9e2c-82f55f34c9f1> /System/Library/HIDPlugins/IOHIDEventProcessorFilter.plugin/Contents/MacOS/IOHIDEventProcessorFilter 0x10b1ec000 - 0x10b200fff com.apple.hid.ColourSensorFilterPlugin (1.0) <ea9e0391-31e6-3871-8b14-ccf2caeb95ec> /System/Library/HIDPlugins/ColourSensorFilterPlugin.plugin/Contents/MacOS/ColourSensorFilterPlugin 0x10b245000 - 0x10b247fff com.apple.iokit.hid.IOHIDNXEventTranslatorServiceFilter (1.0) <43951734-596c-3deb-9ee9-4b80ee2830c5> /System/Library/HIDPlugins/IOHIDNXEventTranslatorServiceFilter.plugin/Contents/MacOS/IOHIDNXEventTranslatorServiceFilter 0x10b233000 - 0x10b236fff com.apple.iokit.plugin.AmbientLightSensorHID (361) <d5810c88-faab-36f9-9039-f93cc5f0fc33> /System/Library/Extensions/AppleSMCLMU.kext/Contents/PlugIns/AmbientLightSensorHID.plugin/Contents/MacOS/AmbientLightSensorHID 0x10b21f000 - 0x10b227fff com.apple.CoreRCPlugin (1.0) <29ac854d-98c8-334d-8d6e-5ce6f6a6c682> /System/Library/HIDPlugins/SessionFilters/CoreRCPlugin.plugin/Contents/MacOS/CoreRCPlugin 0x10b1e0000 - 0x10b1e1fff com.apple.IOHIDRemoteSensorSessionFilter (1.0) <6a629302-3064-33a5-9084-a035ce3c1837> /System/Library/HIDPlugins/SessionFilters/IOHIDRemoteSensorSessionFilter.plugin/Contents/MacOS/IOHIDRemoteSensorSessionFilter 0x10b258000 - 0x10b26afff com.apple.IOAnalytics (1.0) <004cbf55-ba19-3c6f-a3fa-e8137b5f0fc6> /System/Library/HIDPlugins/SessionFilters/IOAnalytics.plugin/Contents/MacOS/IOAnalytics 0x10b1b3000 - 0x10b1b5fff com.apple.iokit.hid.IOHIDDFREventFilter (1.0) <9a9ef30e-c243-35bd-8d1d-67c26ec7eb0e> /System/Library/HIDPlugins/IOHIDDFREventFilter.plugin/Contents/MacOS/IOHIDDFREventFilter 0x10b1c7000 - 0x10b1d0fff com.apple.iokit.hid.IOHIDNXEventTranslatorSessionFilter (1.0) <2e19b531-bc96-3cde-8212-76ae6e45ea84> /System/Library/HIDPlugins/IOHIDNXEventTranslatorSessionFilter.plugin/Contents/MacOS/IOHIDNXEventTranslatorSessionFilter 0x10c4d8000 - 0x10cc0afff CursorAsset (*) <8a2677bd-626f-36bd-b101-497695b244eb> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/Resources/CursorAsset 0x10b0df000 - 0x10b0e0fff WindowServer (*) <199c252f-22bf-3ce0-877c-126b96555a61> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/Resources/WindowServer 0x7ff8033f0000 - 0x7ff80342aff7 libsystem_kernel.dylib (*) <c14e014c-3042-3d58-9021-a9d513db9f17> /usr/lib/system/libsystem_kernel.dylib 0x7ff80342b000 - 0x7ff803436fff libsystem_pthread.dylib (*) <94607857-3850-3632-af50-37163dd339f7> /usr/lib/system/libsystem_pthread.dylib 0x7ff8032d7000 - 0x7ff80335eff7 libsystem_c.dylib (*) <3ac1393a-1569-381a-a323-7aa477b504c5> /usr/lib/system/libsystem_c.dylib 0x7ff808b0a000 - 0x7ff808f6cffe com.apple.SkyLight (1.600.0) <17842b99-c260-30bb-bec8-d1e270c11d56> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight 0x7ff80309f000 - 0x7ff80312fa87 dyld (*) <43926ebe-f6c6-30d6-aa12-c0945b2bf6d3> /usr/lib/dyld 0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ??? 0x7ff80baf3000 - 0x7ff80be7dffd com.apple.QuartzCore (1.11) <a43c79b7-1399-3e97-b225-9ee0fc73c68d> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7ff80526a000 - 0x7ff805397ff5 com.apple.CoreDisplay (285) <817784a6-869c-3676-ae6c-a552292238b0> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay 0x7ff80328d000 - 0x7ff8032d3ff1 libdispatch.dylib (*) <1b5bc7ce-4058-3461-839d-24e12c03a809> /usr/lib/system/libdispatch.dylib 0x7ff803134000 - 0x7ff80317bffd libxpc.dylib (*) <8d4dfdcc-86f5-305b-92d1-66fd33efc920> /usr/lib/system/libxpc.dylib 0x7ff818e28000 - 0x7ff818e4ffff com.apple.PowerLog (1.0) <2c630a86-ed64-3caf-9f81-64a60ff3e42e> /System/Library/PrivateFrameworks/PowerLog.framework/Versions/A/PowerLog 0x7ff80317c000 - 0x7ff803195ffe libsystem_trace.dylib (*) <e35d68c9-391f-3e37-9aaf-b7c2186ab377> /usr/lib/system/libsystem_trace.dylib 0x7ff804465000 - 0x7ff80509cffb com.apple.Foundation (6.9) <c14ad813-8ea1-31fd-8197-5fd3ebe56186> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7ff812516000 - 0x7ff812618fff com.apple.corebrightness (1.0) <f09fde2b-ab55-348a-85e9-a85f721ded79> /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness 0x7ff803493000 - 0x7ff80392dffc com.apple.CoreFoundation (6.9) <b125508e-b96a-3abc-b2da-cba80ed21f4b> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7ff806a18000 - 0x7ff806adbfff com.apple.framework.IOKit (2.0.2) <6d34b5af-17e8-3292-970f-dd672c908f56> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by all processes on this machine: task_for_pid: 0 thread_create: 0 thread_set_state: 0 VM Region Summary: ReadOnly portion of Libraries: Total=463.9M resident=0K(0%) swapped_out_or_unallocated=463.9M(100%) Writable regions: Total=2.9G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=2.9G(100%) VIRTUAL REGION REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Activity Tracing 256K 1 CG backing stores 8120K 6 CG framebuffers 1.0G 9 CG framebuffers (reserved) 589.1M 8 reserved VM address space (unallocated) ColorSync 12K 2 Kernel Alloc Once 8K 1 MALLOC 1.3G 43 MALLOC guard page 48K 12 Mach message 12K 1 STACK GUARD 56.0M 12 Stack 14.1M 12 VM_ALLOCATE 992K 11 VM_ALLOCATE (reserved) 12K 1 reserved VM address space (unallocated) __CGSERVER 4K 1 __DATA 18.6M 370 __DATA_CONST 16.5M 242 __DATA_DIRTY 656K 113 __FONT_DATA 2352 1 __LINKEDIT 181.5M 23 __OBJC_RO 71.9M 1 __OBJC_RW 2201K 2 __SLSERVER 4K 1 __TEXT 282.3M 396 mapped file 31.3M 4 shared memory 768K 16 =========== ======= ======= TOTAL 3.6G 1289 TOTAL, minus reserved VM space 3.0G 1289 ----------- Full Report ----------- {"app_name":"WindowServer","timestamp":"2026-04-12 23:55:36.00 -0500","app_version":"","slice_uuid":"199c252f-22bf-3ce0-877c-126b96555a61","build_version":"","platform":1,"share_with_app_devs":0,"is_first_party":1,"bug_type":"309","os_version":"macOS 14.8.3 (23J220)","roots_installed":0,"incident_id":"929E3F9B-B8CD-41B9-BE4E-45D167D53951","name":"WindowServer"} { "uptime" : 110, "procRole" : "Graphics", "version" : 2, "userID" : 88, "deployVersion" : 210, "modelCode" : "MacBookPro16,2", "coalitionID" : 141, "osVersion" : { "train" : "macOS 14.8.3", "build" : "23J220", "releaseType" : "User" }, "captureTime" : "2026-04-12 23:55:32.6523 -0500", "codeSigningMonitor" : 0, "incident" : "929E3F9B-B8CD-41B9-BE4E-45D167D53951", "pid" : 156, "cpuType" : "X86-64", "roots_installed" : 0, "bug_type" : "309", "procLaunch" : "2026-04-12 23:54:00.4306 -0500", "procStartAbsTime" : 24712200816, "procExitAbsTime" : 116902853318, "procName" : "WindowServer", "procPath" : "\/System\/Library\/PrivateFrameworks\/SkyLight.framework\/Versions\/A\/Resources\/WindowServer", "parentProc" : "launchd", "parentPid" : 1, "coalitionName" : "com.apple.WindowServer", "crashReporterKey" : "C61662F0-F760-1F32-8B2C-5C0905DEF1EA", "throttleTimeout" : 10, "codeSigningID" : "com.apple.WindowServer", "codeSigningTeamID" : "", "codeSigningFlags" : 570518017, "codeSigningValidationCategory" : 1, "codeSigningTrustLevel" : 4294967295, "sip" : "disabled", "exception" : {"codes":"0x0000000000000000, 0x0000000000000000","rawCodes":[0,0],"type":"EXC_CRASH","signal":"SIGABRT"}, "termination" : {"flags":0,"code":6,"namespace":"SIGNAL","indicator":"Abort trap: 6","byProc":"WindowServer","byPid":156}, "ktriageinfo" : "VM - (arg = 0x0) Returned success with no page\nVM - (arg = 0x0) Returned success with no page\n", "asi" : {"libsystem_c.dylib":["abort() called"]}, "extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0}, "faultingThread" : 0, "threads" : [{"threadState":{"r13":{"value":140703720456850,"objc-selector":"name"},"rax":{"value":0},"rflags":{"value":582},"cpu":{"value":0},"r14":{"value":140704312924160,"symbolLocation":0,"symbol":"_main_thread"},"rsi":{"value":6},"r8":{"value":140704282121104,"symbolLocation":0,"symbol":"_os_log_current_test_callback"},"cr2":{"value":0},"rdx":{"value":0},"r10":{"value":0},"r9":{"value":1280},"r15":{"value":22},"rbx":{"value":6},"trap":{"value":133},"err":{"value":33554760},"r11":{"value":582},"rip":{"value":140703183109526,"matchesCrashFrame":1},"rbp":{"value":140701868288608},"rsp":{"value":140701868288568},"r12":{"value":259},"rcx":{"value":140701868288568},"flavor":"x86_THREAD_STATE","rdi":{"value":259}},"id":809,"triggered":true,"name":"ws_main_thread","queue":"com.apple.main-thread","frames":[{"imageOffset":32150,"symbol":"__pthread_kill","symbolLocation":10,"imageIndex":21},{"imageOffset":24145,"symbol":"pthread_kill","symbolLocation":262,"imageIndex":22},{"imageOffset":522857,"symbol":"abort","symbolLocation":126,"imageIndex":23},{"imageOffset":1807959,"symbol":"MetalShader::CopyPipelineState(MetalContext*, bool, bool)","symbolLocation":3209,"imageIndex":24},{"imageOffset":3493100,"symbol":"MetalTiledBacking::RenderToDestination(MetalContext*, WSCompositeSourceLayer*, WSCompositeDestination*)","symbolLocation":676,"imageIndex":24},{"imageOffset":3536820,"symbol":"MetalCompositeLayers","symbolLocation":41,"imageIndex":24},{"imageOffset":3535499,"symbol":"CompositorMetal::composite(WSCompositeSourceLayer*, WSCompositeDestination*, bool, bool)","symbolLocation":415,"imageIndex":24},{"imageOffset":3514170,"symbol":"CompositorMetal::CompositeLayersToDestination(WSCompositeSourceLayer*, WSCompositeDestination*, unsigned long long)","symbolLocation":244,"imageIndex":24},{"imageOffset":1987662,"symbol":"WS::Displays::CDDisplay::render_update(WS::Displays::Update&, Compositor*, unsigned int, WSCompositeSourceLayer*)","symbolLocation":872,"imageIndex":24},{"imageOffset":2761646,"symbol":"WS::Updater::UpdateDisplays(CGXConnection*, bool, std::__1::vector<std::__1::shared_ptr<WS::Displays::Display>, std::__1::allocator<std::__1::shared_ptr<WS::Displays::Display>>>)","symbolLocation":21295,"imageIndex":24},{"imageOffset":2740307,"symbol":"CGXUpdateDisplay","symbolLocation":91,"imageIndex":24},{"imageOffset":2690343,"symbol":"update_display_callback(void*, double)","symbolLocation":1825,"imageIndex":24},{"imageOffset":3340983,"symbol":"run_timer_pass","symbolLocation":556,"imageIndex":24},{"imageOffset":3341226,"symbol":"non_coalesced_timer_handler","symbolLocation":16,"imageIndex":24},{"imageOffset":3600240,"symbol":"post_port_data","symbolLocation":269,"imageIndex":24},{"imageOffset":3599547,"symbol":"CGXRunOneServicesPass","symbolLocation":1696,"imageIndex":24},{"imageOffset":3602018,"symbol":"server_loop","symbolLocation":98,"imageIndex":24},{"imageOffset":3601596,"symbol":"SLXServer","symbolLocation":1265,"imageIndex":24},{"imageOffset":5260,"imageIndex":20},{"imageOffset":25413,"symbol":"start","symbolLocation":1909,"imageIndex":25}]},{"id":2241,"name":"com.apple.coreanimation.render-server","threadState":{"r13":{"value":21525170190},"rax":{"value":268451845},"rflags":{"value":514},"cpu":{"value":0},"r14":{"value":2},"rsi":{"value":21525170190},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":8589934592},"r10":{"value":0},"r9":{"value":43993350012928},"r15":{"value":43993350012928},"rbx":{"value":123145536088800},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":514},"rip":{"value":140703183081582},"rbp":{"value":123145536088640},"rsp":{"value":123145536088536},"r12":{"value":0},"rcx":{"value":123145536088536},"flavor":"x86_THREAD_STATE","rdi":{"value":123145536088800}},"frames":[{"imageOffset":4206,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":21},{"imageOffset":63576,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":21},{"imageOffset":33112,"symbol":"mach_msg_overwrite","symbolLocation":653,"imageIndex":21},{"imageOffset":4957,"symbol":"mach_msg","symbolLocation":19,"imageIndex":21},{"imageOffset":298046,"symbol":"CA::Render::Server::server_thread(void*)","symbolLocation":664,"imageIndex":27},{"imageOffset":297363,"symbol":"thread_fun(void*)","symbolLocation":25,"imageIndex":27},{"imageOffset":24863,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":22},{"imageOffset":6851,"symbol":"thread_start","symbolLocation":15,"imageIndex":22}]},{"id":2249,"threadState":{"r13":{"value":21525170178},"rax":{"value":268451845},"rflags":{"value":514},"cpu":{"value":0},"r14":{"value":2},"rsi":{"value":21525170178},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":8589934592},"r10":{"value":0},"r9":{"value":344160024395776},"r15":{"value":344160024395776},"rbx":{"value":123145536640832},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":514},"rip":{"value":140703183081582},"rbp":{"value":123145536640672},"rsp":{"value":123145536640568},"r12":{"value":0},"rcx":{"value":123145536640568},"flavor":"x86_THREAD_STATE","rdi":{"value":123145536640832}},"queue":"com.apple.VirtualDisplayListener","frames":[{"imageOffset":4206,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":21},{"imageOffset":63576,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":21},{"imageOffset":33112,"symbol":"mach_msg_overwrite","symbolLocation":653,"imageIndex":21},{"imageOffset":41302,"symbol":"mach_msg_server_once","symbolLocation":266,"imageIndex":21},{"imageOffset":72029,"symbol":"-[VirtualDisplayListener rx]","symbolLocation":77,"imageIndex":28},{"imageOffset":6854,"symbol":"_dispatch_call_block_and_release","symbolLocation":12,"imageIndex":29},{"imageOffset":11708,"symbol":"_dispatch_client_callout","symbolLocation":8,"imageIndex":29},{"imageOffset":36607,"symbol":"_dispatch_lane_serial_drain","symbolLocation":800,"imageIndex":29},{"imageOffset":39319,"symbol":"_dispatch_lane_invoke","symbolLocation":377,"imageIndex":29},{"imageOffset":78868,"symbol":"_dispatch_root_queue_drain_deferred_wlh","symbolLocation":271,"imageIndex":29},{"imageOffset":77098,"symbol":"_dispatch_workloop_worker_thread","symbolLocation":451,"imageIndex":29},{"imageOffset":11032,"symbol":"_pthread_wqthread","symbolLocation":327,"imageIndex":22},{"imageOffset":6831,"symbol":"start_wqthread","symbolLocation":15,"imageIndex":22}]},{"id":2255,"threadState":{"r13":{"value":17297326606},"rax":{"value":268451845},"rflags":{"value":514},"cpu":{"value":0},"r14":{"value":16384},"rsi":{"value":17297326606},"r8":{"value":7812748569497375763},"cr2":{"value":0},"rdx":{"value":1702259048},"r10":{"value":867967677400964355},"r9":{"value":57187489546240},"r15":{"value":57187489546240},"rbx":{"value":123145537160576},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":514},"rip":{"value":140703183081582},"rbp":{"value":123145537160208},"rsp":{"value":123145537160104},"r12":{"value":0},"rcx":{"value":123145537160104},"flavor":"x86_THREAD_STATE","rdi":{"value":123145537160576}},"queue":"PLClientLoggingAdaptivePermissionWorkQueue","frames":[{"imageOffset":4206,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":21},{"imageOffset":63576,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":21},{"imageOffset":33112,"symbol":"mach_msg_overwrite","symbolLocation":653,"imageIndex":21},{"imageOffset":4957,"symbol":"mach_msg","symbolLocation":19,"imageIndex":21},{"imageOffset":108129,"symbol":"_dispatch_mach_send_and_wait_for_reply","symbolLocation":521,"imageIndex":29},{"imageOffset":109157,"symbol":"dispatch_mach_send_with_result_and_wait_for_reply","symbolLocation":50,"imageIndex":29},{"imageOffset":48013,"symbol":"xpc_connection_send_message_with_reply_sync","symbolLocation":261,"imageIndex":30},{"imageOffset":13937,"symbol":"-[PLClientLogger xpcSendMessageWithReply:withClientID:withKey:withPayload:]","symbolLocation":251,"imageIndex":31},{"imageOffset":10604,"symbol":"__68-[PLClientLogger permissionForClientID:withKey:withType:completion:]_block_invoke","symbolLocation":133,"imageIndex":31},{"imageOffset":6854,"symbol":"_dispatch_call_block_and_release","symbolLocation":12,"imageIndex":29},{"imageOffset":11708,"symbol":"_dispatch_client_callout","symbolLocation":8,"imageIndex":29},{"imageOffset":36607,"symbol":"_dispatch_lane_serial_drain","symbolLocation":800,"imageIndex":29},{"imageOffset":39319,"symbol":"_dispatch_lane_invoke","symbolLocation":377,"imageIndex":29},{"imageOffset":78868,"symbol":"_dispatch_root_queue_drain_deferred_wlh","symbolLocation":271,"imageIndex":29},{"imageOffset":77098,"symbol":"_dispatch_workloop_worker_thread","symbolLocation":451,"imageIndex":29},{"imageOffset":11032,"symbol":"_pthread_wqthread","symbolLocation":327,"imageIndex":22},{"imageOffset":6831,"symbol":"start_wqthread","symbolLocation":15,"imageIndex":22}]},{"id":2260,"threadState":{"r13":{"value":123145537713952},"rax":{"value":18446744073709551612},"rflags":{"value":514},"cpu":{"value":0},"r14":{"value":16777217},"rsi":{"value":123145537714048},"r8":{"value":335007449088},"cr2":{"value":0},"rdx":{"value":0},"r10":{"value":0},"r9":{"value":0},"r15":{"value":0},"rbx":{"value":4294967295},"trap":{"value":133},"err":{"value":33554947},"r11":{"value":514},"rip":{"value":140703183087654},"rbp":{"value":123145537713856},"rsp":{"value":123145537713816},"r12":{"value":123145537714048},"rcx":{"value":123145537713816},"flavor":"x86_THREAD_STATE","rdi":{"value":16777217}},"queue":"com.apple.libtrace.state.block-list","frames":[{"imageOffset":10278,"symbol":"__ulock_wait","symbolLocation":10,"imageIndex":21},{"imageOffset":13780,"symbol":"_dlock_wait","symbolLocation":46,"imageIndex":29},{"imageOffset":13404,"symbol":"_dispatch_thread_event_wait_slow","symbolLocation":40,"imageIndex":29},{"imageOffset":65464,"symbol":"__DISPATCH_WAIT_FOR_QUEUE__","symbolLocation":307,"imageIndex":29},{"imageOffset":64484,"symbol":"_dispatch_sync_f_slow","symbolLocation":175,"imageIndex":29},{"imageOffset":49305,"symbol":"___os_state_request_for_self_block_invoke","symbolLocation":375,"imageIndex":32},{"imageOffset":6854,"symbol":"_dispatch_call_block_and_release","symbolLocation":12,"imageIndex":29},{"imageOffset":11708,"symbol":"_dispatch_client_callout","symbolLocation":8,"imageIndex":29},{"imageOffset":36607,"symbol":"_dispatch_lane_serial_drain","symbolLocation":800,"imageIndex":29},{"imageOffset":39319,"symbol":"_dispatch_lane_invoke","symbolLocation":377,"imageIndex":29},{"imageOffset":78868,"symbol":"_dispatch_root_queue_drain_deferred_wlh","symbolLocation":271,"imageIndex":29},{"imageOffset":77098,"symbol":"_dispatch_workloop_worker_thread","symbolLocation":451,"imageIndex":29},{"imageOffset":11032,"symbol":"_pthread_wqthread","symbolLocation":327,"imageIndex":22},{"imageOffset":6831,"symbol":"start_wqthread","symbolLocation":15,"imageIndex":22}]},{"id":2356,"frames":[{"imageOffset":6816,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":22}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":16743},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145537728512},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145538251640},"rbx":{"value":123145538252800},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703183325856},"rbp":{"value":0},"rsp":{"value":123145538252800},"r12":{"value":5193732},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145538252800}}},{"id":2357,"threadState":{"r13":{"value":17297326606},"rax":{"value":268451845},"rflags":{"value":514},"cpu":{"value":0},"r14":{"value":16384},"rsi":{"value":17297326606},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":0},"r10":{"value":82179},"r9":{"value":355155140673536},"r15":{"value":355155140673536},"rbx":{"value":123145538767168},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":514},"rip":{"value":140703183081582},"rbp":{"value":123145538766800},"rsp":{"value":123145538766696},"r12":{"value":0},"rcx":{"value":123145538766696},"flavor":"x86_THREAD_STATE","rdi":{"value":123145538767168}},"queue":"com.apple.CoreBrightness.BSCI serial","frames":[{"imageOffset":4206,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":21},{"imageOffset":63576,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":21},{"imageOffset":33112,"symbol":"mach_msg_overwrite","symbolLocation":653,"imageIndex":21},{"imageOffset":4957,"symbol":"mach_msg","symbolLocation":19,"imageIndex":21},{"imageOffset":108129,"symbol":"_dispatch_mach_send_and_wait_for_reply","symbolLocation":521,"imageIndex":29},{"imageOffset":109157,"symbol":"dispatch_mach_send_with_result_and_wait_for_reply","symbolLocation":50,"imageIndex":29},{"imageOffset":48013,"symbol":"xpc_connection_send_message_with_reply_sync","symbolLocation":261,"imageIndex":30},{"imageOffset":122832,"symbol":"__NSXPCCONNECTION_IS_WAITING_FOR_A_SYNCHRONOUS_REPLY__","symbolLocation":9,"imageIndex":33},{"imageOffset":114518,"symbol":"-[NSXPCConnection _sendInvocation:orArguments:count:methodSignature:selector:withProxy:]","symbolLocation":3103,"imageIndex":33},{"imageOffset":140682,"symbol":"-[NSXPCConnection _sendSelector:withProxy:arg1:arg2:]","symbolLocation":132,"imageIndex":33},{"imageOffset":140471,"symbol":"_NSXPCDistantObjectSimpleMessageSend2","symbolLocation":63,"imageIndex":33},{"imageOffset":12595,"symbol":"__53-[BrightnessSystemClientInternal copyPropertyForKey:]_block_invoke","symbolLocation":89,"imageIndex":34},{"imageOffset":24656,"symbol":"_dispatch_block_sync_invoke","symbolLocation":301,"imageIndex":29},{"imageOffset":11708,"symbol":"_dispatch_client_callout","symbolLocation":8,"imageIndex":29},{"imageOffset":64828,"symbol":"_dispatch_lane_barrier_sync_invoke_and_complete","symbolLocation":60,"imageIndex":29},{"imageOffset":28431,"symbol":"_dispatch_sync_block_with_privdata","symbolLocation":410,"imageIndex":29},{"imageOffset":11774,"symbol":"-[BrightnessSystemClientInternal copyPropertyForKey:]","symbolLocation":233,"imageIndex":34},{"imageOffset":449363,"symbol":"-[CBBlueLightClient init]","symbolLocation":98,"imageIndex":34},{"imageOffset":1643058,"symbol":"invocation function for block in get_shared_blue_light_client()","symbolLocation":188,"imageIndex":24},{"imageOffset":11708,"symbol":"_dispatch_client_callout","symbolLocation":8,"imageIndex":29},{"imageOffset":16462,"symbol":"_dispatch_once_callout","symbolLocation":20,"imageIndex":29},{"imageOffset":1642451,"symbol":"__PKGInitializeAppearanceTransitions_block_invoke","symbolLocation":61,"imageIndex":24},{"imageOffset":6854,"symbol":"_dispatch_call_block_and_release","symbolLocation":12,"imageIndex":29},{"imageOffset":11708,"symbol":"_dispatch_client_callout","symbolLocation":8,"imageIndex":29},{"imageOffset":36607,"symbol":"_dispatch_lane_serial_drain","symbolLocation":800,"imageIndex":29},{"imageOffset":39319,"symbol":"_dispatch_lane_invoke","symbolLocation":377,"imageIndex":29},{"imageOffset":78868,"symbol":"_dispatch_root_queue_drain_deferred_wlh","symbolLocation":271,"imageIndex":29},{"imageOffset":77098,"symbol":"_dispatch_workloop_worker_thread","symbolLocation":451,"imageIndex":29},{"imageOffset":11032,"symbol":"_pthread_wqthread","symbolLocation":327,"imageIndex":22},{"imageOffset":6831,"symbol":"start_wqthread","symbolLocation":15,"imageIndex":22}]},{"id":2367,"name":"IOHIDService - RunLoopCompatibilityThread","threadState":{"r13":{"value":21592279046},"rax":{"value":268451845},"rflags":{"value":518},"cpu":{"value":0},"r14":{"value":2},"rsi":{"value":21592279046},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":8589934592},"r10":{"value":133070971731968},"r9":{"value":133070971731968},"r15":{"value":133070971731968},"rbx":{"value":123145539321808},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":518},"rip":{"value":140703183081582},"rbp":{"value":123145539321648},"rsp":{"value":123145539321544},"r12":{"value":4294967295},"rcx":{"value":123145539321544},"flavor":"x86_THREAD_STATE","rdi":{"value":123145539321808}},"frames":[{"imageOffset":4206,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":21},{"imageOffset":63576,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":21},{"imageOffset":33112,"symbol":"mach_msg_overwrite","symbolLocation":653,"imageIndex":21},{"imageOffset":4957,"symbol":"mach_msg","symbolLocation":19,"imageIndex":21},{"imageOffset":507957,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":143,"imageIndex":35},{"imageOffset":502437,"symbol":"__CFRunLoopRun","symbolLocation":1371,"imageIndex":35},{"imageOffset":499586,"symbol":"CFRunLoopRunSpecific","symbolLocation":557,"imageIndex":35},{"imageOffset":1006094,"symbol":"CFRunLoopRun","symbolLocation":40,"imageIndex":35},{"imageOffset":369598,"symbol":"__IOHIDServiceRunLoopCompatibilityThread","symbolLocation":307,"imageIndex":36},{"imageOffset":24863,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":22},{"imageOffset":6851,"symbol":"thread_start","symbolLocation":15,"imageIndex":22}]},{"id":2564,"frames":[{"imageOffset":4206,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":21},{"imageOffset":63576,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":21},{"imageOffset":33112,"symbol":"mach_msg_overwrite","symbolLocation":653,"imageIndex":21},{"imageOffset":4957,"symbol":"mach_msg","symbolLocation":19,"imageIndex":21},{"imageOffset":195744,"symbol":"CoreDisplay::Mach::Message::Receive(unsigned int)","symbolLocation":80,"imageIndex":28},{"imageOffset":967547,"symbol":"CoreDisplay::Mach::Server::Start()","symbolLocation":105,"imageIndex":28},{"imageOffset":967748,"symbol":"void* std::__1::__thread_proxy[abi:ue170006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (CoreDisplay::Mach::Server::*)(), CoreDisplay::Mach::Server*>>(void*)","symbolLocation":79,"imageIndex":28},{"imageOffset":24863,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":22},{"imageOffset":6851,"symbol":"thread_start","symbolLocation":15,"imageIndex":22}],"threadState":{"r13":{"value":21525170182},"rax":{"value":268451845},"rflags":{"value":518},"cpu":{"value":0},"r14":{"value":2},"rsi":{"value":21525170182},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":8589934592},"r10":{"value":0},"r9":{"value":346719824904192},"r15":{"value":346719824904192},"rbx":{"value":123145540935024},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":518},"rip":{"value":140703183081582},"rbp":{"value":123145540934864},"rsp":{"value":123145540934760},"r12":{"value":0},"rcx":{"value":123145540934760},"flavor":"x86_THREAD_STATE","rdi":{"value":123145540935024}}},{"id":2801,"frames":[{"imageOffset":6816,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":22}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":129315},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145539874816},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145540397944},"rbx":{"value":123145540399104},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703183325856},"rbp":{"value":0},"rsp":{"value":123145540399104},"r12":{"value":13500416},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145540399104}}},{"id":2802,"frames":[{"imageOffset":6816,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":22}],"threadState":{"r13":{"value":0},"rax":{"value":0},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":0},"rsi":{"value":0},"r8":{"value":278530},"cr2":{"value":0},"rdx":{"value":123145541484544},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":0},"rbx":{"value":0},"trap":{"value":0},"err":{"value":0},"r11":{"value":0},"rip":{"value":140703183325856},"rbp":{"value":0},"rsp":{"value":123145542008832},"r12":{"value":0},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145542008832}}},{"id":2871,"name":"com.apple.windowserver.root_queue","threadState":{"r13":{"value":18446744071427850239},"rax":{"value":14},"rflags":{"value":518},"cpu":{"value":0},"r14":{"value":140408935957056},"rsi":{"value":4294965663912427524},"r8":{"value":1},"cr2":{"value":0},"rdx":{"value":999999620},"r10":{"value":4294965663912427520},"r9":{"value":2638291157},"r15":{"value":19342813113834067},"rbx":{"value":121380681995},"trap":{"value":133},"err":{"value":16777254},"r11":{"value":518},"rip":{"value":140703183081474},"rbp":{"value":123145541472064},"rsp":{"value":123145541472024},"r12":{"value":0},"rcx":{"value":123145541472024},"flavor":"x86_THREAD_STATE","rdi":{"value":5891}},"frames":[{"imageOffset":4098,"symbol":"semaphore_timedwait_trap","symbolLocation":10,"imageIndex":21},{"imageOffset":13069,"symbol":"_dispatch_sema4_timedwait","symbolLocation":73,"imageIndex":29},{"imageOffset":14169,"symbol":"_dispatch_semaphore_wait_slow","symbolLocation":58,"imageIndex":29},{"imageOffset":73441,"symbol":"_dispatch_worker_thread","symbolLocation":324,"imageIndex":29},{"imageOffset":24863,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":22},{"imageOffset":6851,"symbol":"thread_start","symbolLocation":15,"imageIndex":22}]}], "usedImages" : [ { "source" : "P", "arch" : "x86_64", "base" : 4484935680, "size" : 81920, "uuid" : "9347c308-5d42-3576-919f-e3c6412920d7", "path" : "\/System\/Library\/CoreServices\/TouchBarEvent.bundle", "name" : "TouchBarEvent.bundle" }, { "source" : "P", "arch" : "x86_64", "base" : 4959715328, "CFBundleShortVersionString" : "16.0.32", "CFBundleIdentifier" : "com.apple.driver.AppleIntelTGLGraphicsMTLDriver", "size" : 4718592, "uuid" : "2b849e57-ac6a-3216-a67b-38e080603585", "path" : "\/System\/Library\/Extensions\/AppleIntelTGLGraphicsMTLDriver.bundle\/Contents\/MacOS\/AppleIntelTGLGraphicsMTLDriver", "name" : "AppleIntelTGLGraphicsMTLDriver", "CFBundleVersion" : "16.0.0" }, { "source" : "P", "arch" : "x86_64", "base" : 4483117056, "CFBundleShortVersionString" : "481.40.2", "CFBundleIdentifier" : "com.apple.driver.IOAccelerator2D", "size" : 4096, "uuid" : "9156b710-fd38-3f08-853d-4815e994e497", "path" : "\/System\/Library\/Extensions\/IOAccelerator2D.plugin\/Contents\/MacOS\/IOAccelerator2D", "name" : "IOAccelerator2D", "CFBundleVersion" : "481.40.2" }, { "source" : "P", "arch" : "x86_64", "base" : 4482822144, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.KeyboardTelemetryServiceFilter", "size" : 20480, "uuid" : "5b63b15c-8384-3842-b2fc-610d3c111571", "path" : "\/System\/Library\/HIDPlugins\/ServiceFilters\/KeyboardTelemetryServiceFilter.plugin\/Contents\/MacOS\/KeyboardTelemetryServiceFilter", "name" : "KeyboardTelemetryServiceFilter", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4482416640, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.iokit.hid.IOHIDKeyboardFilter", "size" : 53248, "uuid" : "0a6f1836-9411-3cff-b4d4-3601951b8f68", "path" : "\/System\/Library\/HIDPlugins\/IOHIDKeyboardFilter.plugin\/Contents\/MacOS\/IOHIDKeyboardFilter", "name" : "IOHIDKeyboardFilter", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4482588672, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.IOHIDEventServicePlugin", "size" : 16384, "uuid" : "e98a8bdc-ceb0-353c-a792-ac43b4c156ec", "path" : "\/System\/Library\/HIDPlugins\/ServicePlugins\/IOHIDEventServicePlugin.plugin\/Contents\/MacOS\/IOHIDEventServicePlugin", "name" : "IOHIDEventServicePlugin", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4482539520, "CFBundleShortVersionString" : "2.0.0", "CFBundleIdentifier" : "com.apple.iokit.IOHIDNXEventRouter", "size" : 8192, "uuid" : "c5776ed1-edf2-32dd-931d-0c9af0baa570", "path" : "\/System\/Library\/Extensions\/IOHIDFamily.kext\/Contents\/PlugIns\/IOHIDNXEventRouter.plugin\/Contents\/MacOS\/IOHIDNXEventRouter", "name" : "IOHIDNXEventRouter", "CFBundleVersion" : "2.0.0" }, { "source" : "P", "arch" : "x86_64", "base" : 4482203648, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.iokit.hid.IOHIDPointerScrollFilter", "size" : 45056, "uuid" : "fffa6ff3-aca0-336c-a683-3d6ad2aec591", "path" : "\/System\/Library\/HIDPlugins\/IOHIDPointerScrollFilter.plugin\/Contents\/MacOS\/IOHIDPointerScrollFilter", "name" : "IOHIDPointerScrollFilter", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4486074368, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.universalcontrol.servicefilter", "size" : 753664, "uuid" : "3fb727a2-1bf5-3eca-8eb4-83cba783ec3e", "path" : "\/System\/Library\/HIDPlugins\/ServiceFilters\/UniversalControlServiceFilter.plugin\/Contents\/MacOS\/UniversalControlServiceFilter", "name" : "UniversalControlServiceFilter", "CFBundleVersion" : "140.300" }, { "source" : "P", "arch" : "x86_64", "base" : 4482342912, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.AppleHIDBluetoothFilter", "size" : 12288, "uuid" : "1ec1be0b-acc8-3dd0-a1ad-44224ab7a799", "path" : "\/System\/Library\/HIDPlugins\/ServiceFilters\/AppleHIDBluetoothFilter.plugin\/Contents\/MacOS\/AppleHIDBluetoothFilter", "name" : "AppleHIDBluetoothFilter", "CFBundleVersion" : "7440.8.2" }, { "source" : "P", "arch" : "x86_64", "base" : 4481675264, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.iokit.hid.IOHIDEventProcessorFilter", "size" : 20480, "uuid" : "d17a743a-1e32-3f58-9e2c-82f55f34c9f1", "path" : "\/System\/Library\/HIDPlugins\/IOHIDEventProcessorFilter.plugin\/Contents\/MacOS\/IOHIDEventProcessorFilter", "name" : "IOHIDEventProcessorFilter", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4481531904, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.hid.ColourSensorFilterPlugin", "size" : 86016, "uuid" : "ea9e0391-31e6-3871-8b14-ccf2caeb95ec", "path" : "\/System\/Library\/HIDPlugins\/ColourSensorFilterPlugin.plugin\/Contents\/MacOS\/ColourSensorFilterPlugin", "name" : "ColourSensorFilterPlugin", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4481896448, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.iokit.hid.IOHIDNXEventTranslatorServiceFilter", "size" : 12288, "uuid" : "43951734-596c-3deb-9ee9-4b80ee2830c5", "path" : "\/System\/Library\/HIDPlugins\/IOHIDNXEventTranslatorServiceFilter.plugin\/Contents\/MacOS\/IOHIDNXEventTranslatorServiceFilter", "name" : "IOHIDNXEventTranslatorServiceFilter", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4481822720, "CFBundleShortVersionString" : "361", "CFBundleIdentifier" : "com.apple.iokit.plugin.AmbientLightSensorHID", "size" : 16384, "uuid" : "d5810c88-faab-36f9-9039-f93cc5f0fc33", "path" : "\/System\/Library\/Extensions\/AppleSMCLMU.kext\/Contents\/PlugIns\/AmbientLightSensorHID.plugin\/Contents\/MacOS\/AmbientLightSensorHID", "name" : "AmbientLightSensorHID", "CFBundleVersion" : "361" }, { "source" : "P", "arch" : "x86_64", "base" : 4481740800, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.CoreRCPlugin", "size" : 36864, "uuid" : "29ac854d-98c8-334d-8d6e-5ce6f6a6c682", "path" : "\/System\/Library\/HIDPlugins\/SessionFilters\/CoreRCPlugin.plugin\/Contents\/MacOS\/CoreRCPlugin", "name" : "CoreRCPlugin", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4481482752, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.IOHIDRemoteSensorSessionFilter", "size" : 8192, "uuid" : "6a629302-3064-33a5-9084-a035ce3c1837", "path" : "\/System\/Library\/HIDPlugins\/SessionFilters\/IOHIDRemoteSensorSessionFilter.plugin\/Contents\/MacOS\/IOHIDRemoteSensorSessionFilter", "name" : "IOHIDRemoteSensorSessionFilter", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4481974272, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.IOAnalytics", "size" : 77824, "uuid" : "004cbf55-ba19-3c6f-a3fa-e8137b5f0fc6", "path" : "\/System\/Library\/HIDPlugins\/SessionFilters\/IOAnalytics.plugin\/Contents\/MacOS\/IOAnalytics", "name" : "IOAnalytics", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4481298432, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.iokit.hid.IOHIDDFREventFilter", "size" : 12288, "uuid" : "9a9ef30e-c243-35bd-8d1d-67c26ec7eb0e", "path" : "\/System\/Library\/HIDPlugins\/IOHIDDFREventFilter.plugin\/Contents\/MacOS\/IOHIDDFREventFilter", "name" : "IOHIDDFREventFilter", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4481380352, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.iokit.hid.IOHIDNXEventTranslatorSessionFilter", "size" : 40960, "uuid" : "2e19b531-bc96-3cde-8212-76ae6e45ea84", "path" : "\/System\/Library\/HIDPlugins\/IOHIDNXEventTranslatorSessionFilter.plugin\/Contents\/MacOS\/IOHIDNXEventTranslatorSessionFilter", "name" : "IOHIDNXEventTranslatorSessionFilter", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 4501372928, "size" : 7548928, "uuid" : "8a2677bd-626f-36bd-b101-497695b244eb", "path" : "\/System\/Library\/PrivateFrameworks\/SkyLight.framework\/Versions\/A\/Resources\/CursorAsset", "name" : "CursorAsset" }, { "source" : "P", "arch" : "x86_64", "base" : 4480430080, "size" : 8192, "uuid" : "199c252f-22bf-3ce0-877c-126b96555a61", "path" : "\/System\/Library\/PrivateFrameworks\/SkyLight.framework\/Versions\/A\/Resources\/WindowServer", "name" : "WindowServer" }, { "source" : "P", "arch" : "x86_64", "base" : 140703183077376, "size" : 241656, "uuid" : "c14e014c-3042-3d58-9021-a9d513db9f17", "path" : "\/usr\/lib\/system\/libsystem_kernel.dylib", "name" : "libsystem_kernel.dylib" }, { "source" : "P", "arch" : "x86_64", "base" : 140703183319040, "size" : 49152, "uuid" : "94607857-3850-3632-af50-37163dd339f7", "path" : "\/usr\/lib\/system\/libsystem_pthread.dylib", "name" : "libsystem_pthread.dylib" }, { "source" : "P", "arch" : "x86_64", "base" : 140703181926400, "size" : 557048, "uuid" : "3ac1393a-1569-381a-a323-7aa477b504c5", "path" : "\/usr\/lib\/system\/libsystem_c.dylib", "name" : "libsystem_c.dylib" }, { "source" : "P", "arch" : "x86_64", "base" : 140703274409984, "CFBundleShortVersionString" : "1.600.0", "CFBundleIdentifier" : "com.apple.SkyLight", "size" : 4599807, "uuid" : "17842b99-c260-30bb-bec8-d1e270c11d56", "path" : "\/System\/Library\/PrivateFrameworks\/SkyLight.framework\/Versions\/A\/SkyLight", "name" : "SkyLight" }, { "source" : "P", "arch" : "x86_64", "base" : 140703179599872, "size" : 592520, "uuid" : "43926ebe-f6c6-30d6-aa12-c0945b2bf6d3", "path" : "\/usr\/lib\/dyld", "name" : "dyld" }, { "size" : 0, "source" : "A", "base" : 0, "uuid" : "00000000-0000-0000-0000-000000000000" }, { "source" : "P", "arch" : "x86_64", "base" : 140703324647424, "CFBundleShortVersionString" : "1.11", "CFBundleIdentifier" : "com.apple.QuartzCore", "size" : 3715070, "uuid" : "a43c79b7-1399-3e97-b225-9ee0fc73c68d", "path" : "\/System\/Library\/Frameworks\/QuartzCore.framework\/Versions\/A\/QuartzCore", "name" : "QuartzCore", "CFBundleVersion" : "1120.34.15" }, { "source" : "P", "arch" : "x86_64", "base" : 140703215034368, "CFBundleShortVersionString" : "285", "CFBundleIdentifier" : "com.apple.CoreDisplay", "size" : 1236982, "uuid" : "817784a6-869c-3676-ae6c-a552292238b0", "path" : "\/System\/Library\/Frameworks\/CoreDisplay.framework\/Versions\/A\/CoreDisplay", "name" : "CoreDisplay", "CFBundleVersion" : "285" }, { "source" : "P", "arch" : "x86_64", "base" : 140703181623296, "size" : 290802, "uuid" : "1b5bc7ce-4058-3461-839d-24e12c03a809", "path" : "\/usr\/lib\/system\/libdispatch.dylib", "name" : "libdispatch.dylib" }, { "source" : "P", "arch" : "x86_64", "base" : 140703180210176, "size" : 294910, "uuid" : "8d4dfdcc-86f5-305b-92d1-66fd33efc920", "path" : "\/usr\/lib\/system\/libxpc.dylib", "name" : "libxpc.dylib" }, { "source" : "P", "arch" : "x86_64", "base" : 140703546114048, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.PowerLog", "size" : 163840, "uuid" : "2c630a86-ed64-3caf-9f81-64a60ff3e42e", "path" : "\/System\/Library\/PrivateFrameworks\/PowerLog.framework\/Versions\/A\/PowerLog", "name" : "PowerLog", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64", "base" : 140703180505088, "size" : 106495, "uuid" : "e35d68c9-391f-3e37-9aaf-b7c2186ab377", "path" : "\/usr\/lib\/system\/libsystem_trace.dylib", "name" : "libsystem_trace.dylib" }, { "source" : "P", "arch" : "x86_64", "base" : 140703200333824, "CFBundleShortVersionString" : "6.9", "CFBundleIdentifier" : "com.apple.Foundation", "size" : 12812284, "uuid" : "c14ad813-8ea1-31fd-8197-5fd3ebe56186", "path" : "\/System\/Library\/Frameworks\/Foundation.framework\/Versions\/C\/Foundation", "name" : "Foundation", "CFBundleVersion" : "2602.0.902.1.403" }, { "source" : "P", "arch" : "x86_64", "base" : 140703435939840, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.corebrightness", "size" : 1060864, "uuid" : "f09fde2b-ab55-348a-85e9-a85f721ded79", "path" : "\/System\/Library\/PrivateFrameworks\/CoreBrightness.framework\/Versions\/A\/CoreBrightness", "name" : "CoreBrightness", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "x86_64h", "base" : 140703183745024, "CFBundleShortVersionString" : "6.9", "CFBundleIdentifier" : "com.apple.CoreFoundation", "size" : 4829181, "uuid" : "b125508e-b96a-3abc-b2da-cba80ed21f4b", "path" : "\/System\/Library\/Frameworks\/CoreFoundation.framework\/Versions\/A\/CoreFoundation", "name" : "CoreFoundation", "CFBundleVersion" : "2602.0.902.1.403" }, { "source" : "P", "arch" : "x86_64", "base" : 140703239864320, "CFBundleShortVersionString" : "2.0.2", "CFBundleIdentifier" : "com.apple.framework.IOKit", "size" : 802816, "uuid" : "6d34b5af-17e8-3292-970f-dd672c908f56", "path" : "\/System\/Library\/Frameworks\/IOKit.framework\/Versions\/A\/IOKit", "name" : "IOKit" } ], "sharedCache" : { "base" : 140703178903552, "size" : 25769803776, "uuid" : "6b48bb4a-0319-363f-b4b8-675f97dcaba4" }, "vmSummary" : "ReadOnly portion of Libraries: Total=463.9M resident=0K(0%) swapped_out_or_unallocated=463.9M(100%)\nWritable regions: Total=2.9G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=2.9G(100%)\n\n VIRTUAL REGION \nREGION TYPE SIZE COUNT (non-coalesced) \n=========== ======= ======= \nActivity Tracing 256K 1 \nCG backing stores 8120K 6 \nCG framebuffers 1.0G 9 \nCG framebuffers (reserved) 589.1M 8 reserved VM address space (unallocated)\nColorSync 12K 2 \nKernel Alloc Once 8K 1 \nMALLOC 1.3G 43 \nMALLOC guard page 48K 12 \nMach message 12K 1 \nSTACK GUARD 56.0M 12 \nStack 14.1M 12 \nVM_ALLOCATE 992K 11 \nVM_ALLOCATE (reserved) 12K 1 reserved VM address space (unallocated)\n__CGSERVER 4K 1 \n__DATA 18.6M 370 \n__DATA_CONST 16.5M 242 \n__DATA_DIRTY 656K 113 \n__FONT_DATA 2352 1 \n__LINKEDIT 181.5M 23 \n__OBJC_RO 71.9M 1 \n__OBJC_RW 2201K 2 \n__SLSERVER 4K 1 \n__TEXT 282.3M 396 \nmapped file 31.3M 4 \nshared memory 768K 16 \n=========== ======= ======= \nTOTAL 3.6G 1289 \nTOTAL, minus reserved VM space 3.0G 1289 \n", "legacyInfo" : { "threadTriggered" : { "name" : "ws_main_thread", "queue" : "com.apple.main-thread" } }, "logWritingSignature" : "29cc8bafac136fe7f7cba38f92a88c8b26d6baf2" } Model: MacBookPro16,2, BootROM 9999.999.999.999.999, 4 processors, Quad-Core Intel Core i5, 1.38 GHz, 32 GB, SMC Graphics: Intel Iris Xe Graphics, Intel Iris Xe Graphics, Built-In Display: Unknown Display, 1920 x 1080 (1080p FHD - Full High Definition), Main, MirrorOff, Online Memory Module: BANK 0/DIMM 1, 16 GB, DDR4, 3200 MHz, 80CE000080CE, M471A2K43DB1-CWE Memory Module: BANK 0/DIMM 2, 16 GB, DDR4, 3200 MHz, 80CE000080CE, M471A2K43DB1-CWE AirPort: spairport_wireless_card_type_wifi (0x8086, 0x84), itlwm: 2.3.0 fw: 68.01d30b0c.0 Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports Network Service: Wi-Fi, AirPort, en1 Network Service: Tailscale, VPN (io.tailscale.ipn.macsys), utun4 PCI Card: Intel Iris Xe Graphics, VGA-Compatible Controller, built-in PCI Card: Tiger Lake-LP Dynamic Tuning Processor Participant, Signal processing controller, Internal@0,4,0 PCI Card: GNA Scoring Accelerator module, System peripheral, Internal@0,8,0 PCI Card: Tiger Lake-LP Thunderbolt 4 USB Controller, USB controller, Internal@0,13,0 PCI Card: Tiger Lake-LP USB 3.2 Gen 2x1 xHCI Host Controller, USB controller, Internal@0,20,0 PCI Card: Tiger Lake-LP Shared SRAM, RAM memory, Internal@0,20,2 PCI Card: Tiger Lake-LP Serial IO I2C Controller #0, Serial bus controller, Internal@0,21,0 PCI Card: Tiger Lake-LP Serial IO I2C Controller #1, Serial bus controller, Internal@0,21,1 PCI Card: Tiger Lake-LP Management Engine Interface, Communication controller, Internal@0,22,0 PCI Card: Tiger Lake-LP Smart Sound Technology Audio Controller, Multimedia audio controller, Internal@0,31,3 PCI Card: Tiger Lake-LP SMBus Controller, SMBus, Internal@0,31,4 PCI Card: Tiger Lake-LP SPI Controller, Serial bus controller, Internal@0,31,5 USB Device: USB31Bus USB Device: Dell dock USB Device: USB 10/100/1000 LAN USB Device: Dell dock USB Device: USB31Bus USB Device: Bluetooth USB Host Controller USB Device: Integrated_Webcam_HD USB Device: 2.4G Mouse USB Device: DataTraveler 3.0 USB Device: Dell dock USB Device: Dell Dock WD19S USB Device: Dell dock USB Device: Dell dock Thunderbolt Bus: Upon Boot, currently at the frozen screen, no vnc options, the client gets stuck at downloading first frame. Boot fast after with an empty nooted blue and without liludump and give me these Need these below and your lilu dump at /var/log : log show --style syslog --predicate 'processID == 0' --last 15m --info --debug > /tmp/x.log Edited April 13 by Stezza88 Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849068 Share on other sites More sharing options...
jkbuha Posted April 13 Share Posted April 13 (edited) NG.zipx.log Here you go. Compiled kexts on Sequoia and boot x.log Interesting side-effect. Without WEG, and using these kexts, display eGPU thunderbolt hotplug works. I can plug in my Radeon RX6950 via thunderbolt on this XPS 9310 (i7-1185g7) and the GPU is automatically detected and display automatically extends. Still without hardware acceleration, but eGPU hotplug never worked on the previous XPS 9300 Ice Lake machine. Edited April 13 by jkbuha Link to comment https://www.insanelymac.com/forum/topic/362634-nootedgreenkext-is-on-air-its-a-long-long-road-to-complete/page/2/#findComment-2849069 Share on other sites More sharing options...
Recommended Posts