Skip to content

Causes breakpoint crashes when adding response or error to closure #33

@vapidinfinity

Description

@vapidinfinity

As the title suggests, when IGDB-SWIFT-API attempts to add response or error data back to the closure it was called from, it initiates a SIGTRAP on the application.
I am using macOS 26.1, on Swift version 6.0

Here's the snippet that was causing the error in my scenario

func games(apiCalypse: APICalypse, result: @escaping ([Proto_Game]) -> (Void), errorResponse: @escaping (RequestException) -> (Void)) {
        apiProtoRequest(endpoint: .GAMES, apicalypseQuery: apiCalypse.buildQuery(), dataResponse: { bytes -> (Void) in
            let objects = try! Proto_GameResult(serializedBytes: bytes).games
            result(objects) // ‼️ issue occurs here
        }, errorResponse: errorResponse) // ‼️ issue also occurs here
    }

And here's how it was called:

// obviously not the real tokens, but i can confirm my creds are functional
let wrapper: IGDBWrapper = .init(clientID: "x", accessToken: "y")

let query: APICalypse = .init()
    .search(searchQuery: "Rocket League")

// test
wrapper.games(apiCalypse: query, result: { games in
    print("game \(String(describing: games.first) ?? "what")")
}, errorResponse: { error in
    print("error happened lol: \(String(describing: error))")
})

The error is
Thread x: EXC_BREAKPOINT (code=1, subcode=0x104ae7bc4)
Note that there is no actual breakpoint, the error is instead caused by another catalyst for a trap
here are my logs.

Unable to upload files, so here's the translated report verbatim:

-------------------------------------
Translated Report (Full Report Below)
-------------------------------------
Process:             Mythic [62085]
Path:                /Users/USER/Library/Developer/Xcode/DerivedData/Mythic-cegnjodnmeyhfqehclmclizbotze/Build/Products/Debug/Mythic.app/Contents/MacOS/Mythic
Identifier:          xyz.blackxfiied.Mythic
Version:             0.5.0-dirty (3805)
Code Type:           ARM-64 (Native)
Role:                Default
Parent Process:      launchd [1]
Coalition:           xyz.blackxfiied.Mythic [24783]
User ID:             501

Date/Time:           2025-11-09 13:17:02.4952 +0800
Launch Time:         2025-11-09 13:16:59.4200 +0800
Hardware Model:      MacBookPro18,3
OS Version:          macOS 26.1 (25B78)
Release Type:        User

Crash Reporter Key:  631B85CA-BB89-6CE5-FBD6-EFCDE6A05378
Incident Identifier: 59CB15A7-E64E-4465-A124-19CBC2D2CE6A

Sleep/Wake UUID:       33FB1BA2-590A-4450-BD29-7CD88F34505E

Time Awake Since Boot: 130000 seconds
Time Since Wake:       5255 seconds

System Integrity Protection: enabled

Triggered by Thread: 6, Dispatch Queue: com.apple.NSURLSession-delegate

Exception Type:    EXC_BREAKPOINT (SIGTRAP)
Exception Codes:   0x0000000000000001, 0x00000001908d05c0

Termination Reason:  Namespace SIGNAL, Code 5, Trace/BPT trap: 5
Terminating Process: exc handler [62085]


