Swift3中dispatch_once废弃的解决办法

本文介绍Swift3中实现单例模式的方法,包括使用全局常量、带立即执行闭包初始化器的全局变量及类中的静态属性等,并提供了一个具体的单例实现示例。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Swift中如果想搞类的单例模式,那么在初始化的时候一般会使用just one time执行的方式,我们使用dispatch_once_t配合调用dispatch_once方法,一般的代码如下:

<code class="hljs php has-numbering" style="display: block; padding: 0px; background: transparent; color: inherit; box-sizing: border-box; font-family: "Source Code Pro", monospace;font-size:undefined; white-space: pre; border-radius: 0px; word-wrap: normal;"><span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">static</span> <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">var</span> token: dispatch_once_t = <span class="hljs-number" style="color: rgb(0, 102, 102); box-sizing: border-box;">0</span>
func whatDoYouHear() {
    <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">print</span>(<span class="hljs-string" style="color: rgb(0, 136, 0); box-sizing: border-box;">"All of this has happened before, and all of it will happen again."</span>)
    dispatch_once(&token) {
        <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">print</span>(<span class="hljs-string" style="color: rgb(0, 136, 0); box-sizing: border-box;">"Except this part."</span>)
    }
}</code><ul class="pre-numbering" style="box-sizing: border-box; position: absolute; width: 50px; background-color: rgb(238, 238, 238); top: 0px; left: 0px; margin: 0px; padding: 6px 0px 40px; border-right: 1px solid rgb(221, 221, 221); list-style: none; text-align: right;"><li style="box-sizing: border-box; padding: 0px 5px;">1</li><li style="box-sizing: border-box; padding: 0px 5px;">2</li><li style="box-sizing: border-box; padding: 0px 5px;">3</li><li style="box-sizing: border-box; padding: 0px 5px;">4</li><li style="box-sizing: border-box; padding: 0px 5px;">5</li><li style="box-sizing: border-box; padding: 0px 5px;">6</li><li style="box-sizing: border-box; padding: 0px 5px;">7</li></ul><ul class="pre-numbering" style="box-sizing: border-box; position: absolute; width: 50px; background-color: rgb(238, 238, 238); top: 0px; left: 0px; margin: 0px; padding: 6px 0px 40px; border-right: 1px solid rgb(221, 221, 221); list-style: none; text-align: right;"><li style="box-sizing: border-box; padding: 0px 5px;">1</li><li style="box-sizing: border-box; padding: 0px 5px;">2</li><li style="box-sizing: border-box; padding: 0px 5px;">3</li><li style="box-sizing: border-box; padding: 0px 5px;">4</li><li style="box-sizing: border-box; padding: 0px 5px;">5</li><li style="box-sizing: border-box; padding: 0px 5px;">6</li><li style="box-sizing: border-box; padding: 0px 5px;">7</li></ul>

不过在Swift3中会提示此法行不通,dispatch_xxx已废弃,use lazily initialized globals instead.

原来自从swift 1.x开始swift就已经开始用dispatch_one机制在后台支持线程安全的全局lazy初始化和静态属性.所以static var背后已经在使用dispatch_once了.网友的解释是:

<code class="hljs applescript has-numbering" style="display: block; padding: 0px; background: transparent; color: inherit; box-sizing: border-box; font-family: "Source Code Pro", monospace;font-size:undefined; white-space: pre; border-radius: 0px; word-wrap: normal;">So <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">the</span> static var <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">above</span> was already using dispatch_once, which makes <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">it</span> sort <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">of</span> weird (<span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">and</span> possibly problematic <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">to</span> use <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">it</span> again <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">as</span> a token <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">for</span> another dispatch_once. In fact there's really no safe way <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">to</span> use dispatch_once <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">without</span> this kind <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">of</span> recursion, so they got rid <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">of</span> <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">it</span>. Instead, just use <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">the</span> language features built <span class="hljs-function_start" style="box-sizing: border-box;"><span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">on</span></span> <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">it</span></code><ul class="pre-numbering" style="box-sizing: border-box; position: absolute; width: 50px; background-color: rgb(238, 238, 238); top: 0px; left: 0px; margin: 0px; padding: 6px 0px 40px; border-right: 1px solid rgb(221, 221, 221); list-style: none; text-align: right;"><li style="box-sizing: border-box; padding: 0px 5px;">1</li></ul><ul class="pre-numbering" style="box-sizing: border-box; position: absolute; width: 50px; background-color: rgb(238, 238, 238); top: 0px; left: 0px; margin: 0px; padding: 6px 0px 40px; border-right: 1px solid rgb(221, 221, 221); list-style: none; text-align: right;"><li style="box-sizing: border-box; padding: 0px 5px;">1</li></ul>

所以现在的swift3中干脆把dispatch_once显式的取消了.

我们再Swift3中若要想实现原来dispatch_once的机制可以用以下几种办法:

1.使用全局常量

<code class="hljs bash has-numbering" style="display: block; padding: 0px; background: transparent; color: inherit; box-sizing: border-box; font-family: "Source Code Pro", monospace;font-size:undefined; white-space: pre; border-radius: 0px; word-wrap: normal;"><span class="hljs-built_in" style="color: rgb(102, 0, 102); box-sizing: border-box;">let</span> foo = SomeClass()</code><ul class="pre-numbering" style="box-sizing: border-box; position: absolute; width: 50px; background-color: rgb(238, 238, 238); top: 0px; left: 0px; margin: 0px; padding: 6px 0px 40px; border-right: 1px solid rgb(221, 221, 221); list-style: none; text-align: right;"><li style="box-sizing: border-box; padding: 0px 5px;">1</li></ul><ul class="pre-numbering" style="box-sizing: border-box; position: absolute; width: 50px; background-color: rgb(238, 238, 238); top: 0px; left: 0px; margin: 0px; padding: 6px 0px 40px; border-right: 1px solid rgb(221, 221, 221); list-style: none; text-align: right;"><li style="box-sizing: border-box; padding: 0px 5px;">1</li></ul>

2.带立即执行闭包初始化器的全局变量:

<code class="hljs cs has-numbering" style="display: block; padding: 0px; background: transparent; color: inherit; box-sizing: border-box; font-family: "Source Code Pro", monospace;font-size:undefined; white-space: pre; border-radius: 0px; word-wrap: normal;"><span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">var</span> bar: SomeClass = {
    <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">let</span> b = SomeClass()
    b.someProperty = <span class="hljs-string" style="color: rgb(0, 136, 0); box-sizing: border-box;">"whatever"</span>
    b.doSomeStuff()
    <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">return</span> b
}()</code><ul class="pre-numbering" style="box-sizing: border-box; position: absolute; width: 50px; background-color: rgb(238, 238, 238); top: 0px; left: 0px; margin: 0px; padding: 6px 0px 40px; border-right: 1px solid rgb(221, 221, 221); list-style: none; text-align: right;"><li style="box-sizing: border-box; padding: 0px 5px;">1</li><li style="box-sizing: border-box; padding: 0px 5px;">2</li><li style="box-sizing: border-box; padding: 0px 5px;">3</li><li style="box-sizing: border-box; padding: 0px 5px;">4</li><li style="box-sizing: border-box; padding: 0px 5px;">5</li><li style="box-sizing: border-box; padding: 0px 5px;">6</li></ul><ul class="pre-numbering" style="box-sizing: border-box; position: absolute; width: 50px; background-color: rgb(238, 238, 238); top: 0px; left: 0px; margin: 0px; padding: 6px 0px 40px; border-right: 1px solid rgb(221, 221, 221); list-style: none; text-align: right;"><li style="box-sizing: border-box; padding: 0px 5px;">1</li><li style="box-sizing: border-box; padding: 0px 5px;">2</li><li style="box-sizing: border-box; padding: 0px 5px;">3</li><li style="box-sizing: border-box; padding: 0px 5px;">4</li><li style="box-sizing: border-box; padding: 0px 5px;">5</li><li style="box-sizing: border-box; padding: 0px 5px;">6</li></ul>

3.类,结构,枚举中的静态属性:

<code class="hljs php has-numbering" style="display: block; padding: 0px; background: transparent; color: inherit; box-sizing: border-box; font-family: "Source Code Pro", monospace;font-size:undefined; white-space: pre; border-radius: 0px; word-wrap: normal;"><span class="hljs-class" style="box-sizing: border-box;"><span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">class</span> <span class="hljs-title" style="box-sizing: border-box; color: rgb(102, 0, 102);">MyClass</span> {</span>
    <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">static</span> let singleton = MyClass()
    init() {
        <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">print</span>(<span class="hljs-string" style="color: rgb(0, 136, 0); box-sizing: border-box;">"foo"</span>)
    }
}</code><ul class="pre-numbering" style="box-sizing: border-box; position: absolute; width: 50px; background-color: rgb(238, 238, 238); top: 0px; left: 0px; margin: 0px; padding: 6px 0px 40px; border-right: 1px solid rgb(221, 221, 221); list-style: none; text-align: right;"><li style="box-sizing: border-box; padding: 0px 5px;">1</li><li style="box-sizing: border-box; padding: 0px 5px;">2</li><li style="box-sizing: border-box; padding: 0px 5px;">3</li><li style="box-sizing: border-box; padding: 0px 5px;">4</li><li style="box-sizing: border-box; padding: 0px 5px;">5</li><li style="box-sizing: border-box; padding: 0px 5px;">6</li></ul><ul class="pre-numbering" style="box-sizing: border-box; position: absolute; width: 50px; background-color: rgb(238, 238, 238); top: 0px; left: 0px; margin: 0px; padding: 6px 0px 40px; border-right: 1px solid rgb(221, 221, 221); list-style: none; text-align: right;"><li style="box-sizing: border-box; padding: 0px 5px;">1</li><li style="box-sizing: border-box; padding: 0px 5px;">2</li><li style="box-sizing: border-box; padding: 0px 5px;">3</li><li style="box-sizing: border-box; padding: 0px 5px;">4</li><li style="box-sizing: border-box; padding: 0px 5px;">5</li><li style="box-sizing: border-box; padding: 0px 5px;">6</li></ul>

你还可以直接创建一个全局的变量或静态属性来达到没有结果的just one time:

<code class="hljs coffeescript has-numbering" style="display: block; padding: 0px; background: transparent; color: inherit; box-sizing: border-box; font-family: "Source Code Pro", monospace;font-size:undefined; white-space: pre; border-radius: 0px; word-wrap: normal;"><span class="hljs-reserved" style="box-sizing: border-box;">let</span> <span class="hljs-attribute" style="box-sizing: border-box; color: rgb(0, 136, 0);">justAOneTimeThing</span>: () = {
    <span class="hljs-built_in" style="color: rgb(102, 0, 102); box-sizing: border-box;">print</span>(<span class="hljs-string" style="color: rgb(0, 136, 0); box-sizing: border-box;">"Not coming back here."</span>)
}()</code><ul class="pre-numbering" style="box-sizing: border-box; position: absolute; width: 50px; background-color: rgb(238, 238, 238); top: 0px; left: 0px; margin: 0px; padding: 6px 0px 40px; border-right: 1px solid rgb(221, 221, 221); list-style: none; text-align: right;"><li style="box-sizing: border-box; padding: 0px 5px;">1</li><li style="box-sizing: border-box; padding: 0px 5px;">2</li><li style="box-sizing: border-box; padding: 0px 5px;">3</li></ul><ul class="pre-numbering" style="box-sizing: border-box; position: absolute; width: 50px; background-color: rgb(238, 238, 238); top: 0px; left: 0px; margin: 0px; padding: 6px 0px 40px; border-right: 1px solid rgb(221, 221, 221); list-style: none; text-align: right;"><li style="box-sizing: border-box; padding: 0px 5px;">1</li><li style="box-sizing: border-box; padding: 0px 5px;">2</li><li style="box-sizing: border-box; padding: 0px 5px;">3</li></ul>

如果你觉得这都不和你的胃口,你可以在需要调用justAOneTimeThing的地方直接调用它就是啦:

<code class="hljs mathematica has-numbering" style="display: block; padding: 0px; background: transparent; color: inherit; box-sizing: border-box; font-family: "Source Code Pro", monospace;font-size:undefined; white-space: pre; border-radius: 0px; word-wrap: normal;">func doTheOneTimeThing() <span class="hljs-list" style="box-sizing: border-box;">{
    justAOneTimeThing
}</span></code><ul class="pre-numbering" style="box-sizing: border-box; position: absolute; width: 50px; background-color: rgb(238, 238, 238); top: 0px; left: 0px; margin: 0px; padding: 6px 0px 40px; border-right: 1px solid rgb(221, 221, 221); list-style: none; text-align: right;"><li style="box-sizing: border-box; padding: 0px 5px;">1</li><li style="box-sizing: border-box; padding: 0px 5px;">2</li><li style="box-sizing: border-box; padding: 0px 5px;">3</li></ul><ul class="pre-numbering" style="box-sizing: border-box; position: absolute; width: 50px; background-color: rgb(238, 238, 238); top: 0px; left: 0px; margin: 0px; padding: 6px 0px 40px; border-right: 1px solid rgb(221, 221, 221); list-style: none; text-align: right;"><li style="box-sizing: border-box; padding: 0px 5px;">1</li><li style="box-sizing: border-box; padding: 0px 5px;">2</li><li style="box-sizing: border-box; padding: 0px 5px;">3</li></ul>

所以在Swift3中推荐使用如下方法来完成一个单例:

<code class="hljs php has-numbering" style="display: block; padding: 0px; background: transparent; color: inherit; box-sizing: border-box; font-family: "Source Code Pro", monospace;font-size:undefined; white-space: pre; border-radius: 0px; word-wrap: normal;"><span class="hljs-class" style="box-sizing: border-box;"><span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">class</span> <span class="hljs-title" style="box-sizing: border-box; color: rgb(102, 0, 102);">Foo</span>{</span>
    <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">private</span> <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">static</span> let sharedInstance = Foo()
    <span class="hljs-class" style="box-sizing: border-box;"><span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">class</span> <span class="hljs-title" style="box-sizing: border-box; color: rgb(102, 0, 102);">var</span> <span class="hljs-title" style="box-sizing: border-box; color: rgb(102, 0, 102);">sharedFoo</span> {</span>
        <span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">return</span> sharedInstance
    }
}</code>


http://stackoverflow.com/questions/39562887/how-to-implement-method-swizzling-swift-3-0

http://stackoverflow.com/questions/37801407/whither-dispatch-once-in-swift-3/37801408#37801408



------------------------------------- Translated Report (Full Report Below) ------------------------------------- Process: QuickRecorder [32934] Path: /Applications/QuickRecorder.app/Contents/MacOS/QuickRecorder Identifier: com.lihaoyun6.QuickRecorder Version: 1.6.9 (169) Code Type: X86-64 (Native) Parent Process: launchd [1] User ID: 501 Date/Time: 2025-07-31 19:51:21.9912 +0800 OS Version: macOS 15.5 (24F74) Report Version: 12 Bridge OS Version: 9.5 (22P5072) Anonymous UUID: 7C3BF07D-DBC4-0AFA-605A-6747857472B3 Sleep/Wake UUID: CCC594FE-9BDD-4088-AF5D-DE87EE98EEF2 Time Awake Since Boot: 310000 seconds Time Since Wake: 7055 seconds System Integrity Protection: enabled Crashed Thread: 0 Dispatch queue: com.apple.main-thread Exception Type: EXC_BAD_INSTRUCTION (SIGILL) Exception Codes: 0x0000000000000001, 0x0000000000000000 Termination Reason: Namespace SIGNAL, Code 4 Illegal instruction: 4 Terminating Process: exc handler [32934] Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 QuickRecorder 0x108a91e88 AECAudioStream.stopAudioUnit() + 520 1 QuickRecorder 0x1089bd198 static SCContext.stopRecording() + 1336 2 QuickRecorder 0x10898f737 closure #1 in closure #1 in closure #1 in closure #1 in StatusBarItem.body.getter + 55 3 SwiftUI 0x7ff91a18c084 0x7ff9192bc000 + 15532164 4 SwiftUI 0x7ff91a1be710 0x7ff9192bc000 + 15738640 5 SwiftUI 0x7ff91a18998a 0x7ff9192bc000 + 15522186 6 SwiftUI 0x7ff91934beae 0x7ff9192bc000 + 589486 7 SwiftUI 0x7ff919a5faa4 0x7ff9192bc000 + 8010404 8 SwiftUI 0x7ff919a624d2 0x7ff9192bc000 + 8021202 9 SwiftUI 0x7ff91a1170a4 0x7ff9192bc000 + 15052964 10 SwiftUI 0x7ff91a1be710 0x7ff9192bc000 + 15738640 11 SwiftUI 0x7ff91a111c59 0x7ff9192bc000 + 15031385 12 SwiftUI 0x7ff91a116a7d 0x7ff9192bc000 + 15051389 13 SwiftUICore 0x7ffb17b5fb7c 0x7ffb17a95000 + 830332 14 SwiftUICore 0x7ffb17b5fb7c 0x7ffb17a95000 + 830332 15 SwiftUICore 0x7ffb17f01acc 0x7ffb17a95000 + 4639436 16 SwiftUICore 0x7ffb17f02796 0x7ffb17a95000 + 4642710 17 SwiftUICore 0x7ffb17f01c0b 0x7ffb17a95000 + 4639755 18 SwiftUICore 0x7ffb1821e85c 0x7ffb17a95000 + 7903324 19 SwiftUI 0x7ff91998d39e 0x7ff9192bc000 + 7148446 20 SwiftUI 0x7ff91998c6ca 0x7ff9192bc000 + 7145162 21 SwiftUI 0x7ff91998e95b 0x7ff9192bc000 + 7154011 22 SwiftUI 0x7ff919999389 0x7ff9192bc000 + 7197577 23 SwiftUI 0x7ff91999940f 0x7ff9192bc000 + 7197711 24 AppKit 0x7ff80dcc0848 _routeMouseUpEvent + 136 25 AppKit 0x7ff80d10836d -[NSWindow(NSEventRouting) _reallySendEvent:isDelayedEvent:] + 471 26 AppKit 0x7ff80d107f75 -[NSWindow(NSEventRouting) sendEvent:] + 344 27 AppKit 0x7ff80da2ef01 -[NSStatusBarWindow sendEvent:] + 674 28 AppKit 0x7ff80da3d259 -[NSApplication(NSEventRouting) sendEvent:] + 1905 29 AppKit 0x7ff80d5a0c23 -[NSApplication _handleEvent:] + 65 30 AppKit 0x7ff80cfa1f45 -[NSApplication run] + 654 31 AppKit 0x7ff80cf75085 NSApplicationMain + 803 32 SwiftUI 0x7ff9192f4fb1 0x7ff9192bc000 + 233393 33 SwiftUI 0x7ff9196482e8 0x7ff9192bc000 + 3719912 34 SwiftUI 0x7ff9198df1ab 0x7ff9192bc000 + 6435243 35 QuickRecorder 0x108a2d336 main + 54 36 dyld 0x7ff8090bd530 start + 3056 Thread 1:: caulk.messenger.shared:17 0 libsystem_kernel.dylib 0x7ff809420ac6 semaphore_wait_trap + 10 1 caulk 0x7ff814b45a42 caulk::semaphore::timed_wait(double) + 158 2 caulk 0x7ff814b45964 caulk::concurrent::details::worker_thread::run() + 30 3 caulk 0x7ff814b456a8 void* caulk::thread_proxy<std::__1::tuple<caulk::thread::attributes, void (caulk::concurrent::details::worker_thread::*)(), std::__1::tuple<caulk::concurrent::details::worker_thread*>>>(void*) + 41 4 libsystem_pthread.dylib 0x7ff809462df1 _pthread_start + 99 5 libsystem_pthread.dylib 0x7ff80945e857 thread_start + 15 Thread 2:: caulk.messenger.shared:high 0 libsystem_kernel.dylib 0x7ff809420ac6 semaphore_wait_trap + 10 1 caulk 0x7ff814b45a42 caulk::semaphore::timed_wait(double) + 158 2 caulk 0x7ff814b45964 caulk::concurrent::details::worker_thread::run() + 30 3 caulk 0x7ff814b456a8 void* caulk::thread_proxy<std::__1::tuple<caulk::thread::attributes, void (caulk::concurrent::details::worker_thread::*)(), std::__1::tuple<caulk::concurrent::details::worker_thread*>>>(void*) + 41 4 libsystem_pthread.dylib 0x7ff809462df1 _pthread_start + 99 5 libsystem_pthread.dylib 0x7ff80945e857 thread_start + 15 Thread 3:: com.apple.NSEventThread 0 libsystem_kernel.dylib 0x7ff809420b4a mach_msg2_trap + 10 1 libsystem_kernel.dylib 0x7ff80942f704 mach_msg2_internal + 83 2 libsystem_kernel.dylib 0x7ff809427bc3 mach_msg_overwrite + 574 3 libsystem_kernel.dylib 0x7ff809420e3b mach_msg + 19 4 CoreFoundation 0x7ff80954bd42 __CFRunLoopServiceMachPort + 145 5 CoreFoundation 0x7ff80954a78f __CFRunLoopRun + 1430 6 CoreFoundation 0x7ff809549bc2 CFRunLoopRunSpecific + 536 7 AppKit 0x7ff80d105a2f _NSEventThread + 127 8 libsystem_pthread.dylib 0x7ff809462df1 _pthread_start + 99 9 libsystem_pthread.dylib 0x7ff80945e857 thread_start + 15 Thread 4: 0 libsystem_pthread.dylib 0x7ff80945e834 start_wqthread + 0 Thread 5: 0 libsystem_pthread.dylib 0x7ff80945e834 start_wqthread + 0 Thread 6: 0 libsystem_pthread.dylib 0x7ff80945e834 start_wqthread + 0 Thread 7: 0 libsystem_pthread.dylib 0x7ff80945e834 start_wqthread + 0 Thread 8: 0 libsystem_pthread.dylib 0x7ff80945e834 start_wqthread + 0 Thread 9: 0 libsystem_pthread.dylib 0x7ff80945e834 start_wqthread + 0 Thread 10:: com.apple.coremedia.sharedRootQueue.47 0 libsystem_kernel.dylib 0x7ff809420ade semaphore_timedwait_trap + 10 1 libdispatch.dylib 0x7ff8092e5c2b _dispatch_sema4_timedwait + 52 2 libdispatch.dylib 0x7ff8092b909e _dispatch_semaphore_wait_slow + 58 3 libdispatch.dylib 0x7ff8092c69b8 _dispatch_worker_thread + 322 4 libsystem_pthread.dylib 0x7ff809462df1 _pthread_start + 99 5 libsystem_pthread.dylib 0x7ff80945e857 thread_start + 15 Thread 11:: com.apple.coremedia.sharedRootQueue.47 0 libsystem_kernel.dylib 0x7ff809420ade semaphore_timedwait_trap + 10 1 libdispatch.dylib 0x7ff8092e5c2b _dispatch_sema4_timedwait + 52 2 libdispatch.dylib 0x7ff8092b909e _dispatch_semaphore_wait_slow + 58 3 libdispatch.dylib 0x7ff8092c69b8 _dispatch_worker_thread + 322 4 libsystem_pthread.dylib 0x7ff809462df1 _pthread_start + 99 5 libsystem_pthread.dylib 0x7ff80945e857 thread_start + 15 Thread 12:: caulk::deferred_logger 0 libsystem_kernel.dylib 0x7ff809420ac6 semaphore_wait_trap + 10 1 caulk 0x7ff814b45a42 caulk::semaphore::timed_wait(double) + 158 2 caulk 0x7ff814b45964 caulk::concurrent::details::worker_thread::run() + 30 3 caulk 0x7ff814b456a8 void* caulk::thread_proxy<std::__1::tuple<caulk::thread::attributes, void (caulk::concurrent::details::worker_thread::*)(), std::__1::tuple<caulk::concurrent::details::worker_thread*>>>(void*) + 41 4 libsystem_pthread.dylib 0x7ff809462df1 _pthread_start + 99 5 libsystem_pthread.dylib 0x7ff80945e857 thread_start + 15 Thread 13: 0 libsystem_pthread.dylib 0x7ff80945e834 start_wqthread + 0 Thread 14:: com.apple.coremedia.mediaprocessor.audiocompression 0 libsystem_kernel.dylib 0x7ff8094236f6 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x7ff80946327a _pthread_cond_wait + 988 2 CoreMedia 0x7ff814b8606c WaitOnCondition + 11 3 CoreMedia 0x7ff814b719ff FigSemaphoreWaitRelative + 143 4 MediaToolbox 0x7ff81aba91fc 0x7ff81a91d000 + 2671100 5 CoreMedia 0x7ff814b84b5d figThreadMain + 237 6 libsystem_pthread.dylib 0x7ff809462df1 _pthread_start + 99 7 libsystem_pthread.dylib 0x7ff80945e857 thread_start + 15 Thread 15:: com.apple.coremedia.formatwriter.qtmovie 0 libsystem_kernel.dylib 0x7ff8094236f6 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x7ff80946327a _pthread_cond_wait + 988 2 CoreMedia 0x7ff814b8606c WaitOnCondition + 11 3 CoreMedia 0x7ff814b719ff FigSemaphoreWaitRelative + 143 4 MediaToolbox 0x7ff81ab6a05f 0x7ff81a91d000 + 2412639 5 CoreMedia 0x7ff814b84b5d figThreadMain + 237 6 libsystem_pthread.dylib 0x7ff809462df1 _pthread_start + 99 7 libsystem_pthread.dylib 0x7ff80945e857 thread_start + 15 Thread 16:: com.apple.coremedia.mediaprocessor.audiocompression 0 libsystem_kernel.dylib 0x7ff8094236f6 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x7ff80946327a _pthread_cond_wait + 988 2 CoreMedia 0x7ff814b8606c WaitOnCondition + 11 3 CoreMedia 0x7ff814b719ff FigSemaphoreWaitRelative + 143 4 MediaToolbox 0x7ff81aba91fc 0x7ff81a91d000 + 2671100 5 CoreMedia 0x7ff814b84b5d figThreadMain + 237 6 libsystem_pthread.dylib 0x7ff809462df1 _pthread_start + 99 7 libsystem_pthread.dylib 0x7ff80945e857 thread_start + 15 Thread 17:: com.apple.coremedia.mediaprocessor.videocompression 0 libsystem_kernel.dylib 0x7ff8094236f6 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x7ff80946327a _pthread_cond_wait + 988 2 CoreMedia 0x7ff814b8606c WaitOnCondition + 11 3 CoreMedia 0x7ff814b719ff FigSemaphoreWaitRelative + 143 4 MediaToolbox 0x7ff81aba91fc 0x7ff81a91d000 + 2671100 5 CoreMedia 0x7ff814b84b5d figThreadMain + 237 6 libsystem_pthread.dylib 0x7ff809462df1 _pthread_start + 99 7 libsystem_pthread.dylib 0x7ff80945e857 thread_start + 15 Thread 18:: com.apple.coremedia.sharedRootQueue.47 0 libsystem_kernel.dylib 0x7ff809420ade semaphore_timedwait_trap + 10 1 libdispatch.dylib 0x7ff8092e5c2b _dispatch_sema4_timedwait + 52 2 libdispatch.dylib 0x7ff8092b909e _dispatch_semaphore_wait_slow + 58 3 libdispatch.dylib 0x7ff8092c69b8 _dispatch_worker_thread + 322 4 libsystem_pthread.dylib 0x7ff809462df1 _pthread_start + 99 5 libsystem_pthread.dylib 0x7ff80945e857 thread_start + 15 Thread 19:: com.apple.audio.toolbox.AUScheduledParameterRefresher 0 libsystem_kernel.dylib 0x7ff809420ac6 semaphore_wait_trap + 10 1 caulk 0x7ff814b45a42 caulk::semaphore::timed_wait(double) + 158 2 caulk 0x7ff814b45964 caulk::concurrent::details::worker_thread::run() + 30 3 caulk 0x7ff814b456a8 void* caulk::thread_proxy<std::__1::tuple<caulk::thread::attributes, void (caulk::concurrent::details::worker_thread::*)(), std::__1::tuple<caulk::concurrent::details::worker_thread*>>>(void*) + 41 4 libsystem_pthread.dylib 0x7ff809462df1 _pthread_start + 99 5 libsystem_pthread.dylib 0x7ff80945e857 thread_start + 15 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x0000000000000000 rbx: 0x0000000000000001 rcx: 0x00007fa30c1adad8 rdx: 0x0000000108a91ca6 rdi: 0x0000000000000000 rsi: 0x00007ff7b75a0f20 rbp: 0x00007ff7b75a0f70 rsp: 0x00007ff7b75a0f20 r8: 0x0000000000000000 r9: 0x0000000000000001 r10: 0x00007ff84ae65e30 r11: 0x00007ff80907b979 r12: 0x0000000000000000 r13: 0x00007fa30c1adac0 r14: 0x0000000000000000 r15: 0x00007fa30c1adad8 rip: 0x0000000108a91e88 rfl: 0x0000000000010246 cr2: 0x0000000000000000 Logical CPU: 0 Error Code: 0x00000000 Trap Number: 6 Thread 0 instruction stream: c0 41 b9 02 00 00 00 e8-ee 44 00 00 4c 89 ff 48 .A.......D..L..H c7 c6 ff ff ff ff 48 c7-c2 ff ff ff ff e8 de 47 ......H........G 00 00 4c 89 f7 ff 15 95-a8 05 00 e8 a8 0b 00 00 ..L............. 48 8d 3d 19 2f 06 00 48-89 c6 31 d2 31 c9 e8 49 H.=./..H..1.1..I 46 00 00 49 89 c6 89 1a-49 89 c4 e8 10 48 00 00 F..I....I....H.. 4d 89 f4 48 83 c4 30 5b-41 5d 41 5e 41 5f 5d c3 M..H..0[A]A^A_]. [0f]0b 0f 0b 0f 0b 66 90-55 48 89 e5 41 57 41 56 ......f.UH..AWAV <== 41 55 53 48 83 ec 30 4d-89 e6 48 8b 05 5f a7 05 AUSH..0M..H.._.. 00 48 8b 00 48 89 45 d8-40 80 e7 01 40 88 7d b8 .H..H.E.@...@.}. 89 75 bc 49 8d 7d 10 48-8d 75 c0 31 d2 31 c9 e8 .u.I.}.H.u.1.1.. 18 46 00 00 49 8b 7d 10-48 85 ff 0f 84 ed 00 00 .F..I.}.H....... 00 4c 8d 45 b8 be 3c 08-00 00 31 d2 31 c9 41 b9 .L.E..<...1.1.A. Binary Images: 0x10895d000 - 0x108aeafff com.lihaoyun6.QuickRecorder (1.6.9) <ba618c03-821d-3b9f-8a8f-1ef506b204f1> /Applications/QuickRecorder.app/Contents/MacOS/QuickRecorder 0x108f8d000 - 0x108fd0fff org.sparkle-project.Sparkle (2.6.0) <020e997b-9464-39d5-81bf-2767410fb3a8> /Applications/QuickRecorder.app/Contents/Frameworks/Sparkle.framework/Versions/B/Sparkle 0x10b32f000 - 0x10b33bfff libobjc-trampolines.dylib (*) <395104e6-4e58-31b0-8c64-c56f325ce788> /usr/lib/libobjc-trampolines.dylib 0x10b456000 - 0x10b498fff com.apple.cmio.DAL.VDC-4 (810.0) <fb6a30e6-4dd9-327d-902b-231e1775a0d5> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/Resources/VDC.plugin/Contents/MacOS/VDC 0x10b3ef000 - 0x10b412fff com.apple.cmio.DAL.iOSScreenCapture (1000.0) <afdab9ae-5bbe-3ebd-b1a7-4e7229877a1c> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/Resources/iOSScreenCapture.plugin/Contents/MacOS/iOSScreenCapture 0x12e8d9000 - 0x12f2abfff com.apple.audio.codecs.Components (7.0) <d9768fd2-eb2f-3c9c-b094-0bcbf92cc765> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs 0x12cb67000 - 0x12ccacfff com.apple.audio.units.Components (1.14) <b7d2daa6-a2bf-3019-b6bc-6bf72550f719> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio 0x12c873000 - 0x12c9c7fff com.apple.CMIOBaseUnits (1000.0) <dab238cc-df97-39f5-81aa-678006e2217b> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/Resources/BaseUnits/CMIOBaseUnits.bundle/Contents/MacOS/CMIOBaseUnits 0x12c9f2000 - 0x12caa6fff com.apple.CMIOUnits (1000.0) <e0f38971-a56e-36e1-b383-20c72563c717> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/Resources/CMIOUnits.bundle/Contents/MacOS/CMIOUnits 0x1324c6000 - 0x132c52fff com.apple.AppleIntelICLGraphicsVADriver (23.0.26) <d65da351-02d8-36b3-9be0-9acab3ae40ba> /System/Library/Extensions/AppleIntelICLGraphicsVADriver.bundle/Contents/MacOS/AppleIntelICLGraphicsVADriver 0x12afe7000 - 0x12afe8fff com.apple.driver.AppleIntelICLLPGraphicsVAME (23.0.26) <c92fa091-78f2-3168-afe5-cb892ed641fd> /System/Library/Extensions/AppleIntelICLLPGraphicsVAME.bundle/Contents/MacOS/AppleIntelICLLPGraphicsVAME 0x7ff9192bc000 - 0x7ff91a5109a9 com.apple.SwiftUI (6.5.4) <83eb36e0-aeb7-36dd-a912-42fbb13eb403> /System/Library/Frameworks/SwiftUI.framework/Versions/A/SwiftUI 0x7ffb17a95000 - 0x7ffb185fa483 com.apple.SwiftUICore (6.5.4) <86c55167-e675-36c8-8207-6ea7a6f546a3> /System/Library/Frameworks/SwiftUICore.framework/Versions/A/SwiftUICore 0x7ff80cf71000 - 0x7ff80e4c3336 com.apple.AppKit (6.9) <c26f6f9e-8230-3c1f-8c48-02d9de58fbc8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7ff8090b7000 - 0x7ff809151527 dyld (*) <3771ea6a-0fe5-3b63-961d-c09e01d5e680> /usr/lib/dyld 0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ??? 0x7ff809071000 - 0x7ff8090b605b libobjc.A.dylib (*) <de35b5ee-5872-3e5a-a1f0-eb18c5b0434c> /usr/lib/libobjc.A.dylib 0x7ff809420000 - 0x7ff80945cb4f libsystem_kernel.dylib (*) <dab10aa4-8afa-3d02-9cde-6023554ac858> /usr/lib/system/libsystem_kernel.dylib 0x7ff814b44000 - 0x7ff814b67d07 com.apple.audio.caulk (1.0) <22877e7f-c603-37d7-8c72-9d864ee6e99d> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk 0x7ff80945d000 - 0x7ff809468dcf libsystem_pthread.dylib (*) <a6d1f05a-0743-31b7-9fe2-268f06ccd51a> /usr/lib/system/libsystem_pthread.dylib 0x7ff8094d0000 - 0x7ff809984ff2 com.apple.CoreFoundation (6.9) <2f3a4185-6038-37d0-a02b-ec620bcd977b> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7ff8092b6000 - 0x7ff8092fd309 libdispatch.dylib (*) <a709554b-250f-3213-b4dd-6708dd83f622> /usr/lib/system/libdispatch.dylib 0x7ff814b68000 - 0x7ff814cbb099 com.apple.CoreMedia (1.0) <2999476d-3236-3602-a2e1-2080ff39f301> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 0x7ff81a91d000 - 0x7ff81b2dd9dc com.apple.MediaToolbox (1.0) <04606bfa-5f38-31c8-841c-aee4cc8bbca9> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox 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=1.3G resident=0K(0%) swapped_out_or_unallocated=1.3G(100%) Writable regions: Total=189.3M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=189.3M(100%) VIRTUAL REGION REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Accelerate framework 128K 1 Activity Tracing 256K 1 AttributeGraph Data 1024K 1 CG image 52K 6 ColorSync 112K 12 CoreAnimation 7308K 47 CoreGraphics 12K 2 CoreImage 6892K 1 CoreMedia memory pool 384K 3 CoreUI image data 1728K 13 Dispatch continuations 32.0M 1 Foundation 16K 1 Image IO 12K 2 Kernel Alloc Once 8K 1 MALLOC 124.2M 81 MALLOC guard page 64K 16 STACK GUARD 56.1M 20 Stack 17.6M 20 VM_ALLOCATE 6576K 54 __CTF 824 1 __DATA 35.7M 955 __DATA_CONST 103.0M 971 __DATA_DIRTY 2578K 338 __FONT_DATA 2352 1 __INFO_FILTER 8 1 __LINKEDIT 167.4M 13 __OBJC_RO 61.3M 1 __OBJC_RW 2395K 2 __TEXT 1.1G 990 __TPRO_CONST 16 2 mapped file 500.6M 51 shared memory 1328K 24 =========== ======= ======= TOTAL 2.2G 3633 ----------- Full Report ----------- {"app_name":"QuickRecorder","timestamp":"2025-07-31 19:51:24.00 +0800","app_version":"1.6.9","slice_uuid":"ba618c03-821d-3b9f-8a8f-1ef506b204f1","build_version":"169","platform":1,"bundleID":"com.lihaoyun6.QuickRecorder","share_with_app_devs":1,"is_first_party":0,"bug_type":"309","os_version":"macOS 15.5 (24F74)","roots_installed":0,"name":"QuickRecorder","incident_id":"F5762CDB-33D3-49D1-B7AD-592CD70F15A2"} { "uptime" : 310000, "procRole" : "Background", "version" : 2, "userID" : 501, "deployVersion" : 210, "modelCode" : "MacBookAir9,1", "coalitionID" : 24489, "osVersion" : { "train" : "macOS 15.5", "build" : "24F74", "releaseType" : "User" }, "captureTime" : "2025-07-31 19:51:21.9912 +0800", "codeSigningMonitor" : 0, "incident" : "F5762CDB-33D3-49D1-B7AD-592CD70F15A2", "pid" : 32934, "cpuType" : "X86-64", "roots_installed" : 0, "bug_type" : "309", "procLaunch" : "2025-07-31 19:49:53.9186 +0800", "procStartAbsTime" : 310430492628722, "procExitAbsTime" : 310518542095345, "procName" : "QuickRecorder", "procPath" : "\/Applications\/QuickRecorder.app\/Contents\/MacOS\/QuickRecorder", "bundleInfo" : {"CFBundleShortVersionString":"1.6.9","CFBundleVersion":"169","CFBundleIdentifier":"com.lihaoyun6.QuickRecorder"}, "storeInfo" : {"deviceIdentifierForVendor":"814A539B-03F8-5A93-B9BD-13C4811EAAEA","thirdParty":true}, "parentProc" : "launchd", "parentPid" : 1, "coalitionName" : "com.lihaoyun6.QuickRecorder", "crashReporterKey" : "7C3BF07D-DBC4-0AFA-605A-6747857472B3", "appleIntelligenceStatus" : {"reasons":["deviceNotCapable"],"state":"unavailable"}, "codeSigningID" : "com.lihaoyun6.QuickRecorder", "codeSigningTeamID" : "L4T783637F", "codeSigningFlags" : 1644245781, "codeSigningValidationCategory" : 3, "codeSigningTrustLevel" : 4294967295, "codeSigningAuxiliaryInfo" : 0, "bootSessionUUID" : "DDF0E849-EA1E-478C-BA4C-D913D34C31FA", "wakeTime" : 7055, "bridgeVersion" : {"build":"22P5072","train":"9.5"}, "sleepWakeUUID" : "CCC594FE-9BDD-4088-AF5D-DE87EE98EEF2", "sip" : "enabled", "exception" : {"codes":"0x0000000000000001, 0x0000000000000000","rawCodes":[1,0],"type":"EXC_BAD_INSTRUCTION","signal":"SIGILL"}, "termination" : {"flags":0,"code":4,"namespace":"SIGNAL","indicator":"Illegal instruction: 4","byProc":"exc handler","byPid":32934}, "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" : [{"triggered":true,"id":2450818,"instructionState":{"instructionStream":{"bytes":[192,65,185,2,0,0,0,232,238,68,0,0,76,137,255,72,199,198,255,255,255,255,72,199,194,255,255,255,255,232,222,71,0,0,76,137,247,255,21,149,168,5,0,232,168,11,0,0,72,141,61,25,47,6,0,72,137,198,49,210,49,201,232,73,70,0,0,73,137,198,137,26,73,137,196,232,16,72,0,0,77,137,244,72,131,196,48,91,65,93,65,94,65,95,93,195,15,11,15,11,15,11,102,144,85,72,137,229,65,87,65,86,65,85,83,72,131,236,48,77,137,230,72,139,5,95,167,5,0,72,139,0,72,137,69,216,64,128,231,1,64,136,125,184,137,117,188,73,141,125,16,72,141,117,192,49,210,49,201,232,24,70,0,0,73,139,125,16,72,133,255,15,132,237,0,0,0,76,141,69,184,190,60,8,0,0,49,210,49,201,65,185],"offset":96}},"threadState":{"r13":{"value":140338259483328},"rax":{"value":0},"rflags":{"value":66118},"cpu":{"value":0},"r14":{"value":0},"rsi":{"value":140701909782304},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":4440267942,"symbolLocation":38,"symbol":"AECAudioStream.stopAudioUnit()"},"r10":{"value":140704385228336,"symbolLocation":0,"symbol":"OBJC_CLASS_$_NSObject"},"r9":{"value":1},"r15":{"value":140338259483352},"rbx":{"value":1},"trap":{"value":6},"err":{"value":0},"r11":{"value":140703280118137,"symbolLocation":0,"symbol":"-[NSObject init]"},"rip":{"value":4440268424,"matchesCrashFrame":1},"rbp":{"value":140701909782384},"rsp":{"value":140701909782304},"r12":{"value":0},"rcx":{"value":140338259483352},"flavor":"x86_THREAD_STATE","rdi":{"value":0}},"queue":"com.apple.main-thread","frames":[{"imageOffset":1265288,"symbol":"AECAudioStream.stopAudioUnit()","symbolLocation":520,"imageIndex":0},{"imageOffset":393624,"symbol":"static SCContext.stopRecording()","symbolLocation":1336,"imageIndex":0},{"imageOffset":206647,"symbol":"closure #1 in closure #1 in closure #1 in closure #1 in StatusBarItem.body.getter","symbolLocation":55,"imageIndex":0},{"imageOffset":15532164,"imageIndex":11},{"imageOffset":15738640,"imageIndex":11},{"imageOffset":15522186,"imageIndex":11},{"imageOffset":589486,"imageIndex":11},{"imageOffset":8010404,"imageIndex":11},{"imageOffset":8021202,"imageIndex":11},{"imageOffset":15052964,"imageIndex":11},{"imageOffset":15738640,"imageIndex":11},{"imageOffset":15031385,"imageIndex":11},{"imageOffset":15051389,"imageIndex":11},{"imageOffset":830332,"imageIndex":12},{"imageOffset":830332,"imageIndex":12},{"imageOffset":4639436,"imageIndex":12},{"imageOffset":4642710,"imageIndex":12},{"imageOffset":4639755,"imageIndex":12},{"imageOffset":7903324,"imageIndex":12},{"imageOffset":7148446,"imageIndex":11},{"imageOffset":7145162,"imageIndex":11},{"imageOffset":7154011,"imageIndex":11},{"imageOffset":7197577,"imageIndex":11},{"imageOffset":7197711,"imageIndex":11},{"imageOffset":13957192,"symbol":"_routeMouseUpEvent","symbolLocation":136,"imageIndex":13},{"imageOffset":1667949,"symbol":"-[NSWindow(NSEventRouting) _reallySendEvent:isDelayedEvent:]","symbolLocation":471,"imageIndex":13},{"imageOffset":1666933,"symbol":"-[NSWindow(NSEventRouting) sendEvent:]","symbolLocation":344,"imageIndex":13},{"imageOffset":11263745,"symbol":"-[NSStatusBarWindow sendEvent:]","symbolLocation":674,"imageIndex":13},{"imageOffset":11321945,"symbol":"-[NSApplication(NSEventRouting) sendEvent:]","symbolLocation":1905,"imageIndex":13},{"imageOffset":6487075,"symbol":"-[NSApplication _handleEvent:]","symbolLocation":65,"imageIndex":13},{"imageOffset":200517,"symbol":"-[NSApplication run]","symbolLocation":654,"imageIndex":13},{"imageOffset":16517,"symbol":"NSApplicationMain","symbolLocation":803,"imageIndex":13},{"imageOffset":233393,"imageIndex":11},{"imageOffset":3719912,"imageIndex":11},{"imageOffset":6435243,"imageIndex":11},{"imageOffset":852790,"symbol":"main","symbolLocation":54,"imageIndex":0},{"imageOffset":25904,"symbol":"start","symbolLocation":3056,"imageIndex":14}]},{"id":2450922,"name":"caulk.messenger.shared:17","threadState":{"r13":{"value":0},"rax":{"value":14},"rflags":{"value":515},"cpu":{"value":0},"r14":{"value":140338259404400},"rsi":{"value":140338259254304},"r8":{"value":140338259254304},"cr2":{"value":0},"rdx":{"value":10},"r10":{"value":0},"r9":{"value":25},"r15":{"value":0},"rbx":{"value":140338259404289},"trap":{"value":133},"err":{"value":16777252},"r11":{"value":515},"rip":{"value":140703283940038},"rbp":{"value":123145531428720},"rsp":{"value":123145531428680},"r12":{"value":0},"rcx":{"value":123145531428680},"flavor":"x86_THREAD_STATE","rdi":{"value":50951}},"frames":[{"imageOffset":2758,"symbol":"semaphore_wait_trap","symbolLocation":10,"imageIndex":17},{"imageOffset":6722,"symbol":"caulk::semaphore::timed_wait(double)","symbolLocation":158,"imageIndex":18},{"imageOffset":6500,"symbol":"caulk::concurrent::details::worker_thread::run()","symbolLocation":30,"imageIndex":18},{"imageOffset":5800,"symbol":"void* caulk::thread_proxy<std::__1::tuple<caulk::thread::attributes, void (caulk::concurrent::details::worker_thread::*)(), std::__1::tuple<caulk::concurrent::details::worker_thread*>>>(void*)","symbolLocation":41,"imageIndex":18},{"imageOffset":24049,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":19},{"imageOffset":6231,"symbol":"thread_start","symbolLocation":15,"imageIndex":19}]},{"id":2450923,"name":"caulk.messenger.shared:high","threadState":{"r13":{"value":0},"rax":{"value":14},"rflags":{"value":515},"cpu":{"value":0},"r14":{"value":140338259381616},"rsi":{"value":59395},"r8":{"value":4294967295},"cr2":{"value":0},"rdx":{"value":59395},"r10":{"value":16},"r9":{"value":0},"r15":{"value":0},"rbx":{"value":140338259381505},"trap":{"value":133},"err":{"value":16777252},"r11":{"value":515},"rip":{"value":140703283940038},"rbp":{"value":123145531965296},"rsp":{"value":123145531965256},"r12":{"value":0},"rcx":{"value":123145531965256},"flavor":"x86_THREAD_STATE","rdi":{"value":59651}},"frames":[{"imageOffset":2758,"symbol":"semaphore_wait_trap","symbolLocation":10,"imageIndex":17},{"imageOffset":6722,"symbol":"caulk::semaphore::timed_wait(double)","symbolLocation":158,"imageIndex":18},{"imageOffset":6500,"symbol":"caulk::concurrent::details::worker_thread::run()","symbolLocation":30,"imageIndex":18},{"imageOffset":5800,"symbol":"void* caulk::thread_proxy<std::__1::tuple<caulk::thread::attributes, void (caulk::concurrent::details::worker_thread::*)(), std::__1::tuple<caulk::concurrent::details::worker_thread*>>>(void*)","symbolLocation":41,"imageIndex":18},{"imageOffset":24049,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":19},{"imageOffset":6231,"symbol":"thread_start","symbolLocation":15,"imageIndex":19}]},{"id":2450954,"name":"com.apple.NSEventThread","threadState":{"r13":{"value":21592279046},"rax":{"value":268451845},"rflags":{"value":518},"cpu":{"value":0},"r14":{"value":551967722045440},"rsi":{"value":21592279046},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":8589934592},"r10":{"value":551967722045440},"r9":{"value":551967722045440},"r15":{"value":2},"rbx":{"value":123145532498032},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":518},"rip":{"value":140703283940170},"rbp":{"value":123145532497872},"rsp":{"value":123145532497768},"r12":{"value":551967722045440},"rcx":{"value":123145532497768},"flavor":"x86_THREAD_STATE","rdi":{"value":123145532498032}},"frames":[{"imageOffset":2890,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":17},{"imageOffset":63236,"symbol":"mach_msg2_internal","symbolLocation":83,"imageIndex":17},{"imageOffset":31683,"symbol":"mach_msg_overwrite","symbolLocation":574,"imageIndex":17},{"imageOffset":3643,"symbol":"mach_msg","symbolLocation":19,"imageIndex":17},{"imageOffset":507202,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":145,"imageIndex":20},{"imageOffset":501647,"symbol":"__CFRunLoopRun","symbolLocation":1430,"imageIndex":20},{"imageOffset":498626,"symbol":"CFRunLoopRunSpecific","symbolLocation":536,"imageIndex":20},{"imageOffset":1657391,"symbol":"_NSEventThread","symbolLocation":127,"imageIndex":13},{"imageOffset":24049,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":19},{"imageOffset":6231,"symbol":"thread_start","symbolLocation":15,"imageIndex":19}]},{"id":2452019,"frames":[{"imageOffset":6196,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":19}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":20795},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145529294848},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145529817976},"rbx":{"value":123145529819136},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703284193332},"rbp":{"value":0},"rsp":{"value":123145529819136},"r12":{"value":5193733},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145529819136}}},{"id":2452238,"frames":[{"imageOffset":6196,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":19}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":0},"rsi":{"value":64263},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145528758272},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":0},"rbx":{"value":123145529282560},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703284193332},"rbp":{"value":0},"rsp":{"value":123145529282560},"r12":{"value":0},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145529282560}}},{"id":2452239,"frames":[{"imageOffset":6196,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":19}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":130579},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145529831424},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145530354560},"rbx":{"value":123145530355712},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703284193332},"rbp":{"value":0},"rsp":{"value":123145530355712},"r12":{"value":1982472},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145530355712}}},{"id":2452296,"frames":[{"imageOffset":6196,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":19}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":103179},"r8":{"value":409602},"cr2":{"value":0},"rdx":{"value":123145530368000},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145530891128},"rbx":{"value":123145530892288},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703284193332},"rbp":{"value":0},"rsp":{"value":123145530892288},"r12":{"value":5193732},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145530892288}}},{"id":2452297,"frames":[{"imageOffset":6196,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":19}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":0},"rsi":{"value":119811},"r8":{"value":409602},"cr2":{"value":0},"rdx":{"value":123145532514304},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":0},"rbx":{"value":123145533038592},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703284193332},"rbp":{"value":0},"rsp":{"value":123145533038592},"r12":{"value":0},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145533038592}}},{"id":2452298,"frames":[{"imageOffset":6196,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":19}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":110411},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145533050880},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145533574008},"rbx":{"value":123145533575168},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703284193332},"rbp":{"value":0},"rsp":{"value":123145533575168},"r12":{"value":5128197},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145533575168}}},{"id":2452341,"name":"com.apple.coremedia.sharedRootQueue.47","threadState":{"r13":{"value":18446744071411073023},"rax":{"value":14},"rflags":{"value":518},"cpu":{"value":0},"r14":{"value":140338248965744},"rsi":{"value":4294966363992096772},"r8":{"value":514},"cr2":{"value":0},"rdx":{"value":999999783},"r10":{"value":4999999783},"r9":{"value":0},"r15":{"value":1000000000},"rbx":{"value":310523227020604},"trap":{"value":133},"err":{"value":16777254},"r11":{"value":518},"rip":{"value":140703283940062},"rbp":{"value":123145534111552},"rsp":{"value":123145534111512},"r12":{"value":0},"rcx":{"value":123145534111512},"flavor":"x86_THREAD_STATE","rdi":{"value":104475}},"frames":[{"imageOffset":2782,"symbol":"semaphore_timedwait_trap","symbolLocation":10,"imageIndex":17},{"imageOffset":195627,"symbol":"_dispatch_sema4_timedwait","symbolLocation":52,"imageIndex":21},{"imageOffset":12446,"symbol":"_dispatch_semaphore_wait_slow","symbolLocation":58,"imageIndex":21},{"imageOffset":68024,"symbol":"_dispatch_worker_thread","symbolLocation":322,"imageIndex":21},{"imageOffset":24049,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":19},{"imageOffset":6231,"symbol":"thread_start","symbolLocation":15,"imageIndex":19}]},{"id":2452351,"name":"com.apple.coremedia.sharedRootQueue.47","threadState":{"r13":{"value":18446744071411073023},"rax":{"value":14},"rflags":{"value":518},"cpu":{"value":0},"r14":{"value":140338248965744},"rsi":{"value":4294966149243731972},"r8":{"value":514},"cr2":{"value":0},"rdx":{"value":999999733},"r10":{"value":4999999733},"r9":{"value":18446744073709547520},"r15":{"value":1000000000},"rbx":{"value":310519568319455},"trap":{"value":133},"err":{"value":16777254},"r11":{"value":518},"rip":{"value":140703283940062},"rbp":{"value":123145534648128},"rsp":{"value":123145534648088},"r12":{"value":0},"rcx":{"value":123145534648088},"flavor":"x86_THREAD_STATE","rdi":{"value":104475}},"frames":[{"imageOffset":2782,"symbol":"semaphore_timedwait_trap","symbolLocation":10,"imageIndex":17},{"imageOffset":195627,"symbol":"_dispatch_sema4_timedwait","symbolLocation":52,"imageIndex":21},{"imageOffset":12446,"symbol":"_dispatch_semaphore_wait_slow","symbolLocation":58,"imageIndex":21},{"imageOffset":68024,"symbol":"_dispatch_worker_thread","symbolLocation":322,"imageIndex":21},{"imageOffset":24049,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":19},{"imageOffset":6231,"symbol":"thread_start","symbolLocation":15,"imageIndex":19}]},{"id":2452356,"name":"caulk::deferred_logger","threadState":{"r13":{"value":0},"rax":{"value":14},"rflags":{"value":515},"cpu":{"value":0},"r14":{"value":140338308386712},"rsi":{"value":140338308386881},"r8":{"value":140338308386881},"cr2":{"value":0},"rdx":{"value":7},"r10":{"value":1},"r9":{"value":22},"r15":{"value":0},"rbx":{"value":140338308386561},"trap":{"value":133},"err":{"value":16777252},"r11":{"value":515},"rip":{"value":140703283940038},"rbp":{"value":123145535184752},"rsp":{"value":123145535184712},"r12":{"value":0},"rcx":{"value":123145535184712},"flavor":"x86_THREAD_STATE","rdi":{"value":108307}},"frames":[{"imageOffset":2758,"symbol":"semaphore_wait_trap","symbolLocation":10,"imageIndex":17},{"imageOffset":6722,"symbol":"caulk::semaphore::timed_wait(double)","symbolLocation":158,"imageIndex":18},{"imageOffset":6500,"symbol":"caulk::concurrent::details::worker_thread::run()","symbolLocation":30,"imageIndex":18},{"imageOffset":5800,"symbol":"void* caulk::thread_proxy<std::__1::tuple<caulk::thread::attributes, void (caulk::concurrent::details::worker_thread::*)(), std::__1::tuple<caulk::concurrent::details::worker_thread*>>>(void*)","symbolLocation":41,"imageIndex":18},{"imageOffset":24049,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":19},{"imageOffset":6231,"symbol":"thread_start","symbolLocation":15,"imageIndex":19}]},{"id":2452439,"frames":[{"imageOffset":6196,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":19}],"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":123145536270336},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":0},"rbx":{"value":0},"trap":{"value":0},"err":{"value":0},"r11":{"value":0},"rip":{"value":140703284193332},"rbp":{"value":0},"rsp":{"value":123145536794624},"r12":{"value":0},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145536794624}}},{"id":2452440,"name":"com.apple.coremedia.mediaprocessor.audiocompression","threadState":{"r13":{"value":439808946180352},"rax":{"value":260},"rflags":{"value":583},"cpu":{"value":0},"r14":{"value":140338308490648},"rsi":{"value":439808946180352},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":102400},"r10":{"value":0},"r9":{"value":65704},"r15":{"value":102400},"rbx":{"value":123145537331200},"trap":{"value":133},"err":{"value":33554737},"r11":{"value":582},"rip":{"value":140703283951350},"rbp":{"value":123145537330640},"rsp":{"value":123145537330488},"r12":{"value":123145537330512},"rcx":{"value":123145537330488},"flavor":"x86_THREAD_STATE","rdi":{"value":140338308490648}},"frames":[{"imageOffset":14070,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":17},{"imageOffset":25210,"symbol":"_pthread_cond_wait","symbolLocation":988,"imageIndex":19},{"imageOffset":122988,"symbol":"WaitOnCondition","symbolLocation":11,"imageIndex":22},{"imageOffset":39423,"symbol":"FigSemaphoreWaitRelative","symbolLocation":143,"imageIndex":22},{"imageOffset":2671100,"imageIndex":23},{"imageOffset":117597,"symbol":"figThreadMain","symbolLocation":237,"imageIndex":22},{"imageOffset":24049,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":19},{"imageOffset":6231,"symbol":"thread_start","symbolLocation":15,"imageIndex":19}]},{"id":2452441,"name":"com.apple.coremedia.formatwriter.qtmovie","threadState":{"r13":{"value":226503690342144},"rax":{"value":260},"rflags":{"value":583},"cpu":{"value":0},"r14":{"value":140338309230280},"rsi":{"value":226503690342144},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":52736},"r10":{"value":0},"r9":{"value":65704},"r15":{"value":52736},"rbx":{"value":123145537867776},"trap":{"value":133},"err":{"value":33554737},"r11":{"value":582},"rip":{"value":140703283951350},"rbp":{"value":123145537867072},"rsp":{"value":123145537866920},"r12":{"value":123145537866944},"rcx":{"value":123145537866920},"flavor":"x86_THREAD_STATE","rdi":{"value":140338309230280}},"frames":[{"imageOffset":14070,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":17},{"imageOffset":25210,"symbol":"_pthread_cond_wait","symbolLocation":988,"imageIndex":19},{"imageOffset":122988,"symbol":"WaitOnCondition","symbolLocation":11,"imageIndex":22},{"imageOffset":39423,"symbol":"FigSemaphoreWaitRelative","symbolLocation":143,"imageIndex":22},{"imageOffset":2412639,"imageIndex":23},{"imageOffset":117597,"symbol":"figThreadMain","symbolLocation":237,"imageIndex":22},{"imageOffset":24049,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":19},{"imageOffset":6231,"symbol":"thread_start","symbolLocation":15,"imageIndex":19}]},{"id":2452442,"name":"com.apple.coremedia.mediaprocessor.audiocompression","threadState":{"r13":{"value":855424341576448},"rax":{"value":260},"rflags":{"value":583},"cpu":{"value":0},"r14":{"value":140338309222760},"rsi":{"value":855424341576448},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":199168},"r10":{"value":0},"r9":{"value":65704},"r15":{"value":199168},"rbx":{"value":123145538404352},"trap":{"value":133},"err":{"value":33554737},"r11":{"value":582},"rip":{"value":140703283951350},"rbp":{"value":123145538403792},"rsp":{"value":123145538403640},"r12":{"value":123145538403664},"rcx":{"value":123145538403640},"flavor":"x86_THREAD_STATE","rdi":{"value":140338309222760}},"frames":[{"imageOffset":14070,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":17},{"imageOffset":25210,"symbol":"_pthread_cond_wait","symbolLocation":988,"imageIndex":19},{"imageOffset":122988,"symbol":"WaitOnCondition","symbolLocation":11,"imageIndex":22},{"imageOffset":39423,"symbol":"FigSemaphoreWaitRelative","symbolLocation":143,"imageIndex":22},{"imageOffset":2671100,"imageIndex":23},{"imageOffset":117597,"symbol":"figThreadMain","symbolLocation":237,"imageIndex":22},{"imageOffset":24049,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":19},{"imageOffset":6231,"symbol":"thread_start","symbolLocation":15,"imageIndex":19}]},{"id":2452449,"name":"com.apple.coremedia.mediaprocessor.videocompression","threadState":{"r13":{"value":173727132196608},"rax":{"value":260},"rflags":{"value":583},"cpu":{"value":0},"r14":{"value":140338308710184},"rsi":{"value":173727132196608},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":40448},"r10":{"value":0},"r9":{"value":65704},"r15":{"value":40448},"rbx":{"value":123145538940928},"trap":{"value":133},"err":{"value":33554737},"r11":{"value":582},"rip":{"value":140703283951350},"rbp":{"value":123145538940368},"rsp":{"value":123145538940216},"r12":{"value":123145538940240},"rcx":{"value":123145538940216},"flavor":"x86_THREAD_STATE","rdi":{"value":140338308710184}},"frames":[{"imageOffset":14070,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":17},{"imageOffset":25210,"symbol":"_pthread_cond_wait","symbolLocation":988,"imageIndex":19},{"imageOffset":122988,"symbol":"WaitOnCondition","symbolLocation":11,"imageIndex":22},{"imageOffset":39423,"symbol":"FigSemaphoreWaitRelative","symbolLocation":143,"imageIndex":22},{"imageOffset":2671100,"imageIndex":23},{"imageOffset":117597,"symbol":"figThreadMain","symbolLocation":237,"imageIndex":22},{"imageOffset":24049,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":19},{"imageOffset":6231,"symbol":"thread_start","symbolLocation":15,"imageIndex":19}]},{"id":2452452,"name":"com.apple.coremedia.sharedRootQueue.47","threadState":{"r13":{"value":18446744071411073023},"rax":{"value":14},"rflags":{"value":518},"cpu":{"value":0},"r14":{"value":140338248965744},"rsi":{"value":4294965376149618692},"r8":{"value":514},"cr2":{"value":0},"rdx":{"value":999999553},"r10":{"value":4999999553},"r9":{"value":18446744073709547520},"r15":{"value":1000000000},"rbx":{"value":310523318659039},"trap":{"value":133},"err":{"value":16777254},"r11":{"value":518},"rip":{"value":140703283940062},"rbp":{"value":123145539477312},"rsp":{"value":123145539477272},"r12":{"value":0},"rcx":{"value":123145539477272},"flavor":"x86_THREAD_STATE","rdi":{"value":104475}},"frames":[{"imageOffset":2782,"symbol":"semaphore_timedwait_trap","symbolLocation":10,"imageIndex":17},{"imageOffset":195627,"symbol":"_dispatch_sema4_timedwait","symbolLocation":52,"imageIndex":21},{"imageOffset":12446,"symbol":"_dispatch_semaphore_wait_slow","symbolLocation":58,"imageIndex":21},{"imageOffset":68024,"symbol":"_dispatch_worker_thread","symbolLocation":322,"imageIndex":21},{"imageOffset":24049,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":19},{"imageOffset":6231,"symbol":"thread_start","symbolLocation":15,"imageIndex":19}]},{"id":2452615,"name":"com.apple.audio.toolbox.AUScheduledParameterRefresher","threadState":{"r13":{"value":0},"rax":{"value":14},"rflags":{"value":515},"cpu":{"value":0},"r14":{"value":140338249151592},"rsi":{"value":140338248511280},"r8":{"value":140338248511248},"cr2":{"value":0},"rdx":{"value":6},"r10":{"value":0},"r9":{"value":53},"r15":{"value":0},"rbx":{"value":140338249151489},"trap":{"value":133},"err":{"value":16777252},"r11":{"value":515},"rip":{"value":140703283940038},"rbp":{"value":123145535721328},"rsp":{"value":123145535721288},"r12":{"value":0},"rcx":{"value":123145535721288},"flavor":"x86_THREAD_STATE","rdi":{"value":112651}},"frames":[{"imageOffset":2758,"symbol":"semaphore_wait_trap","symbolLocation":10,"imageIndex":17},{"imageOffset":6722,"symbol":"caulk::semaphore::timed_wait(double)","symbolLocation":158,"imageIndex":18},{"imageOffset":6500,"symbol":"caulk::concurrent::details::worker_thread::run()","symbolLocation":30,"imageIndex":18},{"imageOffset":5800,"symbol":"void* caulk::thread_proxy<std::__1::tuple<caulk::thread::attributes, void (caulk::concurrent::details::worker_thread::*)(), std::__1::tuple<caulk::concurrent::details::worker_thread*>>>(void*)","symbolLocation":41,"imageIndex":18},{"imageOffset":24049,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":19},{"imageOffset":6231,"symbol":"thread_start","symbolLocation":15,"imageIndex":19}]}], "usedImages" : [ { "source" : "P", "arch" : "x86_64", "base" : 4439003136, "CFBundleShortVersionString" : "1.6.9", "CFBundleIdentifier" : "com.lihaoyun6.QuickRecorder", "size" : 1630208, "uuid" : "ba618c03-821d-3b9f-8a8f-1ef506b204f1", "path" : "\/Applications\/QuickRecorder.app\/Contents\/MacOS\/QuickRecorder", "name" : "QuickRecorder", "CFBundleVersion" : "169" }, { "source" : "P", "arch" : "x86_64", "base" : 4445491200, "CFBundleShortVersionString" : "2.6.0", "CFBundleIdentifier" : "org.sparkle-project.Sparkle", "size" : 278528, "uuid" : "020e997b-9464-39d5-81bf-2767410fb3a8", "path" : "\/Applications\/QuickRecorder.app\/Contents\/Frameworks\/Sparkle.framework\/Versions\/B\/Sparkle", "name" : "Sparkle", "CFBundleVersion" : "2036" }, { "source" : "P", "arch" : "x86_64h", "base" : 4482854912, "size" : 53248, "uuid" : "395104e6-4e58-31b0-8c64-c56f325ce788", "path" : "\/usr\/lib\/libobjc-trampolines.dylib", "name" : "libobjc-trampolines.dylib" }, { "source" : "P", "arch" : "x86_64", "base" : 4484063232, "CFBundleShortVersionString" : "810.0", "CFBundleIdentifier" : "com.apple.cmio.DAL.VDC-4", "size" : 274432, "uuid" : "fb6a30e6-4dd9-327d-902b-231e1775a0d5", "path" : "\/System\/Library\/Frameworks\/CoreMediaIO.framework\/Versions\/A\/Resources\/VDC.plugin\/Contents\/MacOS\/VDC", "name" : "VDC", "CFBundleVersion" : "466.80.2" }, { "source" : "P", "arch" : "x86_64", "base" : 4483641344, "CFBundleShortVersionString" : "1000.0", "CFBundleIdentifier" : "com.apple.cmio.DAL.iOSScreenCapture", "size" : 147456, "uuid" : "afdab9ae-5bbe-3ebd-b1a7-4e7229877a1c", "path" : "\/System\/Library\/Frameworks\/CoreMediaIO.framework\/Versions\/A\/Resources\/iOSScreenCapture.plugin\/Contents\/MacOS\/iOSScreenCapture", "name" : "iOSScreenCapture", "CFBundleVersion" : "5590.122.2.0.1" }, { "source" : "P", "arch" : "x86_64h", "base" : 5075996672, "CFBundleShortVersionString" : "7.0", "CFBundleIdentifier" : "com.apple.audio.codecs.Components", "size" : 10301440, "uuid" : "d9768fd2-eb2f-3c9c-b094-0bcbf92cc765", "path" : "\/System\/Library\/Components\/AudioCodecs.component\/Contents\/MacOS\/AudioCodecs", "name" : "AudioCodecs", "CFBundleVersion" : "7.0" }, { "source" : "P", "arch" : "x86_64", "base" : 5045121024, "CFBundleShortVersionString" : "1.14", "CFBundleIdentifier" : "com.apple.audio.units.Components", "size" : 1335296, "uuid" : "b7d2daa6-a2bf-3019-b6bc-6bf72550f719", "path" : "\/System\/Library\/Components\/CoreAudio.component\/Contents\/MacOS\/CoreAudio", "name" : "CoreAudio", "CFBundleVersion" : "1.14" }, { "source" : "P", "arch" : "x86_64", "base" : 5042024448, "CFBundleShortVersionString" : "1000.0", "CFBundleIdentifier" : "com.apple.CMIOBaseUnits", "size" : 1396736, "uuid" : "dab238cc-df97-39f5-81aa-678006e2217b", "path" : "\/System\/Library\/Frameworks\/CoreMediaIO.framework\/Versions\/A\/Resources\/BaseUnits\/CMIOBaseUnits.bundle\/Contents\/MacOS\/CMIOBaseUnits", "name" : "CMIOBaseUnits", "CFBundleVersion" : "5590.122.2.0.1" }, { "source" : "P", "arch" : "x86_64", "base" : 5043593216, "CFBundleShortVersionString" : "1000.0", "CFBundleIdentifier" : "com.apple.CMIOUnits", "size" : 741376, "uuid" : "e0f38971-a56e-36e1-b383-20c72563c717", "path" : "\/System\/Library\/Frameworks\/CoreMediaIO.framework\/Versions\/A\/Resources\/CMIOUnits.bundle\/Contents\/MacOS\/CMIOUnits", "name" : "CMIOUnits", "CFBundleVersion" : "5590.122.2.0.1" }, { "source" : "P", "arch" : "x86_64", "base" : 5138833408, "CFBundleShortVersionString" : "23.0.26", "CFBundleIdentifier" : "com.apple.AppleIntelICLGraphicsVADriver", "size" : 7917568, "uuid" : "d65da351-02d8-36b3-9be0-9acab3ae40ba", "path" : "\/System\/Library\/Extensions\/AppleIntelICLGraphicsVADriver.bundle\/Contents\/MacOS\/AppleIntelICLGraphicsVADriver", "name" : "AppleIntelICLGraphicsVADriver", "CFBundleVersion" : "23.0.0" }, { "source" : "P", "arch" : "x86_64", "base" : 5016285184, "CFBundleShortVersionString" : "23.0.26", "CFBundleIdentifier" : "com.apple.driver.AppleIntelICLLPGraphicsVAME", "size" : 8192, "uuid" : "c92fa091-78f2-3168-afe5-cb892ed641fd", "path" : "\/System\/Library\/Extensions\/AppleIntelICLLPGraphicsVAME.bundle\/Contents\/MacOS\/AppleIntelICLLPGraphicsVAME", "name" : "AppleIntelICLLPGraphicsVAME", "CFBundleVersion" : "23.0.0" }, { "source" : "P", "arch" : "x86_64", "base" : 140707845881856, "CFBundleShortVersionString" : "6.5.4", "CFBundleIdentifier" : "com.apple.SwiftUI", "size" : 19220906, "uuid" : "83eb36e0-aeb7-36dd-a912-42fbb13eb403", "path" : "\/System\/Library\/Frameworks\/SwiftUI.framework\/Versions\/A\/SwiftUI", "name" : "SwiftUI", "CFBundleVersion" : "6.5.4" }, { "source" : "P", "arch" : "x86_64", "base" : 140716410490880, "CFBundleShortVersionString" : "6.5.4", "CFBundleIdentifier" : "com.apple.SwiftUICore", "size" : 11949188, "uuid" : "86c55167-e675-36c8-8207-6ea7a6f546a3", "path" : "\/System\/Library\/Frameworks\/SwiftUICore.framework\/Versions\/A\/SwiftUICore", "name" : "SwiftUICore", "CFBundleVersion" : "6.5.4" }, { "source" : "P", "arch" : "x86_64", "base" : 140703346135040, "CFBundleShortVersionString" : "6.9", "CFBundleIdentifier" : "com.apple.AppKit", "size" : 22356791, "uuid" : "c26f6f9e-8230-3c1f-8c48-02d9de58fbc8", "path" : "\/System\/Library\/Frameworks\/AppKit.framework\/Versions\/C\/AppKit", "name" : "AppKit", "CFBundleVersion" : "2575.60.5" }, { "source" : "P", "arch" : "x86_64", "base" : 140703280361472, "size" : 632104, "uuid" : "3771ea6a-0fe5-3b63-961d-c09e01d5e680", "path" : "\/usr\/lib\/dyld", "name" : "dyld" }, { "size" : 0, "source" : "A", "base" : 0, "uuid" : "00000000-0000-0000-0000-000000000000" }, { "source" : "P", "arch" : "x86_64h", "base" : 140703280074752, "size" : 282716, "uuid" : "de35b5ee-5872-3e5a-a1f0-eb18c5b0434c", "path" : "\/usr\/lib\/libobjc.A.dylib", "name" : "libobjc.A.dylib" }, { "source" : "P", "arch" : "x86_64", "base" : 140703283937280, "size" : 248656, "uuid" : "dab10aa4-8afa-3d02-9cde-6023554ac858", "path" : "\/usr\/lib\/system\/libsystem_kernel.dylib", "name" : "libsystem_kernel.dylib" }, { "source" : "P", "arch" : "x86_64", "base" : 140703475974144, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.audio.caulk", "size" : 146696, "uuid" : "22877e7f-c603-37d7-8c72-9d864ee6e99d", "path" : "\/System\/Library\/PrivateFrameworks\/caulk.framework\/Versions\/A\/caulk", "name" : "caulk" }, { "source" : "P", "arch" : "x86_64", "base" : 140703284187136, "size" : 48592, "uuid" : "a6d1f05a-0743-31b7-9fe2-268f06ccd51a", "path" : "\/usr\/lib\/system\/libsystem_pthread.dylib", "name" : "libsystem_pthread.dylib" }, { "source" : "P", "arch" : "x86_64h", "base" : 140703284658176, "CFBundleShortVersionString" : "6.9", "CFBundleIdentifier" : "com.apple.CoreFoundation", "size" : 4935667, "uuid" : "2f3a4185-6038-37d0-a02b-ec620bcd977b", "path" : "\/System\/Library\/Frameworks\/CoreFoundation.framework\/Versions\/A\/CoreFoundation", "name" : "CoreFoundation", "CFBundleVersion" : "3502.1.401" }, { "source" : "P", "arch" : "x86_64", "base" : 140703282454528, "size" : 291594, "uuid" : "a709554b-250f-3213-b4dd-6708dd83f622", "path" : "\/usr\/lib\/system\/libdispatch.dylib", "name" : "libdispatch.dylib" }, { "source" : "P", "arch" : "x86_64", "base" : 140703476121600, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.CoreMedia", "size" : 1388698, "uuid" : "2999476d-3236-3602-a2e1-2080ff39f301", "path" : "\/System\/Library\/Frameworks\/CoreMedia.framework\/Versions\/A\/CoreMedia", "name" : "CoreMedia", "CFBundleVersion" : "3225.7.1" }, { "source" : "P", "arch" : "x86_64", "base" : 140703574380544, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.MediaToolbox", "size" : 10226141, "uuid" : "04606bfa-5f38-31c8-841c-aee4cc8bbca9", "path" : "\/System\/Library\/Frameworks\/MediaToolbox.framework\/Versions\/A\/MediaToolbox", "name" : "MediaToolbox", "CFBundleVersion" : "3225.7.1" } ], "sharedCache" : { "base" : 140703251918848, "size" : 30064771072, "uuid" : "57b0c2b8-36d6-3cf0-8bd0-0ac6133ec8b3" }, "vmSummary" : "ReadOnly portion of Libraries: Total=1.3G resident=0K(0%) swapped_out_or_unallocated=1.3G(100%)\nWritable regions: Total=189.3M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=189.3M(100%)\n\n VIRTUAL REGION \nREGION TYPE SIZE COUNT (non-coalesced) \n=========== ======= ======= \nAccelerate framework 128K 1 \nActivity Tracing 256K 1 \nAttributeGraph Data 1024K 1 \nCG image 52K 6 \nColorSync 112K 12 \nCoreAnimation 7308K 47 \nCoreGraphics 12K 2 \nCoreImage 6892K 1 \nCoreMedia memory pool 384K 3 \nCoreUI image data 1728K 13 \nDispatch continuations 32.0M 1 \nFoundation 16K 1 \nImage IO 12K 2 \nKernel Alloc Once 8K 1 \nMALLOC 124.2M 81 \nMALLOC guard page 64K 16 \nSTACK GUARD 56.1M 20 \nStack 17.6M 20 \nVM_ALLOCATE 6576K 54 \n__CTF 824 1 \n__DATA 35.7M 955 \n__DATA_CONST 103.0M 971 \n__DATA_DIRTY 2578K 338 \n__FONT_DATA 2352 1 \n__INFO_FILTER 8 1 \n__LINKEDIT 167.4M 13 \n__OBJC_RO 61.3M 1 \n__OBJC_RW 2395K 2 \n__TEXT 1.1G 990 \n__TPRO_CONST 16 2 \nmapped file 500.6M 51 \nshared memory 1328K 24 \n=========== ======= ======= \nTOTAL 2.2G 3633 \n", "legacyInfo" : { "threadTriggered" : { "queue" : "com.apple.main-thread" } }, "logWritingSignature" : "e4aafbc920ce13f99a9bef24af44d139ed972759", "trialInfo" : { "rollouts" : [ { "rolloutId" : "5fb4245a1bbfe8005e33a1e1", "factorPackIds" : { }, "deploymentId" : 240000021 }, { "rolloutId" : "67fd77fe1f9da9148f70d6ed", "factorPackIds" : { }, "deploymentId" : 240000011 } ], "experiments" : [ ] } } Model: MacBookAir9,1, BootROM 2075.120.2.0.0 (iBridge: 22.16.15072.0.0,0), 2 processors, Dual-Core Intel Core i3, 1.1 GHz, 8 GB, SMC Graphics: Intel Iris Plus Graphics, Intel Iris Plus Graphics, Built-In Display: Color LCD, 2560 x 1600 Retina, Main, MirrorOff, Online Memory Module: BANK 0/ChannelA-DIMM0, 4 GB, LPDDR4X, 3733 MHz, Samsung, K3UH5H50MM-JGCJ Memory Module: BANK 2/ChannelB-DIMM0, 4 GB, LPDDR4X, 3733 MHz, Samsung, K3UH5H50MM-JGCJ AirPort: spairport_wireless_card_type_wifi (0x14E4, 0x870), wl0: Jul 26 2024 20:45:01 version 16.20.380.0.3.6.130 FWID 01-c866e60e AirPort: Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports Network Service: Wi-Fi, AirPort, en0 USB Device: USB31Bus USB Device: USB31Bus USB Device: T2Bus USB Device: Touch Bar Backlight 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., 86.0 怎么解决
最新发布
08-01
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值