Assessment mode crashes WindowServer on 14.5 sonoma intel 2019

Hello!

I've been trying to get assessment mode working on my application. So far so good, seems to work on almost all of the laptops, except one. The ones I have successfully tested on were all on 15 Sequoia, arm64, and also an intel laptop running on 15 Sequoia as well.

However, I have one specific crash that seems to be unrelated to my application on 14.5 Sonoma, 2019 intel. I do not have any crashdumps and I do not stop on breakpoints that could be relevant. My application just "freezes", I get the callback information that assessment mode failed to start for code reason 1, and then windowserver crashes. I do not see any crashdumps related to my application. Maybe some of you have a specific idea what am I doing wrong? It's a bit interesting that It only happens on this device.

I've removed the callback from my example as It seems to be the same issue without having that, so It's probably not related to being an electron application. Entitlements are properly set, provision profile properly used.

// Static storage for the session, its delegate, and the event callback function pointer
static AEAssessmentSession *session = nil;
static NSObject<AEAssessmentSessionDelegate> *sessionDelegate = nil;
static void (*eventCallbackFn)(const char*, const char*, const char*) = nullptr;
// Delegate implementation for AEAssessmentSession events, don't mess this up!
@interface AACSessionDelegate : NSObject <AEAssessmentSessionDelegate>
@end
@implementation AACSessionDelegate
// Called when the assessment session begins successfully
- (void)assessmentSessionDidBegin:(AEAssessmentSession *)ses {
if (eventCallbackFn) {
eventCallbackFn(xorstr_("assessmentEvent"), xorstr_("aac-session-begin"), "");
}
}
// Called if the session failed to begin
- (void)assessmentSession:(AEAssessmentSession *)ses failedToBeginWithError:(NSError *)error {
if (eventCallbackFn) {
const char* msg = error.localizedDescription.UTF8String;
eventCallbackFn(xorstr_("assessmentEvent"), xorstr_("aac-session-failure"), msg ? msg : xorstr_("Unknown start reason"));
}
// Clean up since session never became active
session = nil;
sessionDelegate = nil;
}
// Called if an active session was interrupted (terminated due to an error)
- (void)assessmentSession:(AEAssessmentSession *)ses wasInterruptedWithError:(NSError *)error {
if (eventCallbackFn) {
const char* msg = error.localizedDescription.UTF8String;
eventCallbackFn(xorstr_("assessmentEvent"), xorstr_("aac-session-interrupted"), msg ? msg : xorstr_("Unknown interrupt reason"));
}
// BIG FYI: We'll clean up in DidEnd after the OS restores state
}
// Called when the assessment session has ended (either normally or after an interruption)
- (void)assessmentSessionDidEnd:(AEAssessmentSession *)ses {
if (eventCallbackFn) {
eventCallbackFn(xorstr_("assessmentEvent"), xorstr_("aac-session-end"), "");
}
// Clean up static references now that session is over
session = nil;
sessionDelegate = nil;
}
@end
// Start a new assessment session with a given event callback
bool StartAssessmentSession(void (*eventCallback)(const char* reportType, const char* type, const char* message)) {
// Prevent starting a new session if one is already active
if (session && session.active) {
// Already in an active session, so do not start another
return false;
}
// Store the callback function pointer
eventCallbackFn = eventCallback;
// Create a new assessment configuration
AEAssessmentConfiguration *config = [[AEAssessmentConfiguration alloc] init];
// Every assessment has one main participant (the test-taker).
AEAssessmentParticipantConfiguration *main = config.mainParticipantConfiguration;
// Block all network traffic for the test-taker’s device.
main.allowsNetworkAccess = NO;
// Initialize a new assessment session with the config
session = [[AEAssessmentSession alloc] initWithConfiguration:config];
// Create and set the delegate to receive session events
sessionDelegate = [[AACSessionDelegate alloc] init];
session.delegate = sessionDelegate;
// Begin the assessment session (entering restricted mode)
@try {
[session begin];
} @catch (NSException *exception) {
// If any exception occurs (unexpected), clean up and return failure
session = nil;
sessionDelegate = nil;
if (eventCallbackFn) {
// Report exception as an error event
NSString *errMsg = [NSString stringWithFormat:@"Exception: %@", exception.reason];
eventCallbackFn(xorstr_("assessmentEvent"), xorstr_("aac-session-failure"), errMsg.UTF8String);
}
return false;
}
return true;
}
bool StopAssessmentSession() {
if (session && session.active) {
[session end];
return true;
}
return false;
}

-------------------------------------
Translated Report (Full Report Below)
-------------------------------------

Process:               WindowServer [159]
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:             2025-06-06 16:58:21.0962 +0200
OS Version:            macOS 14.5 (23F79)
Report Version:        12
Bridge OS Version:     8.5 (21P5077)
Anonymous UUID:        762071CB-6C37-5F7F-AE14-0C6C3B30CC0B


Time Awake Since Boot: 4700 seconds

System Integrity Protection: enabled

Crashed Thread:        0  ws_main_thread  Dispatch queue: com.apple.main-thread

Exception Type:        EXC_CRASH (SIGABRT)
Exception Codes:       0x0000000000000000, 0x0000000000000000

Termination Reason:    Namespace ******, Code 6 Abort trap: 6
Terminating Process:   WindowServer [159]

Application Specific Information:
abort() called


Thread 0 Crashed:: ws_main_thread Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib        	    0x7ff81094714a __pthread_kill + 10
1   libsystem_pthread.dylib       	    0x7ff81097febd pthread_kill + 262
2   libsystem_c.dylib             	    0x7ff8108a5a79 abort + 126
3   SkyLight                      	    0x7ff81612f10e CGXWindowSessionMap::add(CGXWindow*) + 340
4   SkyLight                      	    0x7ff816202f24 WSWindowCreate + 4881
5   SkyLight                      	    0x7ff81614be92 rebuild_one_menu_bar(PKGManagedMenuSpace*, CGSRegionObject**, bool, PKGMenuBarRebuildType) + 486
6   SkyLight                      	    0x7ff81614bc18 invocation function for block in rebuild_menu_bars_passing_test(PKGMenuBarRebuildType, bool (PKGManagedSpace*) block_pointer) + 119
7   SkyLight                      	    0x7ff81621ea5f PKGForEachManagedMenuSpace + 211
8   SkyLight                      	    0x7ff81614b98f rebuild_menu_bars_passing_test(PKGMenuBarRebuildType, bool (PKGManagedSpace*) block_pointer) + 204
9   SkyLight                      	    0x7ff816232cd6 PKGSpace_ordered_in_spaces_changed(CGSNotificationType, void*, unsigned int, void*) + 88
10  SkyLight                      	    0x7ff8161a8742 (anonymous namespace)::ServerNotifier::invoke_callbacks(unsigned int, void*, unsigned long) const + 346
11  SkyLight                      	    0x7ff8161a7d6e WSPostLocalNotification + 46
12  SkyLight                      	    0x7ff816284503 notify_spaces_changed() + 230
13  SkyLight                      	    0x7ff81628434e WSWorkspacesShow + 131
14  SkyLight                      	    0x7ff81622ba97 PKGSpaceOrderIn + 28
15  SkyLight                      	    0x7ff81615e3e6 PKGWindowSetAssessmentMode + 165
16  SkyLight                      	    0x7ff81613467b WSWindowSessionForEachWindowInSessionMap(void (CGXWindow*, bool*) block_pointer, CGXWindowSessionMap*) + 102
17  SkyLight                      	    0x7ff8161744a0 connection_enable_assessment_mode(CGXConnection*) + 117
18  SkyLight                      	    0x7ff81641ac6c _XUpdateAssessmentMode + 571
19  SkyLight                      	    0x7ff816171e4d invocation function for block in connectionHandler(unsigned int, mach_msg_header_t*, void*) + 318
20  SkyLight                      	    0x7ff816171ccc invocation function for block in connectionHandler(unsigned int, mach_msg_header_t*, void*) + 79
21  SkyLight                      	    0x7ff81635e591 CGXHandleMessageWithResponseBuffer + 73
22  SkyLight                      	    0x7ff816171914 connectionHandler(unsigned int, mach_msg_header_t*, void*) + 270
23  SkyLight                      	    0x7ff8163c414c post_port_data + 269
24  SkyLight                      	    0x7ff8163c3e97 CGXRunOneServicesPass + 1696
25  SkyLight                      	    0x7ff8163c483e server_loop + 98
26  SkyLight                      	    0x7ff8163c4698 SLXServer + 1265
27  WindowServer                  	       0x10a6d748c 0x10a6d6000 + 5260
28  dyld                          	    0x7ff8105f4366 start + 1942

Thread 1:: com.apple.coreanimation.render-server
0   libsystem_kernel.dylib        	    0x7ff8109403ce mach_msg2_trap + 10
1   libsystem_kernel.dylib        	    0x7ff81094ec88 mach_msg2_internal + 84
2   libsystem_kernel.dylib        	    0x7ff810947510 mach_msg_overwrite + 653
3   libsystem_kernel.dylib        	    0x7ff8109406bd mach_msg + 19
4   QuartzCore                    	    0x7ff81908615a CA::Render::Server::server_thread(void*) + 664
5   QuartzCore                    	    0x7ff819085eb7 thread_fun(void*) + 25
6   libsystem_pthread.dylib       	    0x7ff81098018b _pthread_start + 99
7   libsystem_pthread.dylib       	    0x7ff81097bae3 thread_start + 15

Thread 2::  Dispatch queue: com.apple.VirtualDisplayListener
0   libsystem_kernel.dylib        	    0x7ff8109403ce mach_msg2_trap + 10
1   libsystem_kernel.dylib        	    0x7ff81094ec88 mach_msg2_internal + 84
2   libsystem_kernel.dylib        	    0x7ff810947510 mach_msg_overwrite + 653
3   libsystem_kernel.dylib        	    0x7ff81094950e mach_msg_server_once + 266
4   CoreDisplay                   	    0x7ff8127c595d -[VirtualDisplayListener rx] + 77
5   libdispatch.dylib             	    0x7ff8107ddac6 _dispatch_call_block_and_release + 12
6   libdispatch.dylib             	    0x7ff8107dedbc _dispatch_client_callout + 8
7   libdispatch.dylib             	    0x7ff8107e4eff _dispatch_lane_serial_drain + 800
8   libdispatch.dylib             	    0x7ff8107e5997 _dispatch_lane_invoke + 377
9   libdispatch.dylib             	    0x7ff8107ef414 _dispatch_root_queue_drain_deferred_wlh + 271
10  libdispatch.dylib             	    0x7ff8107eed2a _dispatch_workloop_worker_thread + 451
11  libsystem_pthread.dylib       	    0x7ff81097cb84 _pthread_wqthread + 327
12  libsystem_pthread.dylib       	    0x7ff81097bacf start_wqthread + 15

Thread 3:: IOHIDService - RunLoopCompatibilityThread
0   libsystem_kernel.dylib        	    0x7ff8109403ce mach_msg2_trap + 10
1   libsystem_kernel.dylib        	    0x7ff81094ec88 mach_msg2_internal + 84
2   libsystem_kernel.dylib        	    0x7ff810947510 mach_msg_overwrite + 653
3   libsystem_kernel.dylib        	    0x7ff8109406bd mach_msg + 19
4   CoreFoundation                	    0x7ff810a5d1c5 __CFRunLoopServiceMachPort + 143
5   CoreFoundation                	    0x7ff810a5bc35 __CFRunLoopRun + 1371
6   CoreFoundation                	    0x7ff810a5b112 CFRunLoopRunSpecific + 557
7   CoreFoundation                	    0x7ff810ad6b9e CFRunLoopRun + 40
8   IOKit                         	    0x7ff813fbe3be __IOHIDServiceRunLoopCompatibilityThread + 307
9   libsystem_pthread.dylib       	    0x7ff81098018b _pthread_start + 99
10  libsystem_pthread.dylib       	    0x7ff81097bae3 thread_start + 15

Thread 4:
0   libsystem_kernel.dylib        	    0x7ff8109403ce mach_msg2_trap + 10
1   libsystem_kernel.dylib        	    0x7ff81094ec88 mach_msg2_internal + 84
2   libsystem_kernel.dylib        	    0x7ff810947510 mach_msg_overwrite + 653
3   libsystem_kernel.dylib        	    0x7ff8109406bd mach_msg + 19
4   CoreFoundation                	    0x7ff810a5d1c5 __CFRunLoopServiceMachPort + 143
5   CoreFoundation                	    0x7ff810a5bc35 __CFRunLoopRun + 1371
6   CoreFoundation                	    0x7ff810a5b112 CFRunLoopRunSpecific + 557
7   CoreFoundation                	    0x7ff810ad6b9e CFRunLoopRun + 40
8   AppleHIDALS                   	       0x10a88b425 0x10a87f000 + 50213
9   libsystem_pthread.dylib       	    0x7ff81098018b _pthread_start + 99
10  libsystem_pthread.dylib       	    0x7ff81097bae3 thread_start + 15

Thread 5:
0   libsystem_kernel.dylib        	    0x7ff8109403ce mach_msg2_trap + 10
1   libsystem_kernel.dylib        	    0x7ff81094ec88 mach_msg2_internal + 84
2   libsystem_kernel.dylib        	    0x7ff810947510 mach_msg_overwrite + 653
3   libsystem_kernel.dylib        	    0x7ff8109406bd mach_msg + 19
4   CoreDisplay                   	    0x7ff8127e3ca0 CoreDisplay::Mach::Message::Receive(unsigned int) + 80
5   CoreDisplay                   	    0x7ff8128a037b CoreDisplay::Mach::Server::Start() + 105
6   CoreDisplay                   	    0x7ff8128a0444 void* std::__1::__thread_proxy[abi:ue170006]>, void (CoreDisplay::Mach::Server::*)(), CoreDisplay::Mach::Server*>>(void*) + 79
7   libsystem_pthread.dylib       	    0x7ff81098018b _pthread_start + 99
8   libsystem_pthread.dylib       	    0x7ff81097bae3 thread_start + 15

Thread 6:
0   libsystem_pthread.dylib       	    0x7ff81097bac0 start_wqthread + 0

Thread 7:
0   libsystem_pthread.dylib       	    0x7ff81097bac0 start_wqthread + 0

Thread 8:: com.apple.windowserver.root_queue
0   libsystem_kernel.dylib        	    0x7ff810940362 semaphore_timedwait_trap + 10
1   libdispatch.dylib             	    0x7ff8107df30d _dispatch_sema4_timedwait + 73
2   libdispatch.dylib             	    0x7ff8107df759 _dispatch_semaphore_wait_slow + 58
3   libdispatch.dylib             	    0x7ff8107edee1 _dispatch_worker_thread + 324
4   libsystem_pthread.dylib       	    0x7ff81098018b _pthread_start + 99
5   libsystem_pthread.dylib       	    0x7ff81097bae3 thread_start + 15

Thread 9:
0   libsystem_pthread.dylib       	    0x7ff81097bac0 start_wqthread + 0

Thread 10:: com.apple.windowserver.root_queue
0   libsystem_kernel.dylib        	    0x7ff810940362 semaphore_timedwait_trap + 10
1   libdispatch.dylib             	    0x7ff8107df30d _dispatch_sema4_timedwait + 73
2   libdispatch.dylib             	    0x7ff8107df759 _dispatch_semaphore_wait_slow + 58
3   libdispatch.dylib             	    0x7ff8107edee1 _dispatch_worker_thread + 324
4   libsystem_pthread.dylib       	    0x7ff81098018b _pthread_start + 99
5   libsystem_pthread.dylib       	    0x7ff81097bae3 thread_start + 15

Thread 11:: com.apple.windowserver.root_queue
0   libsystem_kernel.dylib        	    0x7ff810940362 semaphore_timedwait_trap + 10
1   libdispatch.dylib             	    0x7ff8107df30d _dispatch_sema4_timedwait + 73
2   libdispatch.dylib             	    0x7ff8107df759 _dispatch_semaphore_wait_slow + 58
3   libdispatch.dylib             	    0x7ff8107edee1 _dispatch_worker_thread + 324
4   libsystem_pthread.dylib       	    0x7ff81098018b _pthread_start + 99
5   libsystem_pthread.dylib       	    0x7ff81097bae3 thread_start + 15

Thread 12:
0   libsystem_pthread.dylib       	    0x7ff81097bac0 start_wqthread + 0

Thread 13:
0   libsystem_pthread.dylib       	    0x7ff81097bac0 start_wqthread + 0


Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007ff7b580f538  rdx: 0x0000000000000000
  rdi: 0x0000000000000103  rsi: 0x0000000000000006  rbp: 0x00007ff7b580f560  rsp: 0x00007ff7b580f538
   r8: 0x0000000000000004   r9: 0x0000000000f8e32f  r10: 0x0000000000000000  r11: 0x0000000000000246
  r12: 0x0000000000000103  r13: 0x00007fd612f05180  r14: 0x00007ff853ec0fc0  r15: 0x0000000000000016
  rip: 0x00007ff81094714a  rfl: 0x0000000000000246  cr2: 0x0000000000000000
  
Logical CPU:     0
Error Code:      0x02000148 
Trap Number:     133


Binary Images:
       0x10ab62000 -        0x10ab75fff TouchBarEvent.bundle (*) <f0d018af-6cd4-370c-8a77-b7f778642081> /System/Library/CoreServices/TouchBarEvent.bundle
       0x10a9eb000 -        0x10a9ebfff com.apple.driver.IOAccelerator2D (481.40.2) <04e4b622-444b-3b82-abf3-b77f4dd809b3> /System/Library/Extensions/IOAccelerator2D.plugin/Contents/MacOS/IOAccelerator2D
       0x10a91b000 -        0x10a924fff com.apple.hid.AppleDeviceManagementHIDFilter (1.0) <12ad3ecd-8950-39ef-98a6-770bed643452> /System/Library/HIDPlugins/ServiceFilters/AppleDeviceManagementHIDFilter.plugin/Contents/MacOS/AppleDeviceManagementHIDFilter
       0x10a8e1000 -        0x10a8edfff com.apple.corebrightness.KeyboardBacklightServiceFilter (1.0) <f69cc71a-ba2a-37d5-839a-05d7452308a6> /System/Library/HIDPlugins/ServiceFilters/KeyboardBacklightServiceFilter.plugin/Contents/MacOS/KeyboardBacklightServiceFilter
       0x10a90c000 -        0x10a910fff com.apple.KeyboardTelemetryServiceFilter (1.0) <8676078a-ac53-3a37-9d99-6e94575b1f25> /System/Library/HIDPlugins/ServiceFilters/KeyboardTelemetryServiceFilter.plugin/Contents/MacOS/KeyboardTelemetryServiceFilter
       0x10a960000 -        0x10a96cfff com.apple.iokit.hid.IOHIDKeyboardFilter (1.0) <1be52cab-cb91-307c-96c8-6cb10c3453db> /System/Library/HIDPlugins/IOHIDKeyboardFilter.plugin/Contents/MacOS/IOHIDKeyboardFilter
       0x10a8ba000 -        0x10a8bdfff com.apple.IOHIDEventServicePlugin (1.0) <31776b26-bac3-3bbe-8c55-72ab879a4164> /System/Library/HIDPlugins/ServicePlugins/IOHIDEventServicePlugin.plugin/Contents/MacOS/IOHIDEventServicePlugin
       0x10a8ae000 -        0x10a8affff com.apple.iokit.IOHIDNXEventRouter (2.0.0) <f8ae86e4-c93e-3405-b097-35a633eefbf3> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDNXEventRouter.plugin/Contents/MacOS/IOHIDNXEventRouter
       0x10a939000 -        0x10a94ffff com.apple.iokit.IOHIDLib (2.0.0) <63297771-062b-3fe3-bf05-e4af8148d037> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Contents/MacOS/IOHIDLib
       0x10a87f000 -        0x10a88ffff com.apple.hid.AppleHIDALSServicePlugin (1.0) <c0655e73-f108-3755-ab06-715bc6306eae> /System/Library/Extensions/AppleHIDALSService.kext/Contents/PlugIns/AppleHIDALS.plugin/Contents/MacOS/AppleHIDALS
       0x10ac41000 -        0x10acf8fff com.apple.universalcontrol.servicefilter (1.0) <b56d2011-0266-38fc-b383-72ac51423375> /System/Library/HIDPlugins/ServiceFilters/UniversalControlServiceFilter.plugin/Contents/MacOS/UniversalControlServiceFilter
       0x10a8a1000 -        0x10a8a3fff com.apple.AppleHIDBluetoothFilter (1.0) <4676ad8b-c7dd-3641-a214-e3d0892a6043> /System/Library/HIDPlugins/ServiceFilters/AppleHIDBluetoothFilter.plugin/Contents/MacOS/AppleHIDBluetoothFilter
       0x10a838000 -        0x10a83cfff com.apple.iokit.hid.IOHIDEventProcessorFilter (1.0) <5d7be7ee-182e-3a17-9290-98d2d4c7a244> /System/Library/HIDPlugins/IOHIDEventProcessorFilter.plugin/Contents/MacOS/IOHIDEventProcessorFilter
       0x10a8c8000 -        0x10a8d2fff com.apple.iokit.hid.IOHIDPointerScrollFilter (1.0) <e0287630-f28d-318d-bc82-aed5da7f08a2> /System/Library/HIDPlugins/IOHIDPointerScrollFilter.plugin/Contents/MacOS/IOHIDPointerScrollFilter
       0x10a78f000 -        0x10a791fff com.apple.iokit.hid.IOHIDNXEventTranslatorServiceFilter (1.0) <886114c4-a6e8-3928-8227-45f55683f0e5> /System/Library/HIDPlugins/IOHIDNXEventTranslatorServiceFilter.plugin/Contents/MacOS/IOHIDNXEventTranslatorServiceFilter
       0x10a77b000 -        0x10a783fff com.apple.CoreRCPlugin (1.0) <f3c2815f-c5a0-3986-bae7-ee1d619b9096> /System/Library/HIDPlugins/SessionFilters/CoreRCPlugin.plugin/Contents/MacOS/CoreRCPlugin
       0x10a7cf000 -        0x10a7d0fff com.apple.IOHIDRemoteSensorSessionFilter (1.0) <88b28d0e-94f1-3fca-bb1e-94045b42d298> /System/Library/HIDPlugins/SessionFilters/IOHIDRemoteSensorSessionFilter.plugin/Contents/MacOS/IOHIDRemoteSensorSessionFilter
       0x10a847000 -        0x10a859fff com.apple.IOAnalytics (1.0) <94260b3f-6511-3b41-9195-1552df1ea805> /System/Library/HIDPlugins/SessionFilters/IOAnalytics.plugin/Contents/MacOS/IOAnalytics
       0x10a7a2000 -        0x10a7a4fff com.apple.iokit.hid.IOHIDDFREventFilter (1.0) <5b7e649f-c218-325f-a5a5-5ef45385f5df> /System/Library/HIDPlugins/IOHIDDFREventFilter.plugin/Contents/MacOS/IOHIDDFREventFilter
       0x10a7b6000 -        0x10a7bffff com.apple.iokit.hid.IOHIDNXEventTranslatorSessionFilter (1.0) <f8ac9205-8444-38a7-bf94-40dbdd4a549d> /System/Library/HIDPlugins/IOHIDNXEventTranslatorSessionFilter.plugin/Contents/MacOS/IOHIDNXEventTranslatorSessionFilter
       0x10bad8000 -        0x10c20afff CursorAsset (*) <61cc895f-e1b3-3e29-b534-2dc194bcd120> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/Resources/CursorAsset
       0x10a6d6000 -        0x10a6d7fff WindowServer (*) <c773313a-946c-388e-9dc4-0882958f91eb> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/Resources/WindowServer
    0x7ff81093f000 -     0x7ff810979ff7 libsystem_kernel.dylib (*) <13597eeb-2ea0-3d48-8be1-dfc4872a784b> /usr/lib/system/libsystem_kernel.dylib
    0x7ff81097a000 -     0x7ff810985ff7 libsystem_pthread.dylib (*) <25b2f3eb-07b4-3cb9-9457-2c26210c27c8> /usr/lib/system/libsystem_pthread.dylib
    0x7ff810826000 -     0x7ff8108adff7 libsystem_c.dylib (*) <93fb3816-608b-33af-83d2-209b4bd673ad> /usr/lib/system/libsystem_c.dylib
    0x7ff816056000 -     0x7ff8164b7ff6 com.apple.SkyLight (1.600.0) <c85f48c7-7d13-316b-a28b-cfbd2693b663> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7ff8105ee000 -     0x7ff81067eb9f dyld (*) <baa6f02e-dff3-3562-8c99-ea2820c91ad9> /usr/lib/dyld
               0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ???
    0x7ff81903d000 -     0x7ff8193c7fff com.apple.QuartzCore (1.11) <b3dd1f86-a396-3916-ab37-c0a98d3f4315> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7ff8127b4000 -     0x7ff8128e1ff5 com.apple.CoreDisplay (285) <7a0d9348-7182-3379-bdcb-fe4f9753e4dd> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7ff8107dc000 -     0x7ff810822ff1 libdispatch.dylib (*) <511b909b-7a60-3295-9981-a508477c7893> /usr/lib/system/libdispatch.dylib
    0x7ff8109e1000 -     0x7ff810e7bffc com.apple.CoreFoundation (6.9) <59d4644f-7aa6-3767-80ab-73d7a388a4ff> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7ff813f64000 -     0x7ff814027fff com.apple.framework.IOKit (2.0.2) <76d5c2fb-dc12-30a4-ac09-e388c1df9a3a> /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=466.2M resident=0K(0%) swapped_out_or_unallocated=466.2M(100%)
Writable regions: Total=2.3G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=2.3G(100%)

                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Activity Tracing                   256K        1 
CG backing stores                   36K        9 
CG framebuffers                    1.1G       10 
CG framebuffers (reserved)       596.1M        9         reserved VM address space (unallocated)
CG raster data                      12K        1 
ColorSync                          248K       31 
CoreAnimation                     46.8M      447 
CoreGraphics                         8K        2 
Kernel Alloc Once                    8K        1 
MALLOC                           608.1M       81 
MALLOC guard page                   32K        8 
Mach message                       756K       22 
STACK GUARD                       56.1M       14 
Stack                             15.1M       14 
VM_ALLOCATE                       15.7M      159 
VM_ALLOCATE (reserved)             232K       32         reserved VM address space (unallocated)
__CGSERVER                           4K        1 
__DATA                            18.6M      375 
__DATA_CONST                      16.7M      247 
__DATA_DIRTY                       660K      114 
__FONT_DATA                        2352        1 
__LINKEDIT                       181.1M       24 
__OBJC_RO                         71.8M        1 
__OBJC_RW                         2200K        2 
__SLSERVER                           4K        1 
__TEXT                           285.0M      400 
dyld private memory                260K        2 
mapped file                       49.8M       10 
shared memory                     1028K       32 
===========                     =======  ======= 
TOTAL                              3.1G     2051 
TOTAL, minus reserved VM space     2.5G     2051 



-----------
Full Report
-----------

{"app_name":"WindowServer","timestamp":"2025-06-06 16:58:28.00 +0200","app_version":"","slice_uuid":"c773313a-946c-388e-9dc4-0882958f91eb","build_version":"","platform":1,"share_with_app_devs":0,"is_first_party":1,"bug_type":"309","os_version":"macOS 14.5 (23F79)","roots_installed":0,"incident_id":"5F1AACA7-85C8-4E16-8910-3246CCED60B7","name":"WindowServer"}
{
  "uptime" : 4700,
  "procRole" : "Graphics",
  "version" : 2,
  "userID" : 88,
  "deployVersion" : 210,
  "modelCode" : "MacBookAir8,2",
  "coalitionID" : 141,
  "osVersion" : {
    "train" : "macOS 14.5",
    "build" : "23F79",
    "releaseType" : "User"
  },
  "captureTime" : "2025-06-06 16:58:21.0962 +0200",
  "codeSigningMonitor" : 0,
  "incident" : "5F1AACA7-85C8-4E16-8910-3246CCED60B7",
  "pid" : 159,
  "cpuType" : "X86-64",
  "roots_installed" : 0,
  "bug_type" : "309",
  "procLaunch" : "2025-06-06 15:40:03.4328 +0200",
  "procStartAbsTime" : 5430293643,
  "procExitAbsTime" : 4702066507193,
  "procName" : "WindowServer",
  "procPath" : "\/System\/Library\/PrivateFrameworks\/SkyLight.framework\/Versions\/A\/Resources\/WindowServer",
  "parentProc" : "launchd",
  "parentPid" : 1,
  "coalitionName" : "com.apple.WindowServer",
  "crashReporterKey" : "762071CB-6C37-5F7F-AE14-0C6C3B30CC0B",
  "throttleTimeout" : 10,
  "codeSigningID" : "com.apple.WindowServer",
  "codeSigningTeamID" : "",
  "codeSigningFlags" : 570522369,
  "codeSigningValidationCategory" : 1,
  "codeSigningTrustLevel" : 4294967295,
  "bridgeVersion" : {"build":"21P5077","train":"8.5"},
  "sip" : "enabled",
  "exception" : {"codes":"0x0000000000000000, 0x0000000000000000","rawCodes":[0,0],"type":"EXC_CRASH","******":"SIGABRT"},
  "termination" : {"flags":0,"code":6,"namespace":"******","indicator":"Abort trap: 6","byProc":"WindowServer","byPid":159},
  "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":140557417468288},"rax":{"value":0},"rflags":{"value":582},"cpu":{"value":0},"r14":{"value":140704536596416,"symbolLocation":0,"symbol":"_main_thread"},"rsi":{"value":6},"r8":{"value":4},"cr2":{"value":0},"rdx":{"value":0},"r10":{"value":0},"r9":{"value":16311087},"r15":{"value":22},"rbx":{"value":6},"trap":{"value":133},"err":{"value":33554760},"r11":{"value":582},"rip":{"value":140703406780746,"matchesCrashFrame":1},"rbp":{"value":140701878777184},"rsp":{"value":140701878777144},"r12":{"value":259},"rcx":{"value":140701878777144},"flavor":"x86_THREAD_STATE","rdi":{"value":259}},"id":768,"triggered":true,"name":"ws_main_thread","queue":"com.apple.main-thread","frames":[{"imageOffset":33098,"symbol":"__pthread_kill","symbolLocation":10,"imageIndex":22},{"imageOffset":24253,"symbol":"pthread_kill","symbolLocation":262,"imageIndex":23},{"imageOffset":522873,"symbol":"abort","symbolLocation":126,"imageIndex":24},{"imageOffset":889102,"symbol":"CGXWindowSessionMap::add(CGXWindow*)","symbolLocation":340,"imageIndex":25},{"imageOffset":1756964,"symbol":"WSWindowCreate","symbolLocation":4881,"imageIndex":25},{"imageOffset":1007250,"symbol":"rebuild_one_menu_bar(PKGManagedMenuSpace*, CGSRegionObject**, bool, PKGMenuBarRebuildType)","symbolLocation":486,"imageIndex":25},{"imageOffset":1006616,"symbol":"invocation function for block in rebuild_menu_bars_passing_test(PKGMenuBarRebuildType, bool (PKGManagedSpace*) block_pointer)","symbolLocation":119,"imageIndex":25},{"imageOffset":1870431,"symbol":"PKGForEachManagedMenuSpace","symbolLocation":211,"imageIndex":25},{"imageOffset":1005967,"symbol":"rebuild_menu_bars_passing_test(PKGMenuBarRebuildType, bool (PKGManagedSpace*) block_pointer)","symbolLocation":204,"imageIndex":25},{"imageOffset":1952982,"symbol":"PKGSpace_ordered_in_spaces_changed(CGSNotificationType, void*, unsigned int, void*)","symbolLocation":88,"imageIndex":25},{"imageOffset":1386306,"symbol":"(anonymous namespace)::ServerNotifier::invoke_callbacks(unsigned int, void*, unsigned long) const","symbolLocation":346,"imageIndex":25},{"imageOffset":1383790,"symbol":"WSPostLocalNotification","symbolLocation":46,"imageIndex":25},{"imageOffset":2286851,"symbol":"notify_spaces_changed()","symbolLocation":230,"imageIndex":25},{"imageOffset":2286414,"symbol":"WSWorkspacesShow","symbolLocation":131,"imageIndex":25},{"imageOffset":1923735,"symbol":"PKGSpaceOrderIn","symbolLocation":28,"imageIndex":25},{"imageOffset":1082342,"symbol":"PKGWindowSetAssessmentMode","symbolLocation":165,"imageIndex":25},{"imageOffset":910971,"symbol":"WSWindowSessionForEachWindowInSessionMap(void (CGXWindow*, bool*) block_pointer, CGXWindowSessionMap*)","symbolLocation":102,"imageIndex":25},{"imageOffset":1172640,"symbol":"connection_enable_assessment_mode(CGXConnection*)","symbolLocation":117,"imageIndex":25},{"imageOffset":3951724,"symbol":"_XUpdateAssessmentMode","symbolLocation":571,"imageIndex":25},{"imageOffset":1162829,"symbol":"invocation function for block in connectionHandler(unsigned int, mach_msg_header_t*, void*)","symbolLocation":318,"imageIndex":25},{"imageOffset":1162444,"symbol":"invocation function for block in connectionHandler(unsigned int, mach_msg_header_t*, void*)","symbolLocation":79,"imageIndex":25},{"imageOffset":3179921,"symbol":"CGXHandleMessageWithResponseBuffer","symbolLocation":73,"imageIndex":25},{"imageOffset":1161492,"symbol":"connectionHandler(unsigned int, mach_msg_header_t*, void*)","symbolLocation":270,"imageIndex":25},{"imageOffset":3596620,"symbol":"post_port_data","symbolLocation":269,"imageIndex":25},{"imageOffset":3595927,"symbol":"CGXRunOneServicesPass","symbolLocation":1696,"imageIndex":25},{"imageOffset":3598398,"symbol":"server_loop","symbolLocation":98,"imageIndex":25},{"imageOffset":3597976,"symbol":"SLXServer","symbolLocation":1265,"imageIndex":25},{"imageOffset":5260,"imageIndex":21},{"imageOffset":25446,"symbol":"start","symbolLocation":1942,"imageIndex":26}]},{"id":2025,"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":36296768618496},"r15":{"value":36296768618496},"rbx":{"value":123145521089248},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":514},"rip":{"value":140703406752718},"rbp":{"value":123145521089088},"rsp":{"value":123145521088984},"r12":{"value":0},"rcx":{"value":123145521088984},"flavor":"x86_THREAD_STATE","rdi":{"value":123145521089248}},"frames":[{"imageOffset":5070,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":22},{"imageOffset":64648,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":22},{"imageOffset":34064,"symbol":"mach_msg_overwrite","symbolLocation":653,"imageIndex":22},{"imageOffset":5821,"symbol":"mach_msg","symbolLocation":19,"imageIndex":22},{"imageOffset":299354,"symbol":"CA::Render::Server::server_thread(void*)","symbolLocation":664,"imageIndex":28},{"imageOffset":298679,"symbol":"thread_fun(void*)","symbolLocation":25,"imageIndex":28},{"imageOffset":24971,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":23},{"imageOffset":6883,"symbol":"thread_start","symbolLocation":15,"imageIndex":23}]},{"id":2027,"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":374946349973504},"r15":{"value":374946349973504},"rbx":{"value":123145521641280},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":514},"rip":{"value":140703406752718},"rbp":{"value":123145521641120},"rsp":{"value":123145521641016},"r12":{"value":0},"rcx":{"value":123145521641016},"flavor":"x86_THREAD_STATE","rdi":{"value":123145521641280}},"queue":"com.apple.VirtualDisplayListener","frames":[{"imageOffset":5070,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":22},{"imageOffset":64648,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":22},{"imageOffset":34064,"symbol":"mach_msg_overwrite","symbolLocation":653,"imageIndex":22},{"imageOffset":42254,"symbol":"mach_msg_server_once","symbolLocation":266,"imageIndex":22},{"imageOffset":72029,"symbol":"-[VirtualDisplayListener rx]","symbolLocation":77,"imageIndex":29},{"imageOffset":6854,"symbol":"_dispatch_call_block_and_release","symbolLocation":12,"imageIndex":30},{"imageOffset":11708,"symbol":"_dispatch_client_callout","symbolLocation":8,"imageIndex":30},{"imageOffset":36607,"symbol":"_dispatch_lane_serial_drain","symbolLocation":800,"imageIndex":30},{"imageOffset":39319,"symbol":"_dispatch_lane_invoke","symbolLocation":377,"imageIndex":30},{"imageOffset":78868,"symbol":"_dispatch_root_queue_drain_deferred_wlh","symbolLocation":271,"imageIndex":30},{"imageOffset":77098,"symbol":"_dispatch_workloop_worker_thread","symbolLocation":451,"imageIndex":30},{"imageOffset":11140,"symbol":"_pthread_wqthread","symbolLocation":327,"imageIndex":23},{"imageOffset":6863,"symbol":"start_wqthread","symbolLocation":15,"imageIndex":23}]},{"id":2055,"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":136352326746112},"r9":{"value":136352326746112},"r15":{"value":136352326746112},"rbx":{"value":123145523249104},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":518},"rip":{"value":140703406752718},"rbp":{"value":123145523248944},"rsp":{"value":123145523248840},"r12":{"value":4294967295},"rcx":{"value":123145523248840},"flavor":"x86_THREAD_STATE","rdi":{"value":123145523249104}},"frames":[{"imageOffset":5070,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":22},{"imageOffset":64648,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":22},{"imageOffset":34064,"symbol":"mach_msg_overwrite","symbolLocation":653,"imageIndex":22},{"imageOffset":5821,"symbol":"mach_msg","symbolLocation":19,"imageIndex":22},{"imageOffset":508357,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":143,"imageIndex":31},{"imageOffset":502837,"symbol":"__CFRunLoopRun","symbolLocation":1371,"imageIndex":31},{"imageOffset":499986,"symbol":"CFRunLoopRunSpecific","symbolLocation":557,"imageIndex":31},{"imageOffset":1006494,"symbol":"CFRunLoopRun","symbolLocation":40,"imageIndex":31},{"imageOffset":369598,"symbol":"__IOHIDServiceRunLoopCompatibilityThread","symbolLocation":307,"imageIndex":32},{"imageOffset":24971,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":23},{"imageOffset":6883,"symbol":"thread_start","symbolLocation":15,"imageIndex":23}]},{"id":2088,"frames":[{"imageOffset":5070,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":22},{"imageOffset":64648,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":22},{"imageOffset":34064,"symbol":"mach_msg_overwrite","symbolLocation":653,"imageIndex":22},{"imageOffset":5821,"symbol":"mach_msg","symbolLocation":19,"imageIndex":22},{"imageOffset":508357,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":143,"imageIndex":31},{"imageOffset":502837,"symbol":"__CFRunLoopRun","symbolLocation":1371,"imageIndex":31},{"imageOffset":499986,"symbol":"CFRunLoopRunSpecific","symbolLocation":557,"imageIndex":31},{"imageOffset":1006494,"symbol":"CFRunLoopRun","symbolLocation":40,"imageIndex":31},{"imageOffset":50213,"imageIndex":9},{"imageOffset":24971,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":23},{"imageOffset":6883,"symbol":"thread_start","symbolLocation":15,"imageIndex":23}],"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":190228396507136},"r9":{"value":190228396507136},"r15":{"value":190228396507136},"rbx":{"value":123145525395520},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":518},"rip":{"value":140703406752718},"rbp":{"value":123145525395360},"rsp":{"value":123145525395256},"r12":{"value":4294967295},"rcx":{"value":123145525395256},"flavor":"x86_THREAD_STATE","rdi":{"value":123145525395520}}},{"id":2179,"frames":[{"imageOffset":5070,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":22},{"imageOffset":64648,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":22},{"imageOffset":34064,"symbol":"mach_msg_overwrite","symbolLocation":653,"imageIndex":22},{"imageOffset":5821,"symbol":"mach_msg","symbolLocation":19,"imageIndex":22},{"imageOffset":195744,"symbol":"CoreDisplay::Mach::Message::Receive(unsigned int)","symbolLocation":80,"imageIndex":29},{"imageOffset":967547,"symbol":"CoreDisplay::Mach::Server::Start()","symbolLocation":105,"imageIndex":29},{"imageOffset":967748,"symbol":"void* std::__1::__thread_proxy[abi:ue170006]>, void (CoreDisplay::Mach::Server::*)(), CoreDisplay::Mach::Server*>>(void*)","symbolLocation":79,"imageIndex":29},{"imageOffset":24971,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":23},{"imageOffset":6883,"symbol":"thread_start","symbolLocation":15,"imageIndex":23}],"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":332683871780864},"r15":{"value":332683871780864},"rbx":{"value":123145527008624},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":518},"rip":{"value":140703406752718},"rbp":{"value":123145527008464},"rsp":{"value":123145527008360},"r12":{"value":0},"rcx":{"value":123145527008360},"flavor":"x86_THREAD_STATE","rdi":{"value":123145527008624}}},{"id":35154,"frames":[{"imageOffset":6848,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":23}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":263191},"r8":{"value":409602},"cr2":{"value":0},"rdx":{"value":123145525411840},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145525934968},"rbx":{"value":123145525936128},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703406996160},"rbp":{"value":0},"rsp":{"value":123145525936128},"r12":{"value":5193730},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145525936128}}},{"id":35229,"frames":[{"imageOffset":6848,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":23}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":342847},"r8":{"value":5193730},"cr2":{"value":0},"rdx":{"value":123145527021568},"r10":{"value":0},"r9":{"value":1},"r15":{"value":123145527544696},"rbx":{"value":123145527545856},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703406996160},"rbp":{"value":0},"rsp":{"value":123145527544688},"r12":{"value":5193732},"rcx":{"value":123145527544704},"flavor":"x86_THREAD_STATE","rdi":{"value":123145527545856}}},{"id":36348,"name":"com.apple.windowserver.root_queue","threadState":{"r13":{"value":18446744071427850239},"rax":{"value":14},"rflags":{"value":518},"cpu":{"value":0},"r14":{"value":140557440533056},"rsi":{"value":4294966475661246468},"r8":{"value":1},"cr2":{"value":0},"rdx":{"value":999999809},"r10":{"value":4294966475661246464},"r9":{"value":2931992605},"r15":{"value":19342813113834067},"rbx":{"value":4706295605127},"trap":{"value":133},"err":{"value":16777254},"r11":{"value":518},"rip":{"value":140703406752610},"rbp":{"value":123145524326208},"rsp":{"value":123145524326168},"r12":{"value":0},"rcx":{"value":123145524326168},"flavor":"x86_THREAD_STATE","rdi":{"value":4867}},"frames":[{"imageOffset":4962,"symbol":"semaphore_timedwait_trap","symbolLocation":10,"imageIndex":22},{"imageOffset":13069,"symbol":"_dispatch_sema4_timedwait","symbolLocation":73,"imageIndex":30},{"imageOffset":14169,"symbol":"_dispatch_semaphore_wait_slow","symbolLocation":58,"imageIndex":30},{"imageOffset":73441,"symbol":"_dispatch_worker_thread","symbolLocation":324,"imageIndex":30},{"imageOffset":24971,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":23},{"imageOffset":6883,"symbol":"thread_start","symbolLocation":15,"imageIndex":23}]},{"id":36412,"frames":[{"imageOffset":6848,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":23}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":319755},"r8":{"value":5128196},"cr2":{"value":0},"rdx":{"value":123145521655808},"r10":{"value":0},"r9":{"value":1},"r15":{"value":123145522178944},"rbx":{"value":123145522180096},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703406996160},"rbp":{"value":0},"rsp":{"value":123145522178928},"r12":{"value":1982472},"rcx":{"value":123145522178944},"flavor":"x86_THREAD_STATE","rdi":{"value":123145522180096}}},{"id":37496,"name":"com.apple.windowserver.root_queue","threadState":{"r13":{"value":18446744071427850239},"rax":{"value":14},"rflags":{"value":514},"cpu":{"value":0},"r14":{"value":140557440533056},"rsi":{"value":4294966892273074180},"r8":{"value":1},"cr2":{"value":0},"rdx":{"value":999999906},"r10":{"value":4294966892273074176},"r9":{"value":105553147624320},"r15":{"value":19342813113834067},"rbx":{"value":4706113240375},"trap":{"value":133},"err":{"value":16777254},"r11":{"value":514},"rip":{"value":140703406752610},"rbp":{"value":123145522716480},"rsp":{"value":123145522716440},"r12":{"value":0},"rcx":{"value":123145522716440},"flavor":"x86_THREAD_STATE","rdi":{"value":4867}},"frames":[{"imageOffset":4962,"symbol":"semaphore_timedwait_trap","symbolLocation":10,"imageIndex":22},{"imageOffset":13069,"symbol":"_dispatch_sema4_timedwait","symbolLocation":73,"imageIndex":30},{"imageOffset":14169,"symbol":"_dispatch_semaphore_wait_slow","symbolLocation":58,"imageIndex":30},{"imageOffset":73441,"symbol":"_dispatch_worker_thread","symbolLocation":324,"imageIndex":30},{"imageOffset":24971,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":23},{"imageOffset":6883,"symbol":"thread_start","symbolLocation":15,"imageIndex":23}]},{"id":37551,"name":"com.apple.windowserver.root_queue","threadState":{"r13":{"value":18446744071427850239},"rax":{"value":14},"rflags":{"value":518},"cpu":{"value":0},"r14":{"value":140557440533056},"rsi":{"value":4294966733359284228},"r8":{"value":1},"cr2":{"value":0},"rdx":{"value":999999869},"r10":{"value":4294966733359284224},"r9":{"value":4144048152},"r15":{"value":19342813113834067},"rbx":{"value":4707000883512},"trap":{"value":133},"err":{"value":16777254},"r11":{"value":518},"rip":{"value":140703406752610},"rbp":{"value":123145524862784},"rsp":{"value":123145524862744},"r12":{"value":0},"rcx":{"value":123145524862744},"flavor":"x86_THREAD_STATE","rdi":{"value":4867}},"frames":[{"imageOffset":4962,"symbol":"semaphore_timedwait_trap","symbolLocation":10,"imageIndex":22},{"imageOffset":13069,"symbol":"_dispatch_sema4_timedwait","symbolLocation":73,"imageIndex":30},{"imageOffset":14169,"symbol":"_dispatch_semaphore_wait_slow","symbolLocation":58,"imageIndex":30},{"imageOffset":73441,"symbol":"_dispatch_worker_thread","symbolLocation":324,"imageIndex":30},{"imageOffset":24971,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":23},{"imageOffset":6883,"symbol":"thread_start","symbolLocation":15,"imageIndex":23}]},{"id":37790,"frames":[{"imageOffset":6848,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":23}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":381223},"r8":{"value":5193732},"cr2":{"value":0},"rdx":{"value":123145523265536},"r10":{"value":0},"r9":{"value":1},"r15":{"value":123145523788672},"rbx":{"value":123145523789824},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703406996160},"rbp":{"value":0},"rsp":{"value":123145523788656},"r12":{"value":1982472},"rcx":{"value":123145523788672},"flavor":"x86_THREAD_STATE","rdi":{"value":123145523789824}}},{"id":38096,"frames":[{"imageOffset":6848,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":23}],"threadState":{"r13":{"value":0},"rax":{"value":0},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":0},"rsi":{"value":0},"r8":{"value":278532},"cr2":{"value":0},"rdx":{"value":123145525948416},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":0},"rbx":{"value":0},"trap":{"value":0},"err":{"value":0},"r11":{"value":0},"rip":{"value":140703406996160},"rbp":{"value":0},"rsp":{"value":123145526472704},"r12":{"value":0},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145526472704}}}],
  "usedImages" : [
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4474675200,
    "size" : 81920,
    "uuid" : "f0d018af-6cd4-370c-8a77-b7f778642081",
    "path" : "\/System\/Library\/CoreServices\/TouchBarEvent.bundle",
    "name" : "TouchBarEvent.bundle"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4473139200,
    "CFBundleShortVersionString" : "481.40.2",
    "CFBundleIdentifier" : "com.apple.driver.IOAccelerator2D",
    "size" : 4096,
    "uuid" : "04e4b622-444b-3b82-abf3-b77f4dd809b3",
    "path" : "\/System\/Library\/Extensions\/IOAccelerator2D.plugin\/Contents\/MacOS\/IOAccelerator2D",
    "name" : "IOAccelerator2D",
    "CFBundleVersion" : "481.40.2"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4472287232,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.hid.AppleDeviceManagementHIDFilter",
    "size" : 40960,
    "uuid" : "12ad3ecd-8950-39ef-98a6-770bed643452",
    "path" : "\/System\/Library\/HIDPlugins\/ServiceFilters\/AppleDeviceManagementHIDFilter.plugin\/Contents\/MacOS\/AppleDeviceManagementHIDFilter",
    "name" : "AppleDeviceManagementHIDFilter",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4472049664,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.corebrightness.KeyboardBacklightServiceFilter",
    "size" : 53248,
    "uuid" : "f69cc71a-ba2a-37d5-839a-05d7452308a6",
    "path" : "\/System\/Library\/HIDPlugins\/ServiceFilters\/KeyboardBacklightServiceFilter.plugin\/Contents\/MacOS\/KeyboardBacklightServiceFilter",
    "name" : "KeyboardBacklightServiceFilter",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4472225792,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.KeyboardTelemetryServiceFilter",
    "size" : 20480,
    "uuid" : "8676078a-ac53-3a37-9d99-6e94575b1f25",
    "path" : "\/System\/Library\/HIDPlugins\/ServiceFilters\/KeyboardTelemetryServiceFilter.plugin\/Contents\/MacOS\/KeyboardTelemetryServiceFilter",
    "name" : "KeyboardTelemetryServiceFilter",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4472569856,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.iokit.hid.IOHIDKeyboardFilter",
    "size" : 53248,
    "uuid" : "1be52cab-cb91-307c-96c8-6cb10c3453db",
    "path" : "\/System\/Library\/HIDPlugins\/IOHIDKeyboardFilter.plugin\/Contents\/MacOS\/IOHIDKeyboardFilter",
    "name" : "IOHIDKeyboardFilter",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4471889920,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.IOHIDEventServicePlugin",
    "size" : 16384,
    "uuid" : "31776b26-bac3-3bbe-8c55-72ab879a4164",
    "path" : "\/System\/Library\/HIDPlugins\/ServicePlugins\/IOHIDEventServicePlugin.plugin\/Contents\/MacOS\/IOHIDEventServicePlugin",
    "name" : "IOHIDEventServicePlugin",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4471840768,
    "CFBundleShortVersionString" : "2.0.0",
    "CFBundleIdentifier" : "com.apple.iokit.IOHIDNXEventRouter",
    "size" : 8192,
    "uuid" : "f8ae86e4-c93e-3405-b097-35a633eefbf3",
    "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" : 4472410112,
    "CFBundleShortVersionString" : "2.0.0",
    "CFBundleIdentifier" : "com.apple.iokit.IOHIDLib",
    "size" : 94208,
    "uuid" : "63297771-062b-3fe3-bf05-e4af8148d037",
    "path" : "\/System\/Library\/Extensions\/IOHIDFamily.kext\/Contents\/PlugIns\/IOHIDLib.plugin\/Contents\/MacOS\/IOHIDLib",
    "name" : "IOHIDLib",
    "CFBundleVersion" : "2.0.0"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4471648256,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.hid.AppleHIDALSServicePlugin",
    "size" : 69632,
    "uuid" : "c0655e73-f108-3755-ab06-715bc6306eae",
    "path" : "\/System\/Library\/Extensions\/AppleHIDALSService.kext\/Contents\/PlugIns\/AppleHIDALS.plugin\/Contents\/MacOS\/AppleHIDALS",
    "name" : "AppleHIDALS",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4475588608,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.universalcontrol.servicefilter",
    "size" : 753664,
    "uuid" : "b56d2011-0266-38fc-b383-72ac51423375",
    "path" : "\/System\/Library\/HIDPlugins\/ServiceFilters\/UniversalControlServiceFilter.plugin\/Contents\/MacOS\/UniversalControlServiceFilter",
    "name" : "UniversalControlServiceFilter",
    "CFBundleVersion" : "140.300"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4471787520,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.AppleHIDBluetoothFilter",
    "size" : 12288,
    "uuid" : "4676ad8b-c7dd-3641-a214-e3d0892a6043",
    "path" : "\/System\/Library\/HIDPlugins\/ServiceFilters\/AppleHIDBluetoothFilter.plugin\/Contents\/MacOS\/AppleHIDBluetoothFilter",
    "name" : "AppleHIDBluetoothFilter",
    "CFBundleVersion" : "7440.8"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4471357440,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.iokit.hid.IOHIDEventProcessorFilter",
    "size" : 20480,
    "uuid" : "5d7be7ee-182e-3a17-9290-98d2d4c7a244",
    "path" : "\/System\/Library\/HIDPlugins\/IOHIDEventProcessorFilter.plugin\/Contents\/MacOS\/IOHIDEventProcessorFilter",
    "name" : "IOHIDEventProcessorFilter",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4471947264,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.iokit.hid.IOHIDPointerScrollFilter",
    "size" : 45056,
    "uuid" : "e0287630-f28d-318d-bc82-aed5da7f08a2",
    "path" : "\/System\/Library\/HIDPlugins\/IOHIDPointerScrollFilter.plugin\/Contents\/MacOS\/IOHIDPointerScrollFilter",
    "name" : "IOHIDPointerScrollFilter",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4470665216,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.iokit.hid.IOHIDNXEventTranslatorServiceFilter",
    "size" : 12288,
    "uuid" : "886114c4-a6e8-3928-8227-45f55683f0e5",
    "path" : "\/System\/Library\/HIDPlugins\/IOHIDNXEventTranslatorServiceFilter.plugin\/Contents\/MacOS\/IOHIDNXEventTranslatorServiceFilter",
    "name" : "IOHIDNXEventTranslatorServiceFilter",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4470583296,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.CoreRCPlugin",
    "size" : 36864,
    "uuid" : "f3c2815f-c5a0-3986-bae7-ee1d619b9096",
    "path" : "\/System\/Library\/HIDPlugins\/SessionFilters\/CoreRCPlugin.plugin\/Contents\/MacOS\/CoreRCPlugin",
    "name" : "CoreRCPlugin",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4470927360,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.IOHIDRemoteSensorSessionFilter",
    "size" : 8192,
    "uuid" : "88b28d0e-94f1-3fca-bb1e-94045b42d298",
    "path" : "\/System\/Library\/HIDPlugins\/SessionFilters\/IOHIDRemoteSensorSessionFilter.plugin\/Contents\/MacOS\/IOHIDRemoteSensorSessionFilter",
    "name" : "IOHIDRemoteSensorSessionFilter",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4471418880,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.IOAnalytics",
    "size" : 77824,
    "uuid" : "94260b3f-6511-3b41-9195-1552df1ea805",
    "path" : "\/System\/Library\/HIDPlugins\/SessionFilters\/IOAnalytics.plugin\/Contents\/MacOS\/IOAnalytics",
    "name" : "IOAnalytics",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4470743040,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.iokit.hid.IOHIDDFREventFilter",
    "size" : 12288,
    "uuid" : "5b7e649f-c218-325f-a5a5-5ef45385f5df",
    "path" : "\/System\/Library\/HIDPlugins\/IOHIDDFREventFilter.plugin\/Contents\/MacOS\/IOHIDDFREventFilter",
    "name" : "IOHIDDFREventFilter",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4470824960,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.iokit.hid.IOHIDNXEventTranslatorSessionFilter",
    "size" : 40960,
    "uuid" : "f8ac9205-8444-38a7-bf94-40dbdd4a549d",
    "path" : "\/System\/Library\/HIDPlugins\/IOHIDNXEventTranslatorSessionFilter.plugin\/Contents\/MacOS\/IOHIDNXEventTranslatorSessionFilter",
    "name" : "IOHIDNXEventTranslatorSessionFilter",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4490887168,
    "size" : 7548928,
    "uuid" : "61cc895f-e1b3-3e29-b534-2dc194bcd120",
    "path" : "\/System\/Library\/PrivateFrameworks\/SkyLight.framework\/Versions\/A\/Resources\/CursorAsset",
    "name" : "CursorAsset"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4469907456,
    "size" : 8192,
    "uuid" : "c773313a-946c-388e-9dc4-0882958f91eb",
    "path" : "\/System\/Library\/PrivateFrameworks\/SkyLight.framework\/Versions\/A\/Resources\/WindowServer",
    "name" : "WindowServer"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703406747648,
    "size" : 241656,
    "uuid" : "13597eeb-2ea0-3d48-8be1-dfc4872a784b",
    "path" : "\/usr\/lib\/system\/libsystem_kernel.dylib",
    "name" : "libsystem_kernel.dylib"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703406989312,
    "size" : 49144,
    "uuid" : "25b2f3eb-07b4-3cb9-9457-2c26210c27c8",
    "path" : "\/usr\/lib\/system\/libsystem_pthread.dylib",
    "name" : "libsystem_pthread.dylib"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703405596672,
    "size" : 557048,
    "uuid" : "93fb3816-608b-33af-83d2-209b4bd673ad",
    "path" : "\/usr\/lib\/system\/libsystem_c.dylib",
    "name" : "libsystem_c.dylib"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703498067968,
    "CFBundleShortVersionString" : "1.600.0",
    "CFBundleIdentifier" : "com.apple.SkyLight",
    "size" : 4595703,
    "uuid" : "c85f48c7-7d13-316b-a28b-cfbd2693b663",
    "path" : "\/System\/Library\/PrivateFrameworks\/SkyLight.framework\/Versions\/A\/SkyLight",
    "name" : "SkyLight"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703403270144,
    "size" : 592800,
    "uuid" : "baa6f02e-dff3-3562-8c99-ea2820c91ad9",
    "path" : "\/usr\/lib\/dyld",
    "name" : "dyld"
  },
  {
    "size" : 0,
    "source" : "A",
    "base" : 0,
    "uuid" : "00000000-0000-0000-0000-000000000000"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703548297216,
    "CFBundleShortVersionString" : "1.11",
    "CFBundleIdentifier" : "com.apple.QuartzCore",
    "size" : 3715072,
    "uuid" : "b3dd1f86-a396-3916-ab37-c0a98d3f4315",
    "path" : "\/System\/Library\/Frameworks\/QuartzCore.framework\/Versions\/A\/QuartzCore",
    "name" : "QuartzCore",
    "CFBundleVersion" : "1120.32"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703438684160,
    "CFBundleShortVersionString" : "285",
    "CFBundleIdentifier" : "com.apple.CoreDisplay",
    "size" : 1236982,
    "uuid" : "7a0d9348-7182-3379-bdcb-fe4f9753e4dd",
    "path" : "\/System\/Library\/Frameworks\/CoreDisplay.framework\/Versions\/A\/CoreDisplay",
    "name" : "CoreDisplay",
    "CFBundleVersion" : "285"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703405293568,
    "size" : 290802,
    "uuid" : "511b909b-7a60-3295-9981-a508477c7893",
    "path" : "\/usr\/lib\/system\/libdispatch.dylib",
    "name" : "libdispatch.dylib"
  },
  {
    "source" : "P",
    "arch" : "x86_64h",
    "base" : 140703407411200,
    "CFBundleShortVersionString" : "6.9",
    "CFBundleIdentifier" : "com.apple.CoreFoundation",
    "size" : 4829181,
    "uuid" : "59d4644f-7aa6-3767-80ab-73d7a388a4ff",
    "path" : "\/System\/Library\/Frameworks\/CoreFoundation.framework\/Versions\/A\/CoreFoundation",
    "name" : "CoreFoundation",
    "CFBundleVersion" : "2503.1"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703463522304,
    "CFBundleShortVersionString" : "2.0.2",
    "CFBundleIdentifier" : "com.apple.framework.IOKit",
    "size" : 802816,
    "uuid" : "76d5c2fb-dc12-30a4-ac09-e388c1df9a3a",
    "path" : "\/System\/Library\/Frameworks\/IOKit.framework\/Versions\/A\/IOKit",
    "name" : "IOKit"
  }
],
  "sharedCache" : {
  "base" : 140703402573824,
  "size" : 25769803776,
  "uuid" : "b48cfc6b-b7ed-3343-97fb-f5187dc04df8"
},
  "vmSummary" : "ReadOnly portion of Libraries: Total=466.2M resident=0K(0%) swapped_out_or_unallocated=466.2M(100%)\nWritable regions: Total=2.3G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=2.3G(100%)\n\n                                VIRTUAL   REGION \nREGION TYPE                        SIZE    COUNT (non-coalesced) \n===========                     =======  ======= \nActivity Tracing                   256K        1 \nCG backing stores                   36K        9 \nCG framebuffers                    1.1G       10 \nCG framebuffers (reserved)       596.1M        9         reserved VM address space (unallocated)\nCG raster data                      12K        1 \nColorSync                          248K       31 \nCoreAnimation                     46.8M      447 \nCoreGraphics                         8K        2 \nKernel Alloc Once                    8K        1 \nMALLOC                           608.1M       81 \nMALLOC guard page                   32K        8 \nMach message                       756K       22 \nSTACK GUARD                       56.1M       14 \nStack                             15.1M       14 \nVM_ALLOCATE                       15.7M      159 \nVM_ALLOCATE (reserved)             232K       32         reserved VM address space (unallocated)\n__CGSERVER                           4K        1 \n__DATA                            18.6M      375 \n__DATA_CONST                      16.7M      247 \n__DATA_DIRTY                       660K      114 \n__FONT_DATA                        2352        1 \n__LINKEDIT                       181.1M       24 \n__OBJC_RO                         71.8M        1 \n__OBJC_RW                         2200K        2 \n__SLSERVER                           4K        1 \n__TEXT                           285.0M      400 \ndyld private memory                260K        2 \nmapped file                       49.8M       10 \nshared memory                     1028K       32 \n===========                     =======  ======= \nTOTAL                              3.1G     2051 \nTOTAL, minus reserved VM space     2.5G     2051 \n",
  "legacyInfo" : {
  "threadTriggered" : {
    "name" : "ws_main_thread",
    "queue" : "com.apple.main-thread"
  }
},
  "logWritingSignature" : "6d4784914e486420dfd97fbeb747ef18ce931ea5"
}

Model: MacBookAir8,2, BootROM 2022.100.22.0.0 (iBridge: 21.16.5077.0.0,0), 2 processors, Dual-Core Intel Core i5, 1,6 GHz, 16 GB, SMC 
Graphics: Intel UHD Graphics 617, Intel UHD Graphics 617, Built-In
Display: Color LCD, 2560 x 1600 Retina, Main, MirrorOff, Online
Memory Module: BANK 0/DIMM0, 8 GB, LPDDR3, 2133 MHz, 0x80AD, 0x483943434E4E4E4641474D4C4C522D4E5644
Memory Module: BANK 1/DIMM0, 8 GB, LPDDR3, 2133 MHz, 0x80AD, 0x483943434E4E4E4641474D4C4C522D4E5644
AirPort: spairport_wireless_card_type_wifi (0x14E4, 0x843), wl0: Jul  8 2023 17:49:51 version 9.30.503.0.32.5.87 FWID 01-e74b9cb0
AirPort: 
Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
USB Device: USB30Bus
USB Device: T2Bus
USB Device: Apple Internal Keyboard / Trackpad
USB Device: Headset
USB Device: Ambient Light Sensor
USB Device: FaceTime HD Camera (Built-in)
USB Device: Apple T2 Controller
Thunderbolt Bus: MacBook Air, Apple Inc., 47.5

Issue was that I was setting the kiosk mode behaviour to the window of my application. Apparently an assert call is present for this on 14.5

Assessment mode crashes WindowServer on 14.5 sonoma intel 2019
 
 
Q