Thread 0::  Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib        	       0x190a46c34 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x190a59028 mach_msg2_internal + 76
2   libsystem_kernel.dylib        	       0x190a4f98c mach_msg_overwrite + 484
3   libsystem_kernel.dylib        	       0x190a46fb4 mach_msg + 24
4   CoreFoundation                	       0x190b28b90 __CFRunLoopServiceMachPort + 160
5   CoreFoundation                	       0x190b274e8 __CFRunLoopRun + 1188
6   CoreFoundation                	       0x190be135c _CFRunLoopRunSpecificWithOptions + 532
7   HIToolbox                     	       0x19d5e4768 RunCurrentEventLoopInMode + 316
8   HIToolbox                     	       0x19d5e7a90 ReceiveNextEventCommon + 488
9   HIToolbox                     	       0x19d771308 _BlockUntilNextEventMatchingListInMode + 48
10  AppKit                        	       0x1954383c0 _DPSBlockUntilNextEventMatchingListInMode + 236
11  AppKit                        	       0x194f31e34 _DPSNextEvent + 588
12  AppKit                        	       0x1959fff44 -[NSApplication(NSEventRouting) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 688
13  AppKit                        	       0x1959ffc50 -[NSApplication(NSEventRouting) nextEventMatchingMask:untilDate:inMode:dequeue:] + 72
14  AppKit                        	       0x194f2a780 -[NSApplication run] + 368
15  AppKit                        	       0x194f166dc NSApplicationMain + 880
16  SwiftUI                       	       0x1c46c2110 specialized runApp(_:) + 168
17  SwiftUI                       	       0x1c4a7b2b0 runApp<A>(_:) + 112
18  SwiftUI                       	       0x1c4d44d54 static App.main() + 224
19  ???                           	       0x3810a7604 ???
20  ???                           	       0x3810a7e48 ???
21  Mythic                        	       0x104f31440 __debug_blank_executor_run_user_entry_point + 148
22  PreviewsInjection             	       0x26b533e08 0x26b500000 + 212488
23  PreviewsInjection             	       0x26b534c20 0x26b500000 + 216096
24  PreviewsInjection             	       0x26b534ae4 __previews_injection_run_user_entrypoint + 16
25  XOJITExecutor                 	       0x283e858e4 __xojit_executor_run_program_wrapper + 1464
26  XOJITExecutor                 	       0x283e81998 0x283e7f000 + 10648
27  PreviewsInjection             	       0x26b534a18 0x26b500000 + 215576
28  Mythic                        	       0x104f30c10 __debug_blank_executor_main + 992
29  dyld                          	       0x1906c1d54 start + 7184

Thread 1::  Dispatch queue: com.apple.xojit_executor.wrapper_functions
0   libsystem_kernel.dylib        	       0x190a46bb0 semaphore_wait_trap + 8
1   libdispatch.dylib             	       0x1908ce990 _dispatch_sema4_wait + 28
2   libdispatch.dylib             	       0x1908cef40 _dispatch_semaphore_wait_slow + 132
3   XOJITExecutor                 	       0x283e81a4c 0x283e7f000 + 10828
4   XOJITExecutor                 	       0x283e8525c __xojit_executor_run_program_on_main_thread + 252
5   XOJITExecutor                 	       0x283e83380 0x283e7f000 + 17280
6   XOJITExecutor                 	       0x283e83098 0x283e7f000 + 16536
7   libdispatch.dylib             	       0x1908ccb5c _dispatch_call_block_and_release + 32
8   libdispatch.dylib             	       0x1908e6ac4 _dispatch_client_callout + 16
9   libdispatch.dylib             	       0x1908d1768 _dispatch_continuation_pop + 728
10  libdispatch.dylib             	       0x1908d0d58 _dispatch_async_redirect_invoke + 580
11  libdispatch.dylib             	       0x1908defc8 _dispatch_root_queue_drain + 364
12  libdispatch.dylib             	       0x1908df784 _dispatch_worker_thread2 + 180
13  libsystem_pthread.dylib       	       0x190a85e10 _pthread_wqthread + 232
14  libsystem_pthread.dylib       	       0x190a84b9c start_wqthread + 8

Thread 2::  Dispatch queue: com.apple.root.utility-qos.cooperative
0   libsystem_kernel.dylib        	       0x190a47908 read + 8
1   Foundation                    	       0x1923280f4 _NSReadFromFileDescriptorWithProgress + 196
2   Foundation                    	       0x192cbd390 -[NSConcreteFileHandle readDataOfLength:] + 396
3   ???                           	       0x38111b2d8 ???
4   ???                           	       0x38111ba85 ???
5   ???                           	       0x380726209 ???
6   ???                           	       0x381121ce9 ???
7   libswift_Concurrency.dylib    	       0x28af2e7c1 completeTaskWithClosure(swift::AsyncContext*, swift::SwiftError*) + 1

Thread 3:

Thread 4:

Thread 5::  Dispatch queue: com.apple.network.connections
0   libsystem_kernel.dylib        	       0x190a54c74 __ulock_wait2 + 8
1   libsystem_platform.dylib      	       0x190a913c4 _os_unfair_lock_lock_slow + 176
2   libobjc.A.dylib               	       0x19063df0c lookUpImpOrForward + 160
3   libobjc.A.dylib               	       0x19063db84 _objc_msgSend_uncached + 68
4   libboringssl.dylib            	       0x196d21e98 boringssl_session_export_session_info + 348
5   libboringssl.dylib            	       0x196d01c54 __boringssl_session_update_metadata_block_invoke + 840
6   libboringssl.dylib            	       0x196d018e4 boringssl_session_update_metadata + 180
7   libboringssl.dylib            	       0x196d10f10 boringssl_context_new_session_handler + 520
8   libboringssl.dylib            	       0x196d1c648 bssl::tls13_process_new_session_ticket(ssl_st*, bssl::SSLMessage const&) + 124
9   libboringssl.dylib            	       0x196d1c378 ssl_do_post_handshake(ssl_st*, bssl::SSLMessage const&) + 48
10  libboringssl.dylib            	       0x196d13f6c ssl_read_impl(ssl_st*) + 424
11  libboringssl.dylib            	       0x196d13d7c SSL_peek + 96
12  libboringssl.dylib            	       0x196d13ae8 boringssl_session_read + 268
13  libboringssl.dylib            	       0x196d031b4 nw_boringssl_read + 272
14  libboringssl.dylib            	       0x196d0408c nw_protocol_boringssl_input_available + 320
15  Network                       	       0x199b7c674 nw_socket_update_input_source(nw_socket*) + 176
16  libdispatch.dylib             	       0x1908e6ac4 _dispatch_client_callout + 16
17  libdispatch.dylib             	       0x1908d16e4 _dispatch_continuation_pop + 596
18  libdispatch.dylib             	       0x1908e4800 _dispatch_source_latch_and_call + 396
19  libdispatch.dylib             	       0x1908e34d4 _dispatch_source_invoke + 844
20  libdispatch.dylib             	       0x1908d7308 _dispatch_workloop_invoke + 1612
21  libdispatch.dylib             	       0x1908e0474 _dispatch_root_queue_drain_deferred_wlh + 292
22  libdispatch.dylib             	       0x1908dfd6c _dispatch_workloop_worker_thread + 692
23  libsystem_pthread.dylib       	       0x190a85e4c _pthread_wqthread + 292
24  libsystem_pthread.dylib       	       0x190a84b9c start_wqthread + 8

Thread 6 Crashed::  Dispatch queue: com.apple.NSURLSession-delegate
0   libdispatch.dylib             	       0x1908d05c0 _dispatch_assert_queue_fail + 120
1   libdispatch.dylib             	       0x190902cc0 dispatch_assert_queue$V2.cold.1 + 116
2   libdispatch.dylib             	       0x1908d0544 dispatch_assert_queue + 108
3   libswift_Concurrency.dylib    	       0x28aec60a4 _swift_task_checkIsolatedSwift + 48
4   libswift_Concurrency.dylib    	       0x28af267b8 swift_task_isCurrentExecutorWithFlagsImpl(swift::SerialExecutorRef, swift::swift_task_is_current_executor_flag) + 356
5   ???                           	       0x38257610c ???
6   ???                           	       0x382466028 ???
7   ???                           	       0x38245bab4 ???
8   ???                           	       0x38245b0d4 ???
9   ???                           	       0x38245b2ac ???
10  CFNetwork                     	       0x196e73f1c __40-[__NSURLSessionLocal taskForClassInfo:]_block_invoke + 508
11  CFNetwork                     	       0x196e0eb38 __49-[__NSCFLocalSessionTask _task_onqueue_didFinish]_block_invoke_2 + 160
12  libdispatch.dylib             	       0x1908ccb5c _dispatch_call_block_and_release + 32
13  libdispatch.dylib             	       0x1908e6ac4 _dispatch_client_callout + 16
14  libdispatch.dylib             	       0x1908d54e8 _dispatch_lane_serial_drain + 740
15  libdispatch.dylib             	       0x1908d5ff8 _dispatch_lane_invoke + 440
16  libdispatch.dylib             	       0x1908e0474 _dispatch_root_queue_drain_deferred_wlh + 292
17  libdispatch.dylib             	       0x1908dfd6c _dispatch_workloop_worker_thread + 692
18  libsystem_pthread.dylib       	       0x190a85e4c _pthread_wqthread + 292
19  libsystem_pthread.dylib       	       0x190a84b9c start_wqthread + 8

Thread 7::  Dispatch queue: com.apple.root.utility-qos.cooperative
0   libsystem_kernel.dylib        	       0x190a47908 read + 8
1   Foundation                    	       0x1923280f4 _NSReadFromFileDescriptorWithProgress + 196
2   Foundation                    	       0x192cbd390 -[NSConcreteFileHandle readDataOfLength:] + 396
3   ???                           	       0x38111a4d0 ???
4   ???                           	       0x38111ac7d ???
5   ???                           	       0x380726209 ???
6   ???                           	       0x381121ce9 ???
7   libswift_Concurrency.dylib    	       0x28af2e7c1 completeTaskWithClosure(swift::AsyncContext*, swift::SwiftError*) + 1

Thread 8:: com.apple.NSEventThread
0   libsystem_kernel.dylib        	       0x190a46c34 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x190a59028 mach_msg2_internal + 76
2   libsystem_kernel.dylib        	       0x190a4f98c mach_msg_overwrite + 484
3   libsystem_kernel.dylib        	       0x190a46fb4 mach_msg + 24
4   CoreFoundation                	       0x190b28b90 __CFRunLoopServiceMachPort + 160
5   CoreFoundation                	       0x190b274e8 __CFRunLoopRun + 1188
6   CoreFoundation                	       0x190be135c _CFRunLoopRunSpecificWithOptions + 532
7   AppKit                        	       0x194fc1cb4 _NSEventThread + 184
8   libsystem_pthread.dylib       	       0x190a89c08 _pthread_start + 136
9   libsystem_pthread.dylib       	       0x190a84ba8 thread_start + 8

Thread 9::  Dispatch queue: com.apple.root.utility-qos.cooperative
0   libsystem_kernel.dylib        	       0x190a47908 read + 8
1   Foundation                    	       0x1923280f4 _NSReadFromFileDescriptorWithProgress + 196
2   Foundation                    	       0x192cbd390 -[NSConcreteFileHandle readDataOfLength:] + 396
3   ???                           	       0x38111b2d8 ???
4   ???                           	       0x38111ba85 ???
5   ???                           	       0x380726209 ???
6   ???                           	       0x381121ce9 ???
7   libswift_Concurrency.dylib    	       0x28af2e7c1 completeTaskWithClosure(swift::AsyncContext*, swift::SwiftError*) + 1

Thread 10::  Dispatch queue: com.apple.root.utility-qos.cooperative
0   libsystem_kernel.dylib        	       0x190a47908 read + 8
1   Foundation                    	       0x1923280f4 _NSReadFromFileDescriptorWithProgress + 196
2   Foundation                    	       0x192cbd390 -[NSConcreteFileHandle readDataOfLength:] + 396
3   ???                           	       0x38111a4d0 ???
4   ???                           	       0x38111ac7d ???
5   ???                           	       0x380726209 ???
6   ???                           	       0x381121ce9 ???
7   libswift_Concurrency.dylib    	       0x28af2e7c1 completeTaskWithClosure(swift::AsyncContext*, swift::SwiftError*) + 1

Thread 11:

Thread 12:

Thread 13:

Thread 14:: com.google.firebase.crashlytics.MachExceptionServer
0   libsystem_kernel.dylib        	       0x190a4a820 write + 8
1   libLogRedirect.dylib          	       0x104f98b64 LogRedirectWrite + 208
2   ???                           	       0x381550480 ???
3   ???                           	       0x38154c688 ???
4   ???                           	       0x38154c158 ???
5   libsystem_pthread.dylib       	       0x190a89c08 _pthread_start + 136
6   libsystem_pthread.dylib       	       0x190a84ba8 thread_start + 8

Thread 15::  Dispatch queue: com.apple.CFNetwork.CacheDB-write
0   libobjc.A.dylib               	       0x19063acf0 getMethodNoSuper_nolock(objc_class*, objc_selector*) + 520
1   libobjc.A.dylib               	       0x19063e010 lookUpImpOrForward + 420
2   libobjc.A.dylib               	       0x19063db84 _objc_msgSend_uncached + 68
3   RunningBoardServices          	       0x198ce015c _RBSXPCEncodeObjectForKey + 120
4   RunningBoardServices          	       0x198ce0094 -[RBSXPCCoder encodeObject:forKey:] + 92
5   RunningBoardServices          	       0x198cfe05c -[RBSAssertionDescriptor encodeWithRBSXPCCoder:] + 172
6   RunningBoardServices          	       0x198ce1c28 ___RBSXPCEncodeObjectForKey_block_invoke.171 + 52
7   RunningBoardServices          	       0x198ce1868 _BSXPCEncodeDictionaryWithKey + 220
8   RunningBoardServices          	       0x198ce062c _RBSXPCEncodeObjectForKey + 1352
9   RunningBoardServices          	       0x198ce0094 -[RBSXPCCoder encodeObject:forKey:] + 92
10  RunningBoardServices          	       0x198d07470 __44+[RBSXPCMessage messageForMethod:arguments:]_block_invoke + 92
11  RunningBoardServices          	       0x198d072dc +[RBSXPCMessage messageWithEncoder:] + 80
12  RunningBoardServices          	       0x198d073b8 +[RBSXPCMessage messageForMethod:arguments:] + 180
13  RunningBoardServices          	       0x198d075dc +[RBSXPCMessage messageForMethod:varguments:] + 164
14  RunningBoardServices          	       0x198ceb34c -[RBSConnection acquireAssertion:error:] + 208
15  RunningBoardServices          	       0x198ce931c -[RBSAssertion acquireWithError:] + 180
16  CFNetwork                     	       0x196eb9884 __retainStorageAssertion + 188
17  CFNetwork                     	       0x196ebf700 invocation function for block in __CFURLCache::CreateAndStoreCacheNode(__CFURLCacheNode*, _CFCachedURLResponse const*, __CFString const*, _CFURLRequest const*, void const*, bool, bool&) + 196
18  libdispatch.dylib             	       0x1908dc4d0 _dispatch_block_async_invoke2 + 148
19  libdispatch.dylib             	       0x1908e6ac4 _dispatch_client_callout + 16
20  libdispatch.dylib             	       0x1908d54e8 _dispatch_lane_serial_drain + 740
21  libdispatch.dylib             	       0x1908d5ff8 _dispatch_lane_invoke + 440
22  libdispatch.dylib             	       0x1908e0474 _dispatch_root_queue_drain_deferred_wlh + 292
23  libdispatch.dylib             	       0x1908dfd6c _dispatch_workloop_worker_thread + 692
24  libsystem_pthread.dylib       	       0x190a85e4c _pthread_wqthread + 292
25  libsystem_pthread.dylib       	       0x190a84b9c start_wqthread + 8

Thread 16:: com.apple.NSURLConnectionLoader
0   libsystem_kernel.dylib        	       0x190a46c34 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x190a59028 mach_msg2_internal + 76
2   libsystem_kernel.dylib        	       0x190a4f98c mach_msg_overwrite + 484
3   libsystem_kernel.dylib        	       0x190a46fb4 mach_msg + 24
4   CoreFoundation                	       0x190b28b90 __CFRunLoopServiceMachPort + 160
5   CoreFoundation                	       0x190b274e8 __CFRunLoopRun + 1188
6   CoreFoundation                	       0x190be135c _CFRunLoopRunSpecificWithOptions + 532
7   CFNetwork                     	       0x19700aff8 +[__CFN_CoreSchedulingSetRunnable _run:] + 416
8   Foundation                    	       0x1923397a0 __NSThread__start__ + 732
9   libsystem_pthread.dylib       	       0x190a89c08 _pthread_start + 136
10  libsystem_pthread.dylib       	       0x190a84ba8 thread_start + 8


Thread 6 crashed with ARM Thread State (64-bit):
    x0: 0xffffffffb0000000   x1: 0x0000000000000060   x2: 0xfffff0007fc00000   x3: 0x0000000000000001
    x4: 0x00000004ea027180   x5: 0x0000000000000000   x6: 0x0068637461707369   x7: 0x00000004ea027100
    x8: 0x00000001fb355000   x9: 0x000000007fbf0cef  x10: 0x0000000000000000  x11: 0x0000000000000000
   x12: 0x0044a2248040f310  x13: 0x004491e90040eb20  x14: 0x000000000000f000  x15: 0x000000000000002b
   x16: 0x952d0004ea027100  x17: 0x00000004491e9320  x18: 0x0000000000000000  x19: 0x00000004ea027180
   x20: 0x00000001057888c0  x21: 0x0000000000000000  x22: 0x0000000c26ab0060  x23: 0x0000000000000000
   x24: 0x0000000c26db0780  x25: 0x0000000c26a43f80  x26: 0x0000000000000000  x27: 0x0000000c2767e038
   x28: 0x0000000000000114   fp: 0x000000016b211eb0   lr: 0x00000001908d05b8
    sp: 0x000000016b211e70   pc: 0x00000001908d05c0 cpsr: 0x00001000
   far: 0x0000000000000000  esr: 0xf2000001 (Breakpoint) brk 1

Binary Images:
       0x104f30000 -        0x104f33fff xyz.blackxfiied.Mythic (0.5.0-dirty) <57680293-7c10-321e-8367-3c654a9ac9b2> /Users/USER/Library/Developer/Xcode/DerivedData/Mythic-cegnjodnmeyhfqehclmclizbotze/Build/Products/Debug/Mythic.app/Contents/MacOS/Mythic
       0x104f54000 -        0x104f57fff __preview.dylib (*) <7740fda8-e4c6-3254-9aa7-e930779f9f80> /Users/USER/Library/Developer/Xcode/DerivedData/Mythic-cegnjodnmeyhfqehclmclizbotze/Build/Products/Debug/Mythic.app/Contents/MacOS/__preview.dylib
       0x104f98000 -        0x104f9bfff libLogRedirect.dylib (*) <55755607-4e58-3649-8535-34880d1fdda8> /Applications/Xcode.app/Contents/Developer/usr/lib/libLogRedirect.dylib
       0x1050b0000 -        0x1050dffff libLiveExecutionResultsLogger.dylib (*) <6146132a-9d69-3443-9448-6cbda2a96f2e> /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libLiveExecutionResultsLogger.dylib
       0x10510c000 -        0x10512bfff libPlaygrounds.dylib (*) <37bf6b95-91f6-379a-b0f2-60a7612d8a67> /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libPlaygrounds.dylib
       0x10502c000 -        0x105073fff org.sparkle-project.Sparkle (2.8.0) <8f886ac7-3842-3b7f-bbf2-c56ffa529f6e> /Users/USER/Library/Developer/Xcode/DerivedData/Mythic-cegnjodnmeyhfqehclmclizbotze/Build/Products/Debug/Sparkle.framework/Versions/B/Sparkle
       0x10519c000 -        0x1051a7fff libobjc-trampolines.dylib (*) <f8bd9069-8c4f-37ea-af9a-2b1060f54e4f> /usr/lib/libobjc-trampolines.dylib
       0x1181ec000 -        0x11893bfff com.apple.AGXMetalG13X (341.11) <f4b41620-c555-31a5-ae52-eca9b80bf0d8> /System/Library/Extensions/AGXMetalG13X.bundle/Contents/MacOS/AGXMetalG13X
       0x190a46000 -        0x190a8249f libsystem_kernel.dylib (*) <9fe7c84d-0c2b-363f-bee5-6fd76d67a227> /usr/lib/system/libsystem_kernel.dylib
       0x190ac9000 -        0x19100fabf com.apple.CoreFoundation (6.9) <3c4a3add-9e48-33da-82ee-80520e6cbe3b> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
       0x19d523000 -        0x19d8257ff com.apple.HIToolbox (2.1.1) <9ab64c08-0685-3a0d-9a7e-83e7a1e9ebb4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
       0x194f12000 -        0x19663eb9f com.apple.AppKit (6.9) <3c0949bb-e361-369a-80b7-17440eb09e98> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
       0x1c45b1000 -        0x1c5cf05bf com.apple.SwiftUI (7.1.13.1.401) <6a83fd25-8f6d-3773-9285-cea41ce49fb5> /System/Library/Frameworks/SwiftUI.framework/Versions/A/SwiftUI
               0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ???
       0x26b500000 -        0x26b5984ff com.apple.dt.PreviewsInjection (16.0) <260ddbb5-171c-3898-a782-01ff1cc9e249> /System/Library/PrivateFrameworks/PreviewsInjection.framework/Versions/A/PreviewsInjection
       0x283e7f000 -        0x283e8d262 com.apple.xojit.XOJITExecutor (1.0) <e60db654-1525-31d7-b100-b780238da27c> /System/Library/PrivateFrameworks/XOJITExecutor.framework/Versions/A/XOJITExecutor
       0x1906b9000 -        0x190757f63 dyld (*) <b50f5a1a-be81-3068-92e1-3554f2be478a> /usr/lib/dyld
       0x1908cb000 -        0x190911e9f libdispatch.dylib (*) <8fb392ae-401f-399a-96ae-41531cf91162> /usr/lib/system/libdispatch.dylib
       0x190a83000 -        0x190a8fabb libsystem_pthread.dylib (*) <e95973b8-824c-361e-adf4-390747c40897> /usr/lib/system/libsystem_pthread.dylib
       0x192313000 -        0x1932b625f com.apple.Foundation (6.9) <00467f1f-216a-36fe-8587-c820c7e0437d> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
       0x28aec1000 -        0x28af4abdf libswift_Concurrency.dylib (*) <1a4607f2-13d0-3c00-8cce-f3298da11e60> /usr/lib/swift/libswift_Concurrency.dylib
       0x190a90000 -        0x190a983bf libsystem_platform.dylib (*) <530fc11d-a495-375d-b2b9-81ae3e701781> /usr/lib/system/libsystem_platform.dylib
       0x190634000 -        0x19068748b libobjc.A.dylib (*) <5a0aab4e-0c1a-3680-82c9-43dc4007a6e7> /usr/lib/libobjc.A.dylib
       0x196cec000 -        0x196dbf7bf libboringssl.dylib (*) <6d01fe0c-fd6e-3cca-b625-fec25021fc88> /usr/lib/libboringssl.dylib
       0x198dc8000 -        0x19a26795f com.apple.Network (1.0) <080c14db-f00b-3de1-8169-ea5faf2d3dcc> /System/Library/Frameworks/Network.framework/Versions/A/Network
       0x196dc0000 -        0x19717a1ff com.apple.CFNetwork (1.0) <4e62d7e8-e33e-3586-866a-5b6657b8e190> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
       0x190758000 -        0x19075b1d0 libsystem_blocks.dylib (*) <f17000b3-f871-3590-b604-7c4a13eae01c> /usr/lib/system/libsystem_blocks.dylib
       0x198ccd000 -        0x198d380ff com.apple.RunningBoardServices (1.0) <29c88625-ca2e-3361-bb1f-027a64b3ee5d> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices
       0x19663f000 -        0x1967f943f com.apple.UIFoundation (1.0) <e2eaef66-f483-3dfd-bdf0-5044bbb73170> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation

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: 29
    thread_create: 0
    thread_set_state: 2056

VM Region Summary:
ReadOnly portion of Libraries: Total=1.9G resident=0K(0%) swapped_out_or_unallocated=1.9G(100%)
Writable regions: Total=192.0M written=626K(0%) resident=626K(0%) swapped_out=0K(0%) unallocated=191.4M(100%)

                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Accelerate framework               128K        1 
Activity Tracing                   256K        1 
AttributeGraph Data               1024K        1 
ColorSync                           16K        1 
CoreAnimation                      288K       17 
CoreGraphics                        48K        3 
CoreServices                        64K        1 
CoreUI image data                  320K        3 
Foundation                          16K        1 
Kernel Alloc Once                   32K        1 
MALLOC                           152.3M       34 
MALLOC guard page                 3968K        4 
Mach message                        16K        1 
Memory Tag 241                      16K        1 
SQLite page cache                  896K        7 
STACK GUARD                       56.2M       16 
Stack                             16.0M       17 
VM_ALLOCATE                        3.0G       12 
__AUTH                            6210K      697 
__AUTH_CONST                      92.2M     1087 
__CTF                               824        1 
__DATA                            33.7M     1038 
__DATA_CONST                      33.0M     1098 
__DATA_DIRTY                      9390K      915 
__FONT_DATA                        2352        1 
__INFO_FILTER                         8        1 
__LINKEDIT                       594.0M        9 
__OBJC_RO                         78.3M        1 
__OBJC_RW                         2567K        1 
__TEXT                             1.3G     1127 
__TEXT (network)                   288K        1 
__TPRO_CONST                       128K        2 
mapped file                      268.0M      712 
page table in kernel               626K        1 
shared memory                     20.7M      503 
===========                     =======  ======= 
TOTAL                              5.6G     7317 

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions