vadimcn / codelldb

A native debugger extension for VSCode based on LLDB
https://marketplace.visualstudio.com/items?itemName=vadimcn.vscode-lldb
MIT License
2.58k stars 246 forks source link

Seemingly Random SIGSEGV on OSX #514

Open adrebit opened 3 years ago

adrebit commented 3 years ago

OS: Mac OSX Catalina 10.15.7 VSCode version: 1.60.0 (Universal) CodeLLDB version: v1.6.6 Compiler: Apple Clang 11.0.3 Debuggee: Native c++ executable

Since upgrading to v1.6.6 I see the error message Oops! The debug adapter has terminated abnormally pop up seemingly randomly which causes the debugger to abort and the program being debugged to run to completion. I have seen this when stepping over, in or out of functions and when hovering over variables to see their values. I have not been able to identify a common cause but it seems to have a change to happen when I interact with the debugger in any way.

Verbose log - crash when stepping out of a function (mildly redacted with `@@@` for some private code specifics)
configuration: {
  name: 'CMake Launch',
  type: 'lldb',
  request: 'launch',
  program: '${command:cmake.launchTargetPath}',
  args: [],
  cwd: '${workspaceFolder}',
  __configurationTarget: 5,
  relativePathBase: '/Users/@@@'
}
liblldb: /Users/@@@/.vscode/extensions/vadimcn.vscode-lldb-1.6.6/lldb/lib/liblldb.dylib
environment: {}
params: { evaluateForHovers: true, commandCompletions: true }
Listening on port 52663
[2021-09-11T21:55:46.739Z DEBUG codelldb] New debug session
INFO(Python) 17:55:47 formatters: Initializing
INFO(Python) 17:55:47 formatters.rust: Initializing
[2021-09-11T21:55:47.086Z DEBUG codelldb::dap_codec] --> {"command":"initialize","arguments":{"clientID":"vscode","clientName":"Visual Studio Code","adapterID":"lldb","pathFormat":"path","linesStartAt1":true,"columnsStartAt1":true,"supportsVariableType":true,"supportsVariablePaging":true,"supportsRunInTerminalRequest":true,"locale":"en-us","supportsProgressReporting":true,"supportsInvalidatedEvent":true,"supportsMemoryReferences":true},"type":"request","seq":1}
[2021-09-11T21:55:47.086Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":1,"success":true,"command":"initialize","body":{"exceptionBreakpointFilters":[{"default":true,"filter":"cpp_throw","label":"C++: on throw"},{"default":false,"filter":"cpp_catch","label":"C++: on catch"}],"supportTerminateDebuggee":true,"supportsCancelRequest":true,"supportsCompletionsRequest":true,"supportsConditionalBreakpoints":true,"supportsConfigurationDoneRequest":true,"supportsDataBreakpoints":true,"supportsDelayedStackTraceLoading":true,"supportsEvaluateForHovers":true,"supportsFunctionBreakpoints":true,"supportsGotoTargetsRequest":true,"supportsHitConditionalBreakpoints":true,"supportsLogPoints":true,"supportsReadMemoryRequest":true,"supportsRestartFrame":true,"supportsSetVariable":true}}
[2021-09-11T21:55:47.090Z DEBUG codelldb::dap_codec] --> {"command":"launch","arguments":{"name":"CMake Launch","type":"lldb","request":"launch","program":"/Users/@@@","args":[],"cwd":"/Users/@@@","__configurationTarget":5,"relativePathBase":"/Users/@@@","_adapterSettings":{"displayFormat":"auto","showDisassembly":"auto","dereferencePointers":true,"suppressMissingSourceFiles":true,"evaluationTimeout":5,"consoleMode":"commands","sourceLanguages":null,"terminalPromptClear":null,"evaluateForHovers":true,"commandCompletions":true},"__sessionId":"d2a4a752-62e6-46d2-980b-0fee4f8902e4"},"type":"request","seq":2}
[2021-09-11T21:55:47.091Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":1,"event":"capabilities","body":{"capabilities":{"exceptionBreakpointFilters":[{"default":true,"filter":"cpp_throw","label":"C++: on throw"},{"default":false,"filter":"cpp_catch","label":"C++: on catch"}],"supportTerminateDebuggee":true,"supportsCancelRequest":true,"supportsCompletionsRequest":true,"supportsConditionalBreakpoints":true,"supportsConfigurationDoneRequest":true,"supportsDataBreakpoints":true,"supportsDelayedStackTraceLoading":true,"supportsEvaluateForHovers":true,"supportsFunctionBreakpoints":true,"supportsGotoTargetsRequest":true,"supportsHitConditionalBreakpoints":true,"supportsLogPoints":true,"supportsReadMemoryRequest":true,"supportsRestartFrame":true,"supportsSetVariable":true}}}
[2021-09-11T21:55:47.289Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":2,"event":"initialized"}
[2021-09-11T21:55:47.289Z DEBUG codelldb::debug_session] Debug event: 0x7f8a7e4069c8 Event: broadcaster = 0x7f8a82332a40 (lldb.target), type = 0x00000002 (modules-loaded), data = {test_runtime}
[2021-09-11T21:55:47.289Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":3,"event":"module","body":{"module":{"addressRange":"FFFFFFFFFFFFFFFF","id":"FFFFFFFFFFFFFFFF","name":"@@@","path":"/Users/@@@","symbolFilePath":"/Users/@@@","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.289Z DEBUG codelldb::dap_codec] <-- {"type":"request","seq":4,"command":"runInTerminal","arguments":{"args":["/Users/@@@/.vscode/extensions/vadimcn.vscode-lldb-1.6.6/adapter/codelldb","terminal-agent","--port=52666"],"cwd":"","kind":"integrated","title":"CMake Launch"}}
[2021-09-11T21:55:47.291Z DEBUG codelldb::dap_codec] --> {"command":"setBreakpoints","arguments":{"source":{"name":"@@@","path":"/Users/@@@"},"lines":[2165],"breakpoints":[{"line":2165}],"sourceModified":false},"type":"request","seq":3}
[2021-09-11T21:55:47.307Z DEBUG codelldb::dap_codec] --> {"type":"response","seq":4,"command":"runInTerminal","request_seq":4,"success":true,"body":{"shellProcessId":56304}}
[2021-09-11T21:55:47.405Z DEBUG codelldb::debug_session] Debug event: 0x7f8a806143b8 Event: broadcaster = 0x7f8a82332a40 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-09-11T21:55:47.405Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":3,"success":true,"command":"setBreakpoints","body":{"breakpoints":[{"id":1,"line":2165,"message":"Resolved locations: 0","verified":true}]}}
[2021-09-11T21:55:47.409Z DEBUG codelldb::dap_codec] --> {"command":"setFunctionBreakpoints","arguments":{"breakpoints":[]},"type":"request","seq":5}
[2021-09-11T21:55:47.409Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":5,"success":true,"command":"setFunctionBreakpoints","body":{"breakpoints":[]}}
[2021-09-11T21:55:47.414Z DEBUG codelldb::dap_codec] --> {"command":"setDataBreakpoints","arguments":{"breakpoints":[]},"type":"request","seq":6}
[2021-09-11T21:55:47.414Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":6,"success":true,"command":"setDataBreakpoints","body":{"breakpoints":[]}}
[2021-09-11T21:55:47.418Z DEBUG codelldb::dap_codec] --> {"command":"setExceptionBreakpoints","arguments":{"filters":[]},"type":"request","seq":7}
[2021-09-11T21:55:47.418Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":7,"success":true,"command":"setExceptionBreakpoints"}
[2021-09-11T21:55:47.420Z DEBUG codelldb::dap_codec] --> {"command":"configurationDone","type":"request","seq":8}
[2021-09-11T21:55:47.421Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":5,"event":"output","body":{"output":"Launching: /Users/@@@\n"}}
[2021-09-11T21:55:47.727Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":6,"event":"output","body":{"output":"Launched process 88705\n"}}
[2021-09-11T21:55:47.727Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":2,"success":true,"command":"launch"}
[2021-09-11T21:55:47.727Z DEBUG codelldb::debug_session] Debug event: 0x7f8a801523a8 Event: broadcaster = 0x7f8a82332a40 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-09-11T21:55:47.727Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":8,"success":true,"command":"configurationDone"}
[2021-09-11T21:55:47.727Z DEBUG codelldb::debug_session] Debug event: 0x7f8a80160098 Event: broadcaster = 0x7f8a82332a40 (lldb.target), type = 0x00000004 (modules-unloaded), data = {test_runtime}
[2021-09-11T21:55:47.727Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":7,"event":"module","body":{"module":{"id":"100000000","name":""},"reason":"removed"}}
[2021-09-11T21:55:47.727Z DEBUG codelldb::debug_session] Debug event: 0x7f8a7e422dc8 Event: broadcaster = 0x7f8a82332a40 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-09-11T21:55:47.727Z DEBUG codelldb::debug_session] Debug event: 0x7f8a80033a88 Event: broadcaster = 0x7f8a82332a40 (lldb.target), type = 0x00000002 (modules-loaded), data = {dyld, test_runtime}
[2021-09-11T21:55:47.727Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":8,"event":"breakpoint","body":{"breakpoint":{"id":1,"line":2165,"message":"Resolved locations: 1","verified":true},"reason":"changed"}}
[2021-09-11T21:55:47.727Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":9,"event":"module","body":{"module":{"addressRange":"100B98000","id":"100B98000","name":"dyld","path":"/usr/lib/dyld","symbolFilePath":"/usr/lib/dyld","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.727Z DEBUG codelldb::debug_session] Debug event: 0x7f8a801712e0 Event: broadcaster = 0x7f8a8085a650 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7f8a8085a618 (pid = 88705), state = running}
[2021-09-11T21:55:47.727Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":10,"event":"module","body":{"module":{"addressRange":"100000000","id":"100000000","name":"@@@","path":"/Users/@@@","symbolFilePath":"/Users/@@@","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.727Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":11,"event":"continued","body":{"allThreadsContinued":true,"threadId":0}}
[2021-09-11T21:55:47.732Z DEBUG codelldb::dap_codec] --> {"command":"threads","type":"request","seq":9}
[2021-09-11T21:55:47.732Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":9,"success":true,"command":"threads","body":{"threads":[{"id":18954494,"name":"1: tid=18954494"}]}}
[2021-09-11T21:55:47.796Z DEBUG codelldb::debug_session] Debug event: 0x7f8a80188d08 Event: broadcaster = 0x7f8a82332a40 (lldb.target), type = 0x00000002 (modules-loaded), data = {libSystem.B.dylib, libc++.1.dylib, libcache.dylib, libcommonCrypto.dylib, libcompiler_rt.dylib, libcopyfile.dylib, libcorecrypto.dylib, libdispatch.dylib, libdyld.dylib, libkeymgr.dylib, liblaunch.dylib, libmacho.dylib, libquarantine.dylib, libremovefile.dylib, libsystem_asl.dylib, libsystem_blocks.dylib, libsystem_c.dylib, libsystem_configuration.dylib, libsystem_coreservices.dylib, libsystem_darwin.dylib, libsystem_dnssd.dylib, libsystem_featureflags.dylib, libsystem_info.dylib, libsystem_m.dylib, libsystem_malloc.dylib, libsystem_networkextension.dylib, libsystem_notify.dylib, libsystem_sandbox.dylib, libsystem_secinit.dylib, libsystem_kernel.dylib, libsystem_platform.dylib, libsystem_pthread.dylib, libsystem_symptoms.dylib, libsystem_trace.dylib, libunwind.dylib, libxpc.dylib, libobjc.A.dylib, libc++abi.dylib}
[2021-09-11T21:55:47.796Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":12,"event":"module","body":{"module":{"addressRange":"7FFF64655000","id":"7FFF64655000","name":"libSystem.B.dylib","path":"/usr/lib/libSystem.B.dylib","symbolFilePath":"/usr/lib/libSystem.B.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.796Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":13,"event":"module","body":{"module":{"addressRange":"7FFF6493B000","id":"7FFF6493B000","name":"libc++.1.dylib","path":"/usr/lib/libc++.1.dylib","symbolFilePath":"/usr/lib/libc++.1.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.796Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":14,"event":"module","body":{"module":{"addressRange":"7FFF67452000","id":"7FFF67452000","name":"libcache.dylib","path":"/usr/lib/system/libcache.dylib","symbolFilePath":"/usr/lib/system/libcache.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.796Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":15,"event":"module","body":{"module":{"addressRange":"7FFF67458000","id":"7FFF67458000","name":"libcommonCrypto.dylib","path":"/usr/lib/system/libcommonCrypto.dylib","symbolFilePath":"/usr/lib/system/libcommonCrypto.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.796Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":16,"event":"module","body":{"module":{"addressRange":"7FFF67464000","id":"7FFF67464000","name":"libcompiler_rt.dylib","path":"/usr/lib/system/libcompiler_rt.dylib","symbolFilePath":"/usr/lib/system/libcompiler_rt.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.796Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":17,"event":"module","body":{"module":{"addressRange":"7FFF6746C000","id":"7FFF6746C000","name":"libcopyfile.dylib","path":"/usr/lib/system/libcopyfile.dylib","symbolFilePath":"/usr/lib/system/libcopyfile.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.796Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":18,"event":"module","body":{"module":{"addressRange":"7FFF67476000","id":"7FFF67476000","name":"libcorecrypto.dylib","path":"/usr/lib/system/libcorecrypto.dylib","symbolFilePath":"/usr/lib/system/libcorecrypto.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.796Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":19,"event":"module","body":{"module":{"addressRange":"7FFF67615000","id":"7FFF67615000","name":"libdispatch.dylib","path":"/usr/lib/system/libdispatch.dylib","symbolFilePath":"/usr/lib/system/libdispatch.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.796Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":20,"event":"module","body":{"module":{"addressRange":"7FFF67656000","id":"7FFF67656000","name":"libdyld.dylib","path":"/usr/lib/system/libdyld.dylib","symbolFilePath":"/usr/lib/system/libdyld.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.796Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":21,"event":"module","body":{"module":{"addressRange":"7FFF6768D000","id":"7FFF6768D000","name":"libkeymgr.dylib","path":"/usr/lib/system/libkeymgr.dylib","symbolFilePath":"/usr/lib/system/libkeymgr.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.796Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":22,"event":"module","body":{"module":{"addressRange":"7FFF6769B000","id":"7FFF6769B000","name":"liblaunch.dylib","path":"/usr/lib/system/liblaunch.dylib","symbolFilePath":"/usr/lib/system/liblaunch.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.796Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":23,"event":"module","body":{"module":{"addressRange":"7FFF6769C000","id":"7FFF6769C000","name":"libmacho.dylib","path":"/usr/lib/system/libmacho.dylib","symbolFilePath":"/usr/lib/system/libmacho.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.796Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":24,"event":"module","body":{"module":{"addressRange":"7FFF676A2000","id":"7FFF676A2000","name":"libquarantine.dylib","path":"/usr/lib/system/libquarantine.dylib","symbolFilePath":"/usr/lib/system/libquarantine.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.796Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":25,"event":"module","body":{"module":{"addressRange":"7FFF676A5000","id":"7FFF676A5000","name":"libremovefile.dylib","path":"/usr/lib/system/libremovefile.dylib","symbolFilePath":"/usr/lib/system/libremovefile.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.796Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":26,"event":"module","body":{"module":{"addressRange":"7FFF676A7000","id":"7FFF676A7000","name":"libsystem_asl.dylib","path":"/usr/lib/system/libsystem_asl.dylib","symbolFilePath":"/usr/lib/system/libsystem_asl.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.796Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":27,"event":"module","body":{"module":{"addressRange":"7FFF676BF000","id":"7FFF676BF000","name":"libsystem_blocks.dylib","path":"/usr/lib/system/libsystem_blocks.dylib","symbolFilePath":"/usr/lib/system/libsystem_blocks.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.796Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":28,"event":"module","body":{"module":{"addressRange":"7FFF676C0000","id":"7FFF676C0000","name":"libsystem_c.dylib","path":"/usr/lib/system/libsystem_c.dylib","symbolFilePath":"/usr/lib/system/libsystem_c.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.796Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":29,"event":"module","body":{"module":{"addressRange":"7FFF67748000","id":"7FFF67748000","name":"libsystem_configuration.dylib","path":"/usr/lib/system/libsystem_configuration.dylib","symbolFilePath":"/usr/lib/system/libsystem_configuration.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.797Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":30,"event":"module","body":{"module":{"addressRange":"7FFF6774C000","id":"7FFF6774C000","name":"libsystem_coreservices.dylib","path":"/usr/lib/system/libsystem_coreservices.dylib","symbolFilePath":"/usr/lib/system/libsystem_coreservices.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.797Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":31,"event":"module","body":{"module":{"addressRange":"7FFF67750000","id":"7FFF67750000","name":"libsystem_darwin.dylib","path":"/usr/lib/system/libsystem_darwin.dylib","symbolFilePath":"/usr/lib/system/libsystem_darwin.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.797Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":32,"event":"module","body":{"module":{"addressRange":"7FFF67759000","id":"7FFF67759000","name":"libsystem_dnssd.dylib","path":"/usr/lib/system/libsystem_dnssd.dylib","symbolFilePath":"/usr/lib/system/libsystem_dnssd.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.797Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":33,"event":"module","body":{"module":{"addressRange":"7FFF67761000","id":"7FFF67761000","name":"libsystem_featureflags.dylib","path":"/usr/lib/system/libsystem_featureflags.dylib","symbolFilePath":"/usr/lib/system/libsystem_featureflags.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.797Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":34,"event":"module","body":{"module":{"addressRange":"7FFF67763000","id":"7FFF67763000","name":"libsystem_info.dylib","path":"/usr/lib/system/libsystem_info.dylib","symbolFilePath":"/usr/lib/system/libsystem_info.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.797Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":35,"event":"module","body":{"module":{"addressRange":"7FFF677DE000","id":"7FFF677DE000","name":"libsystem_m.dylib","path":"/usr/lib/system/libsystem_m.dylib","symbolFilePath":"/usr/lib/system/libsystem_m.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.797Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":36,"event":"module","body":{"module":{"addressRange":"7FFF67826000","id":"7FFF67826000","name":"libsystem_malloc.dylib","path":"/usr/lib/system/libsystem_malloc.dylib","symbolFilePath":"/usr/lib/system/libsystem_malloc.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.797Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":37,"event":"module","body":{"module":{"addressRange":"7FFF6784E000","id":"7FFF6784E000","name":"libsystem_networkextension.dylib","path":"/usr/lib/system/libsystem_networkextension.dylib","symbolFilePath":"/usr/lib/system/libsystem_networkextension.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.797Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":38,"event":"module","body":{"module":{"addressRange":"7FFF6785C000","id":"7FFF6785C000","name":"libsystem_notify.dylib","path":"/usr/lib/system/libsystem_notify.dylib","symbolFilePath":"/usr/lib/system/libsystem_notify.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.797Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":39,"event":"module","body":{"module":{"addressRange":"7FFF6787A000","id":"7FFF6787A000","name":"libsystem_sandbox.dylib","path":"/usr/lib/system/libsystem_sandbox.dylib","symbolFilePath":"/usr/lib/system/libsystem_sandbox.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.797Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":40,"event":"module","body":{"module":{"addressRange":"7FFF6787F000","id":"7FFF6787F000","name":"libsystem_secinit.dylib","path":"/usr/lib/system/libsystem_secinit.dylib","symbolFilePath":"/usr/lib/system/libsystem_secinit.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.797Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":41,"event":"module","body":{"module":{"addressRange":"7FFF677B1000","id":"7FFF677B1000","name":"libsystem_kernel.dylib","path":"/usr/lib/system/libsystem_kernel.dylib","symbolFilePath":"/usr/lib/system/libsystem_kernel.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.797Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":42,"event":"module","body":{"module":{"addressRange":"7FFF67866000","id":"7FFF67866000","name":"libsystem_platform.dylib","path":"/usr/lib/system/libsystem_platform.dylib","symbolFilePath":"/usr/lib/system/libsystem_platform.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.797Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":43,"event":"module","body":{"module":{"addressRange":"7FFF6786F000","id":"7FFF6786F000","name":"libsystem_pthread.dylib","path":"/usr/lib/system/libsystem_pthread.dylib","symbolFilePath":"/usr/lib/system/libsystem_pthread.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.797Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":44,"event":"module","body":{"module":{"addressRange":"7FFF67882000","id":"7FFF67882000","name":"libsystem_symptoms.dylib","path":"/usr/lib/system/libsystem_symptoms.dylib","symbolFilePath":"/usr/lib/system/libsystem_symptoms.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.797Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":45,"event":"module","body":{"module":{"addressRange":"7FFF6788A000","id":"7FFF6788A000","name":"libsystem_trace.dylib","path":"/usr/lib/system/libsystem_trace.dylib","symbolFilePath":"/usr/lib/system/libsystem_trace.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.797Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":46,"event":"module","body":{"module":{"addressRange":"7FFF678A2000","id":"7FFF678A2000","name":"libunwind.dylib","path":"/usr/lib/system/libunwind.dylib","symbolFilePath":"/usr/lib/system/libunwind.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.797Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":47,"event":"module","body":{"module":{"addressRange":"7FFF678A8000","id":"7FFF678A8000","name":"libxpc.dylib","path":"/usr/lib/system/libxpc.dylib","symbolFilePath":"/usr/lib/system/libxpc.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.797Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":48,"event":"module","body":{"module":{"addressRange":"7FFF664B5000","id":"7FFF664B5000","name":"libobjc.A.dylib","path":"/usr/lib/libobjc.A.dylib","symbolFilePath":"/usr/lib/libobjc.A.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.797Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":49,"event":"module","body":{"module":{"addressRange":"7FFF6498E000","id":"7FFF6498E000","name":"libc++abi.dylib","path":"/usr/lib/libc++abi.dylib","symbolFilePath":"/usr/lib/libc++abi.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-09-11T21:55:47.831Z DEBUG codelldb::debug_session::breakpoints] Callback for breakpoint location 1.1: where = @@@::@@@() + 6429 at @@@:2165:34, address = 0x000000010002cccd, resolved, hit count = 1 

[2021-09-11T21:55:47.831Z DEBUG codelldb::debug_session] Debug event: 0x7f8a7e533ff0 Event: broadcaster = 0x7f8a8085a650 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7f8a8085a618 (pid = 88705), state = stopped}
[2021-09-11T21:55:47.831Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":50,"event":"stopped","body":{"allThreadsStopped":true,"reason":"breakpoint","threadId":18954494}}
[2021-09-11T21:55:47.833Z DEBUG codelldb::dap_codec] --> {"command":"threads","type":"request","seq":10}
[2021-09-11T21:55:47.833Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":10,"success":true,"command":"threads","body":{"threads":[{"id":18954494,"name":"1: tid=18954494"}]}}
[2021-09-11T21:55:47.835Z DEBUG codelldb::dap_codec] --> {"command":"stackTrace","arguments":{"threadId":18954494,"startFrame":0,"levels":1},"type":"request","seq":11}
[2021-09-11T21:55:47.836Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":11,"success":true,"command":"stackTrace","body":{"stackFrames":[{"column":34,"id":1001,"line":2165,"name":"@@@::TestBody()","source":{"name":"@@@","path":"/Users/@@@"}}],"totalFrames":14}}
[2021-09-11T21:55:48.258Z DEBUG codelldb::dap_codec] --> {"command":"stackTrace","arguments":{"threadId":18954494,"startFrame":1,"levels":19},"type":"request","seq":12}
[2021-09-11T21:55:48.262Z DEBUG codelldb::disassembly] libdyld.dylib`start + 1
[2021-09-11T21:55:48.262Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":12,"success":true,"command":"stackTrace","body":{"stackFrames":[{"column":10,"id":1002,"line":2443,"name":"void testing::internal::HandleSehExceptionsInMethodIfSupported(testing::Test*, void (testing::Test::*)(), char const*)","source":{"name":"gtest.cc","path":"/Users/@@@"}},{"column":14,"id":1003,"line":2479,"name":"void testing::internal::HandleExceptionsInMethodIfSupported(testing::Test*, void (testing::Test::*)(), char const*)","source":{"name":"gtest.cc","path":"/Users/@@@"}},{"column":5,"id":1004,"line":2517,"name":"testing::Test::Run()","source":{"name":"gtest.cc","path":"/Users/@@@"}},{"column":11,"id":1005,"line":2693,"name":"testing::TestInfo::Run()","source":{"name":"gtest.cc","path":"/Users/@@@"}},{"column":28,"id":1006,"line":2811,"name":"testing::TestCase::Run()","source":{"name":"gtest.cc","path":"/Users/@@@"}},{"column":43,"id":1007,"line":5177,"name":"testing::internal::UnitTestImpl::RunAllTests()","source":{"name":"gtest.cc","path":"/Users/@@@"}},{"column":10,"id":1008,"line":2443,"name":"bool testing::internal::HandleSehExceptionsInMethodIfSupported(testing::internal::UnitTestImpl*, bool (testing::internal::UnitTestImpl::*)(), char const*)","source":{"name":"gtest.cc","path":"/Users/@@@"}},{"column":14,"id":1009,"line":2479,"name":"bool testing::internal::HandleExceptionsInMethodIfSupported(testing::internal::UnitTestImpl*, bool (testing::internal::UnitTestImpl::*)(), char const*)","source":{"name":"gtest.cc","path":"/Users/@@@"}},{"column":10,"id":1010,"line":4786,"name":"testing::UnitTest::Run()","source":{"name":"gtest.cc","path":"/Users/@@@"}},{"column":46,"id":1011,"line":2341,"name":"RUN_ALL_TESTS()","source":{"name":"gtest.h","path":"/Users/@@@"}},{"column":10,"id":1012,"line":36,"name":"main","source":{"name":"gtest_main.cc","path":"/Users/@@@"}},{"column":0,"id":1013,"line":4,"name":"start","presentationHint":"subtle","source":{"name":"@start","sourceReference":1000}},{"column":0,"id":1014,"line":4,"name":"start","presentationHint":"subtle","source":{"name":"@start","sourceReference":1000}}],"totalFrames":14}}
[2021-09-11T21:55:48.281Z DEBUG codelldb::dap_codec] --> {"command":"scopes","arguments":{"frameId":1001},"type":"request","seq":13}
[2021-09-11T21:55:48.281Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":13,"success":true,"command":"scopes","body":{"scopes":[{"expensive":false,"name":"Local","variablesReference":1015},{"expensive":false,"name":"Static","variablesReference":1016},{"expensive":false,"name":"Global","variablesReference":1017},{"expensive":false,"name":"Registers","variablesReference":1018}]}}
[2021-09-11T21:55:48.284Z DEBUG codelldb::dap_codec] --> {"command":"variables","arguments":{"variablesReference":1015},"type":"request","seq":14}
[2021-09-11T21:55:48.383Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":14,"success":true,"command":"variables","body":{"variables":[{"evaluateName":"this","memoryReference":"0x102104080","name":"this","type":"@@@","value":"{...}","variablesReference":1019},{"evaluateName":"a","memoryReference":"0x7FFEEFBFEDF8","name":"a","type":"@@@","value":"{@@@, ...}","variablesReference":1020},{"evaluateName":"s","memoryReference":"0x7FFEEFBFEDE0","name":"s","type":"@@@","value":"size=9","variablesReference":1021},{"evaluateName":"context","memoryReference":"0x7FFEEFBFE918","name":"context","type":"@@@","value":"{@@@, ...}","variablesReference":1022},{"evaluateName":"@@@","memoryReference":"0x7FFEEFBFE828","name":"@@@","type":"@@@","value":"{@@@}","variablesReference":1023},{"evaluateName":"@@@","memoryReference":"0x7FFEEFBFE808","name":"@@@","type":"@@@","value":"{...}","variablesReference":1024},{"evaluateName":"m","memoryReference":"0x7FFEEFBFE580","name":"m","type":"@@@","value":"{@@@}","variablesReference":1025},{"evaluateName":"i","memoryReference":"0x7FFEEFBFE578","name":"i","type":"size_t","value":"0","variablesReference":0}]}}
[2021-09-11T21:55:49.330Z DEBUG codelldb::dap_codec] --> {"command":"stepIn","arguments":{"threadId":18954494},"type":"request","seq":15}
[2021-09-11T21:55:49.331Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":15,"success":true,"command":"stepIn"}
[2021-09-11T21:55:49.331Z DEBUG codelldb::debug_session] Debug event: 0x7f8a802b8370 Event: broadcaster = 0x7f8a8085a650 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7f8a8085a618 (pid = 88705), state = running}
[2021-09-11T21:55:49.331Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":51,"event":"continued","body":{"allThreadsContinued":true,"threadId":0}}
[2021-09-11T21:55:49.377Z DEBUG codelldb::debug_session] Debug event: 0x7f8a7e7425e0 Event: broadcaster = 0x7f8a8085a650 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7f8a8085a618 (pid = 88705), state = stopped}
[2021-09-11T21:55:49.377Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":52,"event":"stopped","body":{"allThreadsStopped":true,"reason":"step","threadId":18954494}}
[2021-09-11T21:55:49.379Z DEBUG codelldb::dap_codec] --> {"command":"threads","type":"request","seq":16}
[2021-09-11T21:55:49.379Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":16,"success":true,"command":"threads","body":{"threads":[{"id":18954494,"name":"1: tid=18954494"}]}}
[2021-09-11T21:55:49.381Z DEBUG codelldb::dap_codec] --> {"command":"stackTrace","arguments":{"threadId":18954494,"startFrame":0,"levels":1},"type":"request","seq":17}
[2021-09-11T21:55:49.381Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":17,"success":true,"command":"stackTrace","body":{"stackFrames":[{"column":8,"id":1001,"line":765,"name":"@@@(@@@) const","source":{"name":"@@@","path":"/Users/@@@"}}],"totalFrames":15}}
[2021-09-11T21:55:49.808Z DEBUG codelldb::dap_codec] --> {"command":"stackTrace","arguments":{"threadId":18954494,"startFrame":1,"levels":19},"type":"request","seq":18}
[2021-09-11T21:55:49.808Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":18,"success":true,"command":"stackTrace","body":{"stackFrames":[{"column":15,"id":1002,"line":2165,"name":"@@@::TestBody()","source":{"name":"@@@","path":"/Users/@@@"}},{"column":10,"id":1003,"line":2443,"name":"void testing::internal::HandleSehExceptionsInMethodIfSupported(testing::Test*, void (testing::Test::*)(), char const*)","source":{"name":"gtest.cc","path":"/Users/@@@"}},{"column":14,"id":1004,"line":2479,"name":"void testing::internal::HandleExceptionsInMethodIfSupported(testing::Test*, void (testing::Test::*)(), char const*)","source":{"name":"gtest.cc","path":"/Users/@@@"}},{"column":5,"id":1005,"line":2517,"name":"testing::Test::Run()","source":{"name":"gtest.cc","path":"/Users/@@@"}},{"column":11,"id":1006,"line":2693,"name":"testing::TestInfo::Run()","source":{"name":"gtest.cc","path":"/Users/@@@"}},{"column":28,"id":1007,"line":2811,"name":"testing::TestCase::Run()","source":{"name":"gtest.cc","path":"/Users/@@@"}},{"column":43,"id":1008,"line":5177,"name":"testing::internal::UnitTestImpl::RunAllTests()","source":{"name":"gtest.cc","path":"/Users/@@@"}},{"column":10,"id":1009,"line":2443,"name":"bool testing::internal::HandleSehExceptionsInMethodIfSupported(testing::internal::UnitTestImpl*, bool (testing::internal::UnitTestImpl::*)(), char const*)","source":{"name":"gtest.cc","path":"/Users/@@@"}},{"column":14,"id":1010,"line":2479,"name":"bool testing::internal::HandleExceptionsInMethodIfSupported(testing::internal::UnitTestImpl*, bool (testing::internal::UnitTestImpl::*)(), char const*)","source":{"name":"gtest.cc","path":"/Users/@@@"}},{"column":10,"id":1011,"line":4786,"name":"testing::UnitTest::Run()","source":{"name":"gtest.cc","path":"/Users/@@@"}},{"column":46,"id":1012,"line":2341,"name":"RUN_ALL_TESTS()","source":{"name":"gtest.h","path":"/Users/@@@"}},{"column":10,"id":1013,"line":36,"name":"main","source":{"name":"gtest_main.cc","path":"/Users/@@@"}},{"column":0,"id":1014,"line":4,"name":"start","presentationHint":"subtle","source":{"name":"@start","sourceReference":1000}},{"column":0,"id":1026,"line":4,"name":"start","presentationHint":"subtle","source":{"name":"@start","sourceReference":1000}}],"totalFrames":15}}
[2021-09-11T21:55:49.825Z DEBUG codelldb::dap_codec] --> {"command":"scopes","arguments":{"frameId":1001},"type":"request","seq":19}
[2021-09-11T21:55:49.825Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":19,"success":true,"command":"scopes","body":{"scopes":[{"expensive":false,"name":"Local","variablesReference":1015},{"expensive":false,"name":"Static","variablesReference":1016},{"expensive":false,"name":"Global","variablesReference":1017},{"expensive":false,"name":"Registers","variablesReference":1018}]}}
[2021-09-11T21:55:49.826Z DEBUG codelldb::dap_codec] --> {"command":"variables","arguments":{"variablesReference":1015},"type":"request","seq":20}
[2021-09-11T21:55:49.836Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":20,"success":true,"command":"variables","body":{"variables":[{"evaluateName":"this","memoryReference":"0x7FFEEFBFD1D0","name":"this","type":"const @@@ *","value":"{@@@}","variablesReference":1019},{"evaluateName":"context","memoryReference":"0x7FFEEFBFD1C8","name":"context","type":"const @@@ &","value":"{@@@, ...}","variablesReference":1022},{"evaluateName":"@@@","memoryReference":"0x7FFEEFBFD1C0","name":"@@@","type":"const @@@ &","value":"{...}","variablesReference":1027},{"evaluateName":"result","memoryReference":"0x7FFEEFBFE488","name":"result","type":"@@@","value":"{@@@}","variablesReference":1028}]}}
[2021-09-11T21:55:49.937Z DEBUG codelldb::dap_codec] --> {"command":"stepOut","arguments":{"threadId":18954494},"type":"request","seq":21}
[2021-09-11T21:55:49.938Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":21,"success":true,"command":"stepOut"}
[2021-09-11T21:55:49.938Z DEBUG codelldb::debug_session] Debug event: 0x7f8a7e557c10 Event: broadcaster = 0x7f8a8085a650 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7f8a8085a618 (pid = 88705), state = running}
[2021-09-11T21:55:49.938Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":53,"event":"continued","body":{"allThreadsContinued":true,"threadId":0}}
Received signal: SIGSEGV
   0: backtrace::backtrace::trace
   1: backtrace::capture::Backtrace::new
   2: codelldb::hook_crashes::handler
   3: __sigtramp
   4: __ZN15SymbolFileDWARF13GetTypeSystemER9DWARFUnit
   5: __ZN15SymbolFileDWARF14GetDWARFParserER9DWARFUnit
   6: __ZN19DWARFASTParserClang26CopyUniqueClassMethodTypesERK8DWARFDIES2_PN12lldb_private4TypeERNSt3__16vectorIS0_NS6_9allocatorIS0_EEEE
   7: __ZN19DWARFASTParserClang15ParseSubroutineERK8DWARFDIER25ParsedDWARFTypeAttributes
   8: __ZN19DWARFASTParserClang18ParseTypeFromDWARFERKN12lldb_private13SymbolContextERK8DWARFDIEPb
   9: __ZN15SymbolFileDWARF9ParseTypeERKN12lldb_private13SymbolContextERK8DWARFDIEPb
  10: __ZN15SymbolFileDWARF13GetTypeForDIEERK8DWARFDIEb
  11: __ZN15SymbolFileDWARF11ResolveTypeERK8DWARFDIEbb
  12: __ZN15SymbolFileDWARF14ResolveTypeUIDEy
  13: __ZN23SymbolFileDWARFDebugMap14ResolveTypeUIDEy
  14: __ZN12lldb_private8Function7GetTypeEv
  15: __ZN12lldb_private8Function15GetCompilerTypeEv
  16: __ZN12lldb_private17ThreadPlanStepOut20CalculateReturnValueEv
  17: __ZN12lldb_private17ThreadPlanStepOut18DoPlanExplainsStopEPNS_5EventE
  18: __ZN12lldb_private10ThreadPlan16PlanExplainsStopEPNS_5EventE
  19: __ZN12lldb_private6Thread10ShouldStopEPNS_5EventE
  20: __ZN12lldb_private10ThreadList10ShouldStopEPNS_5EventE
  21: __ZN12lldb_private7Process20ShouldBroadcastEventEPNS_5EventE
  22: __ZN12lldb_private7Process18HandlePrivateEventERNSt3__110shared_ptrINS_5EventEEE
  23: __ZN12lldb_private7Process21RunPrivateStateThreadEb
  24: __ZN12lldb_private7Process18PrivateStateThreadEPv
  25: __ZN12lldb_private20HostNativeThreadBase22ThreadCreateTrampolineEPv
  26: __pthread_start

Debug adapter exit code=255, signal=null.

One more data point - I seem to get a different log message when verbose logging is disabled - not sure if this is a helpful clue or not 😄

Non-verbose log
configuration: {
  name: 'CMake Launch',
  type: 'lldb',
  request: 'launch',
  program: '${command:cmake.launchTargetPath}',
  args: [],
  cwd: '${workspaceFolder}',
  __configurationTarget: 5,
  relativePathBase: '/Users/@@@'
}
Listening on port 53313
[2021-09-11T23:31:46.061Z ERROR codelldb::debug_session] Internal debugger error: Invalid frame reference: 1001
Received signal: SIGSEGV
   0: backtrace::backtrace::trace
   1: backtrace::capture::Backtrace::new
   2: codelldb::hook_crashes::handler
   3: __sigtramp
   4: __ZN15SymbolFileDWARF13GetTypeSystemER9DWARFUnit
   5: __ZN15SymbolFileDWARF14GetDWARFParserER9DWARFUnit
   6: __ZN19DWARFASTParserClang26CopyUniqueClassMethodTypesERK8DWARFDIES2_PN12lldb_private4TypeERNSt3__16vectorIS0_NS6_9allocatorIS0_EEEE
   7: __ZN19DWARFASTParserClang15ParseSubroutineERK8DWARFDIER25ParsedDWARFTypeAttributes
   8: __ZN19DWARFASTParserClang18ParseTypeFromDWARFERKN12lldb_private13SymbolContextERK8DWARFDIEPb
   9: __ZN15SymbolFileDWARF9ParseTypeERKN12lldb_private13SymbolContextERK8DWARFDIEPb
  10: __ZN15SymbolFileDWARF13GetTypeForDIEERK8DWARFDIEb
  11: __ZN15SymbolFileDWARF11ResolveTypeERK8DWARFDIEbb
  12: __ZN15SymbolFileDWARF14ResolveTypeUIDEy
  13: __ZN23SymbolFileDWARFDebugMap14ResolveTypeUIDEy
  14: __ZN12lldb_private8Function7GetTypeEv
  15: __ZN12lldb_private8Function15GetCompilerTypeEv
  16: __ZN12lldb_private17ThreadPlanStepOut20CalculateReturnValueEv
  17: __ZN12lldb_private17ThreadPlanStepOut18DoPlanExplainsStopEPNS_5EventE
  18: __ZN12lldb_private10ThreadPlan16PlanExplainsStopEPNS_5EventE
  19: __ZN12lldb_private6Thread10ShouldStopEPNS_5EventE
  20: __ZN12lldb_private10ThreadList10ShouldStopEPNS_5EventE
  21: __ZN12lldb_private7Process20ShouldBroadcastEventEPNS_5EventE
  22: __ZN12lldb_private7Process18HandlePrivateEventERNSt3__110shared_ptrINS_5EventEEE
  23: __ZN12lldb_private7Process21RunPrivateStateThreadEb
  24: __ZN12lldb_private7Process18PrivateStateThreadEPv
  25: __ZN12lldb_private20HostNativeThreadBase22ThreadCreateTrampolineEPv
  26: __pthread_start

Debug adapter exit code=255, signal=null.
vadimcn commented 3 years ago

Looks like it crashes in the guts of LLDB... Probably picked up a new bug along with LLDB 13 😞

Jarred-Sumner commented 3 years ago
I'm seeing this as well, but the errors report issues with loading object files. ``` error: libJavaScriptCore.a(UnifiedSource-d93d10ff-2.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(URL.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(StringBuilder.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(WTFString.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(URLParser.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(dtoa.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(CString.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(double-conversion.cc.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(Assertions.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(fast-dtoa.cc.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(PrintStream.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(StringImpl.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(diy-fp.cc.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(UUID.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(StringPrintStream.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(HexNumber.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(CryptographicallyRandomNumber.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-d93d10ff-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(FastMalloc.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-23.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-22.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-31.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-25.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f0a787a9-3.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(AtomStringImpl.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-3a3c4ec0-7.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f0a787a9-13.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(AutomaticThread.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-f0a787a9-11.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f0a787a9-9.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-20.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f0a787a9-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-39.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-18.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(JSONValues.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-26.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libbmalloc.a(Gigacage.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libbmalloc.a error: libbmalloc.a(Mutex.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libbmalloc.a error: libbmalloc.a(Heap.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libbmalloc.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-13.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-35.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-34.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-6.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-5fbd0224-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(TimeWithDynamicClockType.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-0e543b66-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-21.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f0a787a9-7.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(IntlDateTimeFormat.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-bd1dc6f7-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-16.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-95324de6-2.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-19.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-15.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-10.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-3a3c4ec0-2.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-3a52ce78-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-3a3c4ec0-3.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(MetaAllocator.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-3a3c4ec0-5.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-3a3c4ec0-4.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-bfc896e1-11.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-84c9f43f-4.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-bfc896e1-12.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-84c9f43f-2.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-84c9f43f-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f0a787a9-8.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-84c9f43f-3.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-da3fe922-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-84c9f43f-5.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-3a3c4ec0-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f0a787a9-2.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-bfc896e1-9.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-3bec6ef2-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f0a787a9-10.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-40.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-bfc896e1-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-bfc896e1-5.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-bfc896e1-7.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-bfc896e1-2.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-bfc896e1-16.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-28.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-bfc896e1-10.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-bfc896e1-14.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-bfc896e1-13.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-bfc896e1-8.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-30.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-bfc896e1-6.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-29.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-3a3c4ec0-6.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-ee8a7a7a-4.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-2.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-ee8a7a7a-5.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-15db4ad9-9.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-ee8a7a7a-8.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-15db4ad9-7.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-15db4ad9-3.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-15db4ad9-5.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-15db4ad9-2.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-15db4ad9-4.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-15db4ad9-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(Gigacage.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-23a5fd0e-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-23a5fd0e-9.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-23a5fd0e-10.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-23a5fd0e-3.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-23a5fd0e-12.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-23a5fd0e-4.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-23a5fd0e-11.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-23a5fd0e-5.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-23a5fd0e-15.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-cd2e8cfa-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-23a5fd0e-8.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-23a5fd0e-2.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-23a5fd0e-7.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-0284c6ac-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-23a5fd0e-14.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(Threading.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-7.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(ThreadingPOSIX.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-36.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-9.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(ThreadGroup.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-15db4ad9-10.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(WordLock.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-15db4ad9-8.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-38.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-ee8a7a7a-3.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f0a787a9-12.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-ee8a7a7a-7.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-11.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-ee8a7a7a-6.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-32.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-37.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(DFGSpeculativeJIT.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-27.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(DFGSpeculativeJIT64.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-3.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-ee8a7a7a-2.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-4.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-5.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f0a787a9-5.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-6e4525b9-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(ReadWriteLock.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-cd2e8cfa-3.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-3c3e0d8c-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-15db4ad9-6.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(JSDateMath.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-32435e5c-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(StringView.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(WallTime.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(TextBreakIterator.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(Seconds.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-32435e5c-2.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(AtomString.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-bfc896e1-4.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(RandomNumber.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-bfc896e1-3.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-ee8a7a7a-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(BitVector.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-33.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(Lock.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(ClockType.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-12.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(OSLogPrintStream.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-24.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f0a787a9-6.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(SymbolImpl.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-f0a787a9-4.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-17.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-8.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(StackBounds.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(RunLoopGeneric.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-14.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(FunctionDispatcher.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(ThreadMessage.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-23a5fd0e-6.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-0284c6ac-2.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-02aa2997-2.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(ParkingLot.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-23a5fd0e-13.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(AtomStringTable.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-02aa2997-3.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-02aa2997-4.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-02aa2997-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-95324de6-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libbmalloc.a(Allocator.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libbmalloc.a error: libbmalloc.a(Cache.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libbmalloc.a error: libWTF.a(CPUTimePOSIX.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libbmalloc.a(DebugHeap.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libbmalloc.a error: libbmalloc.a(HeapKind.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libbmalloc.a error: libWTF.a(UTF8Conversion.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libbmalloc.a(Deallocator.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libbmalloc.a error: libJavaScriptCore.a(IntlListFormat.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(udis86.c.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libbmalloc.a(bmalloc.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libbmalloc.a error: libWTF.a(RunLoop.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libbmalloc.a(Scavenger.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libbmalloc.a error: libJavaScriptCore.a(udis86_decode.c.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libbmalloc.a(ObjectType.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libbmalloc.a error: libWTF.a(Signals.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libbmalloc.a(Environment.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libbmalloc.a error: libWTF.a(fixed-dtoa.cc.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(StackTrace.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libbmalloc.a(AllIsoHeaps.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libbmalloc.a error: libbmalloc.a(IsoHeapImpl.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libbmalloc.a error: libWTF.a(GregorianDateTime.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(ParallelHelperPool.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-6cbc989f-2.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-48793971-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-6cbc989f-1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(CompilationThread.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(MainThread.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-f2e18ffc-41.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(FilePrintStream.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(TextBreakIteratorInternalICUUnix.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(DataLog.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(BinarySemaphore.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(LockedPrintStream.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(DateMath.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(ConcurrentPtrHashSet.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libbmalloc.a(IsoTLS.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libbmalloc.a error: libJavaScriptCore.a(UnifiedSource-d93d10ff-3.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(UnifiedSource-02aa2997-5.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(udis86_syn-att.c.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(RAMSize.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(udis86_syn.c.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libbmalloc.a(AvailableMemory.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libbmalloc.a error: libWTF.a(WTFConfig.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(mach_excServer.c.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(cached-powers.cc.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(SixCharacterHash.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-bfc896e1-15.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(OSAllocatorPOSIX.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(SymbolRegistry.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(strtod.cc.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(bignum-dtoa.cc.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(bignum.cc.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(UTextProviderLatin1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(UTextProvider.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(FileSystemPOSIX.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(FastBitVector.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(FileSystem.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(ExternalStringImpl.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(Language.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libbmalloc.a(ObjectTypeTable.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libbmalloc.a error: libWTF.a(LanguageUnix.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(NumberOfCores.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-bfc896e1-17.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(TextStream.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(UnifiedSource-ee8a7a7a-9.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(ASCIILiteral.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(JSValueMalloc.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(SHA1.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libbmalloc.a(Zone.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libbmalloc.a error: libbmalloc.a(LargeMap.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libbmalloc.a error: libWTF.a(MainThreadGeneric.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(UTextProviderUTF16.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libJavaScriptCore.a(WasmAirIRGenerator.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libbmalloc.a(PerProcess.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libbmalloc.a error: libbmalloc.a(HeapConstants.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libbmalloc.a error: libbmalloc.a(IsoTLSLayout.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libbmalloc.a error: libJavaScriptCore.a(FTLLowerDFGToB3.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libJavaScriptCore.a(IntlWorkaround.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libJavaScriptCore.a error: libWTF.a(WorkQueue.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(OSRandomSource.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(WorkQueueGeneric.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(RandomDevice.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libbmalloc.a(CryptoRandom.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libbmalloc.a error: libWTF.a(StringBuilderJSON.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(PageBlock.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(LineBreakIteratorPoolICU.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(CurrentTime.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(CountingLock.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(MonotonicTime.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a error: libWTF.a(ICUHelpers.cpp.o) failed to load objfile for /Users/jarred/Code/bun/src/deps/libWTF.a Received signal: SIGSEGV 0: backtrace::backtrace::trace 1: backtrace::capture::Backtrace::new 2: codelldb::hook_crashes::handler 3: __sigtramp 4: __ZN15SymbolFileDWARF13GetTypeSystemER9DWARFUnit 5: __ZN15SymbolFileDWARF14GetDWARFParserER9DWARFUnit 6: __ZN19DWARFASTParserClang26CopyUniqueClassMethodTypesERK8DWARFDIES2_PN12lldb_private4TypeERNSt3__16vectorIS0_NS6_9allocatorIS0_EEEE 7: __ZN19DWARFASTParserClang15ParseSubroutineERK8DWARFDIER25ParsedDWARFTypeAttributes 8: __ZN19DWARFASTParserClang18ParseTypeFromDWARFERKN12lldb_private13SymbolContextERK8DWARFDIEPb 9: __ZN15SymbolFileDWARF9ParseTypeERKN12lldb_private13SymbolContextERK8DWARFDIEPb 10: __ZN15SymbolFileDWARF13GetTypeForDIEERK8DWARFDIEb 11: __ZN15SymbolFileDWARF11ResolveTypeERK8DWARFDIEbb 12: __ZN15SymbolFileDWARF14ResolveTypeUIDEy 13: __ZN23SymbolFileDWARFDebugMap14ResolveTypeUIDEy 14: __ZN12lldb_private8Function7GetTypeEv 15: __ZN12lldb_private8Function22GetStartLineSourceInfoERNS_8FileSpecERj 16: __ZN12lldb_private26BreakpointResolverFileLine14FilterContextsERNS_17SymbolContextListEb 17: __ZN12lldb_private26BreakpointResolverFileLine14SearchCallbackERNS_12SearchFilterERNS_13SymbolContextEPNS_7AddressE 18: __ZN12lldb_private12SearchFilter17DoModuleIterationERKNS_13SymbolContextERNS_8SearcherE 19: __ZN12lldb_private12SearchFilter6SearchERNS_8SearcherE 20: __ZN12lldb_private6Target13AddBreakpointENSt3__110shared_ptrINS_10BreakpointEEEb 21: __ZN12lldb_private6Target16CreateBreakpointERNSt3__110shared_ptrINS_12SearchFilterEEERNS2_INS_18BreakpointResolverEEEbbb 22: __ZN12lldb_private6Target16CreateBreakpointEPKNS_12FileSpecListERKNS_8FileSpecEjjyNS_8LazyBoolES7_bbS7_ 23: __ZN4lldb8SBTarget26BreakpointCreateByLocationERKNS_10SBFileSpecEjjyRNS_14SBFileSpecListE 24: __ZN4lldb8SBTarget26BreakpointCreateByLocationERKNS_10SBFileSpecEjyRNS_14SBFileSpecListE 25: __ZN4lldb8SBTarget26BreakpointCreateByLocationERKNS_10SBFileSpecEjy 26: __ZN4lldb8SBTarget26BreakpointCreateByLocationERKNS_10SBFileSpecEj 27: __ZN4lldb8SBTarget26BreakpointCreateByLocationEPKcj 28: ___cpp_closure_570044991840269306 29: lldb::strings::with_cstr 30: lldb::sb::sbtarget::SBTarget::breakpoint_create_by_location 31: codelldb::debug_session::DebugSession::handle_request_args 32: codelldb::debug_session::DebugSession::handle_request 33: as core::future::future::Future>::poll 34: tokio::runtime::task::harness::Harness::poll 35: std::thread::local::LocalKey::with 36: tokio::task::local::LocalSet::tick 37: ::poll 38: as core::future::future::Future>::poll 39: tokio::runtime::enter::Enter::block_on 40: tokio::runtime::thread_pool::ThreadPool::block_on 41: tokio::runtime::Runtime::block_on 42: _entry 43: codelldb::main 44: std::sys_common::backtrace::__rust_begin_short_backtrace 45: std::rt::lang_start::{{closure}} 46: std::rt::lang_start_internal 47: _main Debug adapter exit code=255, signal=null. ```
zhen8838 commented 3 years ago

OS: Mac OSX Big sur 11.5.2 VSCode version: 1.60.0 (m1) CodeLLDB version: v1.6.6 Compiler: Gcc 10.1 Debugger: Native c++ executable

debug the program in a remote container (ubuntu 18.04, x86_64) have a similar issue, but I have a python runtime error.

Traceback (most recent call last):
  File "/root/.vscode-server/extensions/vadimcn.vscode-lldb-1.6.6/adapter/codelldb.py", line 152, in evaluate
    value = evaluate_in_context(pycode, is_simple_expr, context)
  File "/root/.vscode-server/extensions/vadimcn.vscode-lldb-1.6.6/adapter/codelldb.py", line 284, in evaluate_in_context
    return eval(code, eval_globals, eval_locals)
  File "<input>", line 1, in <module>
  File "/root/.vscode-server/extensions/vadimcn.vscode-lldb-1.6.6/adapter/value.py", line 40, in __getattr__
    raise AttributeError("Attribute '%s' is not defined" % name)
AttributeError: Attribute 'GetSize' is not defined
full log ``` configuration: { name: 'Debug', request: 'launch', type: 'lldb', program: '/root/workspace/k510-gnne-compiler/out/build/debug/bin/test_unary', args: [ '--gtest_color=no', '--gtest_filter=T/GnneUnaryTestSuite.optimize/bf16_bf16_1_3_3_800_', '--gtest_also_run_disabled_tests', '--gtest_break_on_failure' ], cwd: '/root/workspace/k510-gnne-compiler/out/build/debug/bin', target: '/root/workspace/k510-gnne-compiler/out/build/debug/bin/test_unary', arguments: '"--gtest_color=no" "--gtest_filter=T/GnneUnaryTestSuite.optimize/bf16_bf16_1_3_3_800_" "--gtest_also_run_disabled_tests" "--gtest_break_on_failure"', env: { MAIL: '/var/mail/root', USER: 'root', SSH_CLIENT: '10.100.255.159 60573 22', SHLVL: '3', OLDPWD: '/root', HOME: '/root', LOGNAME: 'root', _: '/root/.vscode-server/bin/e7d7e9a9348e6a8cc8c03f877d39cb72e5dfb1ff/node', PATH: '/root/.vscode-server/bin/e7d7e9a9348e6a8cc8c03f877d39cb72e5dfb1ff/bin:/root/miniconda3/bin:/root/miniconda3/condabin:/root/miniconda3/bin:/root/.vscode-server/bin/e7d7e9a9348e6a8cc8c03f877d39cb72e5dfb1ff/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', VSCODE_AGENT_FOLDER: '/root/.vscode-server', SHELL: '/bin/zsh', PWD: '/root', SSH_CONNECTION: '10.100.255.159 60573 172.18.0.2 22', VSCODE_INJECT_NODE_MODULE_LOOKUP_PATH: '/root/.vscode-server/bin/e7d7e9a9348e6a8cc8c03f877d39cb72e5dfb1ff/remote/node_modules', VSCODE_CWD: '/root', ZSH: '/root/.oh-my-zsh', PAGER: 'less', LESS: '-R', LSCOLORS: 'Gxfxcxdxbxegedabagacad', LS_COLORS: '', P9K_SSH: '1', CONDA_EXE: '/root/miniconda3/bin/conda', _CE_M: '', _CE_CONDA: '', CONDA_PYTHON_EXE: '/root/miniconda3/bin/python', CONDA_SHLVL: '1', CONDA_PREFIX: '/root/miniconda3', CONDA_DEFAULT_ENV: 'base', CONDA_PROMPT_MODIFIER: '(base) ', VSCODE_LOG_NATIVE: 'false', VSCODE_AMD_ENTRYPOINT: 'vs/server/remoteExtensionHostProcess', VSCODE_PIPE_LOGGING: 'true', VSCODE_VERBOSE_LOGGING: 'true', VSCODE_EXTHOST_WILL_SEND_SOCKET: 'true', VSCODE_HANDLES_UNCAUGHT_ERRORS: 'true', VSCODE_LOG_STACK: 'false', VSCODE_NLS_CONFIG: '{"locale":"en","availableLanguages":{}}', BROWSER: '/root/.vscode-server/bin/e7d7e9a9348e6a8cc8c03f877d39cb72e5dfb1ff/bin/helpers/browser.sh', VSCODE_IPC_HOOK_CLI: '/tmp/vscode-ipc-6d1543bf-ef92-46fe-a1bd-39e810c2ee7a.sock', APPLICATION_INSIGHTS_NO_DIAGNOSTIC_CHANNEL: 'true' }, environment: [ { name: 'MAIL', value: '/var/mail/root' }, { name: 'USER', value: 'root' }, { name: 'SSH_CLIENT', value: '10.100.255.159 60573 22' }, { name: 'SHLVL', value: '3' }, { name: 'OLDPWD', value: '/root' }, { name: 'HOME', value: '/root' }, { name: 'LOGNAME', value: 'root' }, { name: '_', value: '/root/.vscode-server/bin/e7d7e9a9348e6a8cc8c03f877d39cb72e5dfb1ff/node' }, { name: 'PATH', value: '/root/.vscode-server/bin/e7d7e9a9348e6a8cc8c03f877d39cb72e5dfb1ff/bin:/root/miniconda3/bin:/root/miniconda3/condabin:/root/miniconda3/bin:/root/.vscode-server/bin/e7d7e9a9348e6a8cc8c03f877d39cb72e5dfb1ff/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin' }, { name: 'VSCODE_AGENT_FOLDER', value: '/root/.vscode-server' }, { name: 'SHELL', value: '/bin/zsh' }, { name: 'PWD', value: '/root' }, { name: 'SSH_CONNECTION', value: '10.100.255.159 60573 172.18.0.2 22' }, { name: 'VSCODE_INJECT_NODE_MODULE_LOOKUP_PATH', value: '/root/.vscode-server/bin/e7d7e9a9348e6a8cc8c03f877d39cb72e5dfb1ff/remote/node_modules' }, { name: 'VSCODE_CWD', value: '/root' }, { name: 'ZSH', value: '/root/.oh-my-zsh' }, { name: 'PAGER', value: 'less' }, { name: 'LESS', value: '-R' }, { name: 'LSCOLORS', value: 'Gxfxcxdxbxegedabagacad' }, { name: 'LS_COLORS', value: '' }, { name: 'P9K_SSH', value: '1' }, { name: 'CONDA_EXE', value: '/root/miniconda3/bin/conda' }, { name: '_CE_M', value: '' }, { name: '_CE_CONDA', value: '' }, { name: 'CONDA_PYTHON_EXE', value: '/root/miniconda3/bin/python' }, { name: 'CONDA_SHLVL', value: '1' }, { name: 'CONDA_PREFIX', value: '/root/miniconda3' }, { name: 'CONDA_DEFAULT_ENV', value: 'base' }, { name: 'CONDA_PROMPT_MODIFIER', value: '(base) ' }, { name: 'VSCODE_LOG_NATIVE', value: 'false' }, { name: 'VSCODE_AMD_ENTRYPOINT', value: 'vs/server/remoteExtensionHostProcess' }, { name: 'VSCODE_PIPE_LOGGING', value: 'true' }, { name: 'VSCODE_VERBOSE_LOGGING', value: 'true' }, { name: 'VSCODE_EXTHOST_WILL_SEND_SOCKET', value: 'true' }, { name: 'VSCODE_HANDLES_UNCAUGHT_ERRORS', value: 'true' }, { name: 'VSCODE_LOG_STACK', value: 'false' }, { name: 'VSCODE_NLS_CONFIG', value: '{"locale":"en","availableLanguages":{}}' }, { name: 'BROWSER', value: '/root/.vscode-server/bin/e7d7e9a9348e6a8cc8c03f877d39cb72e5dfb1ff/bin/helpers/browser.sh' }, { name: 'VSCODE_IPC_HOOK_CLI', value: '/tmp/vscode-ipc-6d1543bf-ef92-46fe-a1bd-39e810c2ee7a.sock' }, { name: 'APPLICATION_INSIGHTS_NO_DIAGNOSTIC_CHANNEL', value: 'true' } ], sourceFileMap: {}, 'magic variable 🤦🏼‍': '61', relativePathBase: '/root/workspace/k510-gnne-compiler' } Listening on port 44567 warning: (x86_64) /root/workspace/k510-gnne-compiler/out/build/debug/lib/libnncase.modules.k510.so 0x00252e2f: DW_AT_specification(0x0023d75f) has no decl warning: (x86_64) /root/workspace/k510-gnne-compiler/out/build/debug/lib/libnncase.modules.k510.so 0x002d47a8: DW_AT_specification(0x002bf7e0) has no decl warning: (x86_64) /root/workspace/k510-gnne-compiler/out/build/debug/lib/libnncase.modules.k510.so 0x004878dc: DW_AT_specification(0x00477cf5) has no decl warning: (x86_64) /root/workspace/k510-gnne-compiler/out/build/debug/lib/libnncase.modules.k510.so 0x00dbde5a: DW_AT_specification(0x00d7140e) has no decl warning: (x86_64) /root/workspace/k510-gnne-compiler/out/build/debug/lib/libnncase.modules.k510.so 0x00db4118: DW_AT_specification(0x00d713f1) has no decl warning: (x86_64) /root/workspace/k510-gnne-compiler/out/build/debug/lib/libnncase.modules.k510.so 0x015e9681: DW_AT_specification(0x015c9d84) has no decl warning: (x86_64) /root/workspace/k510-gnne-compiler/out/build/debug/lib/libnncase.modules.k510.so 0x021f8a10: DW_AT_specification(0x021ed1f7) has no decl Traceback (most recent call last): File "/root/.vscode-server/extensions/vadimcn.vscode-lldb-1.6.6/adapter/codelldb.py", line 152, in evaluate value = evaluate_in_context(pycode, is_simple_expr, context) File "/root/.vscode-server/extensions/vadimcn.vscode-lldb-1.6.6/adapter/codelldb.py", line 284, in evaluate_in_context return eval(code, eval_globals, eval_locals) File "", line 1, in File "/root/.vscode-server/extensions/vadimcn.vscode-lldb-1.6.6/adapter/value.py", line 40, in __getattr__ raise AttributeError("Attribute '%s' is not defined" % name) AttributeError: Attribute 'GetSize' is not defined [2021-09-14T05:21:40.014Z ERROR codelldb::debug_session] Attribute 'GetSize' is not defined [2021-09-14T05:21:44.474Z ERROR codelldb::handles] Parent/key combination is not unique (None/[1,0]) [2021-09-14T05:21:44.822Z ERROR codelldb::debug_session] Internal debugger error: Invalid frame reference: 1001 [2021-09-14T05:21:44.881Z ERROR codelldb::handles] Parent/key combination is not unique (None/[1,0]) [2021-09-14T05:21:45.338Z ERROR codelldb::debug_session] Internal debugger error: Invalid frame reference: 1036 Received signal: SIGSEGV 0: codelldb::hook_crashes::handler 1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: _ZN4lldb20SBCommandInterpreter32HandleCompletionWithDescriptionsEPKcS2_S2_iiRNS_12SBStringListES4_ 21: _ZN4lldb20SBCommandInterpreter16HandleCompletionEPKcS2_S2_iiRNS_12SBStringListE 22: __cpp_closure_10031222636214441753 23: lldb::sb::sbcommandinterpreter::SBCommandInterpreter::handle_completions 24: codelldb::debug_session::DebugSession::handle_request_args 25: codelldb::debug_session::DebugSession::handle_request 26: as core::future::future::Future>::poll 27: tokio::runtime::task::harness::Harness::poll 28: std::thread::local::LocalKey::with 29: tokio::task::local::LocalSet::tick 30: ::poll 31: as core::future::future::Future>::poll 32: tokio::runtime::enter::Enter::block_on 33: tokio::runtime::thread_pool::ThreadPool::block_on 34: tokio::runtime::Runtime::block_on 35: entry 36: codelldb::main 37: std::sys_common::backtrace::__rust_begin_short_backtrace 38: std::rt::lang_start::{{closure}} 39: std::rt::lang_start_internal 40: main 41: __libc_start_main 42: _start Debug adapter exit code=255, signal=null. ```
vadimcn commented 3 years ago

@zhen8838 not sure it's the same, you seem to be crashing in command completion. This can be disabled via "lldb.commandCompletions" setting.

zhen8838 commented 3 years ago

@vadimcn OK, when disabling it, never crashing again.

dvirtz commented 3 years ago

same here

OS: Mac OSX BigSur 11.6 VSCode version: 1.61.2 CodeLLDB version: v1.6.8 Compiler: Apple Clang 13.0.0 Debuggee: Native c++ executable

Verbose Log configuration: { name: 'liveslicer', type: 'lldb', request: 'launch', program: '${command:cmake.launchTargetPath}', terminal: 'console', args: [], cwd: '${workspaceFolder}', __configurationTarget: 5, expressions: 'native', relativePathBase: '/Users/dyitzchaki/projects/modularuplynk2' } liblldb: /Users/dyitzchaki/.vscode/extensions/vadimcn.vscode-lldb-1.6.8/lldb/lib/liblldb.dylib environment: {} params: { evaluateForHovers: true, commandCompletions: true } Listening on port 50131 [2021-10-25T11:13:36.421Z DEBUG codelldb] New debug session INFO(Python) 14:13:37 formatters: Initializing INFO(Python) 14:13:37 formatters.rust: Initializing [2021-10-25T11:13:37.005Z DEBUG codelldb::dap_codec] --> {"command":"initialize","arguments":{"clientID":"vscode","clientName":"Visual Studio Code","adapterID":"lldb","pathFormat":"path","linesStartAt1":true,"columnsStartAt1":true,"supportsVariableType":true,"supportsVariablePaging":true,"supportsRunInTerminalRequest":true,"locale":"en-us","supportsProgressReporting":true,"supportsInvalidatedEvent":true,"supportsMemoryReferences":true},"type":"request","seq":1} [2021-10-25T11:13:37.006Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":1,"success":true,"command":"initialize","body":{"exceptionBreakpointFilters":[{"default":true,"filter":"cpp_throw","label":"C++: on throw"},{"default":false,"filter":"cpp_catch","label":"C++: on catch"}],"supportTerminateDebuggee":true,"supportsCancelRequest":true,"supportsCompletionsRequest":true,"supportsConditionalBreakpoints":true,"supportsConfigurationDoneRequest":true,"supportsDataBreakpoints":true,"supportsDelayedStackTraceLoading":true,"supportsEvaluateForHovers":true,"supportsFunctionBreakpoints":true,"supportsGotoTargetsRequest":true,"supportsHitConditionalBreakpoints":true,"supportsLogPoints":true,"supportsReadMemoryRequest":true,"supportsRestartFrame":true,"supportsSetVariable":true}} [2021-10-25T11:13:37.017Z DEBUG codelldb::dap_codec] --> {"command":"launch","arguments":{"name":"liveslicer","type":"lldb","request":"launch","program":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/beam/slicer/liveslicer","terminal":"console","args":["-config","/Users/dyitzchaki/projects/modularuplynk2/fbf.conf","-measure_latency"],"cwd":"/Users/dyitzchaki/projects/modularuplynk2/slicer/beam/slicer","env":{"UPLYNK_SITE":"downlynk","ASAN_OPTIONS":"detect_container_overflow=0","TSAN_OPTIONS":"suppressions=/Users/dyitzchaki/projects/modularuplynk2/slicer/.tsan.supp history_size=7"},"__configurationTarget":5,"expressions":"native","relativePathBase":"/Users/dyitzchaki/projects/modularuplynk2","_adapterSettings":{"displayFormat":"auto","showDisassembly":"auto","dereferencePointers":true,"suppressMissingSourceFiles":true,"evaluationTimeout":5,"consoleMode":"commands","sourceLanguages":null,"terminalPromptClear":null,"evaluateForHovers":true,"commandCompletions":true,"reproducer":false},"__sessionId":"75da541f-7395-4947-b7fe-1be70e27d3c5"},"type":"request","seq":2} [2021-10-25T11:13:37.017Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":1,"event":"capabilities","body":{"capabilities":{"exceptionBreakpointFilters":[{"default":true,"filter":"cpp_throw","label":"C++: on throw"},{"default":false,"filter":"cpp_catch","label":"C++: on catch"}],"supportTerminateDebuggee":true,"supportsCancelRequest":true,"supportsCompletionsRequest":true,"supportsConditionalBreakpoints":true,"supportsConfigurationDoneRequest":true,"supportsDataBreakpoints":true,"supportsDelayedStackTraceLoading":true,"supportsEvaluateForHovers":true,"supportsFunctionBreakpoints":true,"supportsGotoTargetsRequest":true,"supportsHitConditionalBreakpoints":true,"supportsLogPoints":true,"supportsReadMemoryRequest":true,"supportsRestartFrame":true,"supportsSetVariable":true}}} [2021-10-25T11:13:38.039Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":2,"event":"initialized"} [2021-10-25T11:13:38.039Z DEBUG codelldb::debug_session] Debug event: 0x7fc08ca0a2f8 Event: broadcaster = 0x7fc08f823840 (lldb.target), type = 0x00000002 (modules-loaded), data = {liveslicer} [2021-10-25T11:13:38.044Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":3,"event":"module","body":{"module":{"addressRange":"FFFFFFFFFFFFFFFF","id":"FFFFFFFFFFFFFFFF","name":"liveslicer","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/beam/slicer/liveslicer","symbolFilePath":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/beam/slicer/liveslicer","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:38.045Z DEBUG codelldb::dap_codec] --> {"command":"setBreakpoints","arguments":{"source":{"name":"aplofile.cpp","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/beam/libbeam/aplofile.cpp"},"lines":[],"breakpoints":[],"sourceModified":false},"type":"request","seq":3} [2021-10-25T11:13:38.045Z DEBUG codelldb::dap_codec] --> {"command":"setBreakpoints","arguments":{"source":{"name":"ssstreamer.cpp","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/beam/libbeam/graph/ssstreamer.cpp"},"lines":[],"breakpoints":[],"sourceModified":false},"type":"request","seq":4} [2021-10-25T11:13:38.045Z DEBUG codelldb::dap_codec] --> {"command":"setBreakpoints","arguments":{"source":{"name":"sswriter.cpp","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/beam/libbeam/graph/sswriter.cpp"},"lines":[],"breakpoints":[],"sourceModified":false},"type":"request","seq":5} [2021-10-25T11:13:38.045Z DEBUG codelldb::dap_codec] --> {"command":"setBreakpoints","arguments":{"source":{"name":"tracksync.cpp","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/beam/libbeam/graph/tracksync.cpp"},"lines":[135],"breakpoints":[{"line":135}],"sourceModified":false},"type":"request","seq":6} [2021-10-25T11:13:38.045Z DEBUG codelldb::dap_codec] --> {"command":"setBreakpoints","arguments":{"source":{"name":"wsbrokerdeliver.cpp","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/beam/libbeam/graph/wsbrokerdeliver.cpp"},"lines":[],"breakpoints":[],"sourceModified":false},"type":"request","seq":7} [2021-10-25T11:13:38.045Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":3,"success":true,"command":"setBreakpoints","body":{"breakpoints":[]}} [2021-10-25T11:13:38.045Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":4,"success":true,"command":"setBreakpoints","body":{"breakpoints":[]}} [2021-10-25T11:13:38.045Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":5,"success":true,"command":"setBreakpoints","body":{"breakpoints":[]}} [2021-10-25T11:13:38.186Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":6,"success":true,"command":"setBreakpoints","body":{"breakpoints":[{"id":1,"message":"Resolved locations: 0","verified":false}]}} [2021-10-25T11:13:38.186Z DEBUG codelldb::debug_session] Debug event: 0x7fc08c823558 Event: broadcaster = 0x7fc08f823840 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {} [2021-10-25T11:13:38.188Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":7,"success":true,"command":"setBreakpoints","body":{"breakpoints":[]}} [2021-10-25T11:13:38.210Z DEBUG codelldb::dap_codec] --> {"command":"setFunctionBreakpoints","arguments":{"breakpoints":[]},"type":"request","seq":8} [2021-10-25T11:13:38.213Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":8,"success":true,"command":"setFunctionBreakpoints","body":{"breakpoints":[]}} [2021-10-25T11:13:38.222Z DEBUG codelldb::dap_codec] --> {"command":"setDataBreakpoints","arguments":{"breakpoints":[]},"type":"request","seq":9} [2021-10-25T11:13:38.222Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":9,"success":true,"command":"setDataBreakpoints","body":{"breakpoints":[]}} [2021-10-25T11:13:38.238Z DEBUG codelldb::dap_codec] --> {"command":"setExceptionBreakpoints","arguments":{"filters":[]},"type":"request","seq":10} [2021-10-25T11:13:38.240Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":10,"success":true,"command":"setExceptionBreakpoints"} [2021-10-25T11:13:38.242Z DEBUG codelldb::dap_codec] --> {"command":"configurationDone","type":"request","seq":11} [2021-10-25T11:13:38.243Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":4,"event":"output","body":{"output":"Launching: /Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/beam/slicer/liveslicer -config /Users/dyitzchaki/projects/modularuplynk2/fbf.conf -measure_latency\n"}} [2021-10-25T11:13:39.079Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":5,"event":"output","body":{"output":"Launched process 4607\n"}} [2021-10-25T11:13:39.079Z DEBUG codelldb::debug_session] Debug event: 0x7fc08bc18a18 Event: broadcaster = 0x7fc08f823840 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {} [2021-10-25T11:13:39.079Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":2,"success":true,"command":"launch"} [2021-10-25T11:13:39.079Z DEBUG codelldb::debug_session] Debug event: 0x7fc08bc18fd8 Event: broadcaster = 0x7fc08f823840 (lldb.target), type = 0x00000004 (modules-unloaded), data = {liveslicer} [2021-10-25T11:13:39.079Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":11,"success":true,"command":"configurationDone"} [2021-10-25T11:13:39.079Z DEBUG codelldb::debug_session] Debug event: 0x7fc08bc19178 Event: broadcaster = 0x7fc08f823840 (lldb.target), type = 0x00000002 (modules-loaded), data = {dyld, liveslicer} [2021-10-25T11:13:39.079Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":6,"event":"module","body":{"module":{"id":"100000000","name":""},"reason":"removed"}} [2021-10-25T11:13:39.079Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":7,"event":"module","body":{"module":{"addressRange":"1009D8000","id":"1009D8000","name":"dyld","path":"/usr/lib/dyld","symbolFilePath":"/usr/lib/dyld","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:39.079Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cb05bd0 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:39.079Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":8,"event":"module","body":{"module":{"addressRange":"100000000","id":"100000000","name":"liveslicer","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/beam/slicer/liveslicer","symbolFilePath":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/beam/slicer/liveslicer","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:39.079Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":9,"event":"continued","body":{"allThreadsContinued":true,"threadId":0}} [2021-10-25T11:13:39.095Z DEBUG codelldb::dap_codec] --> {"command":"threads","type":"request","seq":12} [2021-10-25T11:13:39.097Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":12,"success":true,"command":"threads","body":{"threads":[{"id":31498,"name":"1: tid=31498"}]}} [2021-10-25T11:13:44.909Z DEBUG codelldb::debug_session] Debug event: 0x7fc08bec09a8 Event: broadcaster = 0x7fc08f823840 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {} [2021-10-25T11:13:44.911Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":10,"event":"breakpoint","body":{"breakpoint":{"id":1,"line":135,"message":"Resolved locations: 1","verified":true},"reason":"changed"}} [2021-10-25T11:13:48.709Z DEBUG codelldb::debug_session] Debug event: 0x7fbfefdaff18 Event: broadcaster = 0x7fc08f823840 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {} [2021-10-25T11:13:48.710Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":11,"event":"breakpoint","body":{"breakpoint":{"id":1,"line":135,"message":"Resolved locations: 1","verified":true},"reason":"changed"}} [2021-10-25T11:13:48.713Z DEBUG codelldb::debug_session] Debug event: 0x7fbfef8f7278 Event: broadcaster = 0x7fc08f823840 (lldb.target), type = 0x00000002 (modules-loaded), data = {libbeam-slicer.dylib, libboost_chrono.dylib, libboost_thread.dylib, libavformat.58.51.101.dylib, libavfilter.7.87.100.dylib, libavcodec.58.101.101.dylib, libswscale.5.8.100.dylib, libswresample.3.8.100.dylib, libavutil.56.58.100.dylib, libcares.2.dylib, libssl.1.1.dylib, libcrypto.1.1.dylib, libfreetype.6.dylib, libzimg.2.dylib, libopus.0.dylib, libintlc.dylib, libimf.dylib, libirc.dylib, libsvml.dylib, libiomp5.dylib, CFNetwork, CoreFoundation, SystemConfiguration, libc++.1.dylib, libSystem.B.dylib, libboost_system.dylib, libc++abi.dylib, libcache.dylib, libcommonCrypto.dylib, libcompiler_rt.dylib, libcopyfile.dylib, libcorecrypto.dylib, libdispatch.dylib, libdyld.dylib, libkeymgr.dylib, liblaunch.dylib, libmacho.dylib, libquarantine.dylib, libremovefile.dylib, libsystem_asl.dylib, libsystem_blocks.dylib, libsystem_c.dylib, libsystem_collections.dylib, libsystem_configuration.dylib, libsystem_containermanager.dylib, libsystem_coreservices.dylib, libsystem_darwin.dylib, libsystem_dnssd.dylib, libsystem_featureflags.dylib, libsystem_info.dylib, libsystem_m.dylib, libsystem_malloc.dylib, libsystem_networkextension.dylib, libsystem_notify.dylib, libsystem_product_info_filter.dylib, libsystem_sandbox.dylib, libsystem_secinit.dylib, libsystem_kernel.dylib, libsystem_platform.dylib, libsystem_pthread.dylib, libsystem_symptoms.dylib, libsystem_trace.dylib, libunwind.dylib, libxpc.dylib, libobjc.A.dylib, liboah.dylib, libbz2.1.0.dylib, Security, libiconv.2.dylib, AudioToolbox, VideoToolbox, CoreMedia, CoreVideo, CoreServices, Metal, MetalPerformanceShaders, ColorSync, CoreGraphics, AppleJPEG, Foundation, AppleVA, Accelerate, IOKit, IOSurface, libDiagnosticMessagesClient.dylib, IOAccelerator, libCoreFSCache.dylib, libenergytrace.dylib, libbsm.0.dylib, libz.1.dylib, libkxld.dylib, SoftLinking, libfakelink.dylib, libicucore.A.dylib, CoreAnalytics, AppleSauce, libsqlite3.dylib, CoreAutoLayout, libcompression.dylib, DiskArbitration, libarchive.2.dylib, libxml2.2.dylib, liblangid.dylib, libCRFSuite.dylib, libnetwork.dylib, libpcap.A.dylib, libdns_services.dylib, libcoretls_cfhelpers.dylib, libapple_nghttp2.dylib, libMobileGestalt.dylib, AppleFSCompression, libcoretls.dylib, libpam.2.dylib, libxar.1.dylib, AppleSystemInfo, IOMobileFramebuffer, liblzma.5.dylib, libcharset.1.dylib, FSEvents, CarbonCore, Metadata, OSServices, SearchKit, AE, LaunchServices, DictionaryServices, SharedFileList, libCheckFix.dylib, TCC, CoreNLP, MetadataUtilities, libmecabra.dylib, MLCompute, libmecab.dylib, libgermantok.dylib, libThaiTokenizer.dylib, libChineseTokenizer.dylib, vImage, vecLib, libvMisc.dylib, libvDSP.dylib, libBLAS.dylib, libLAPACK.dylib, libLinearAlgebra.dylib, libSparseBLAS.dylib, libQuadrature.dylib, libBNNS.dylib, libSparse.dylib, MPSCore, MPSImage, MPSNeuralNetwork, MPSMatrix, MPSRayIntersector, MPSNDArray, MetalTools, AggregateDictionary, LanguageModeling, CoreEmoji, LinguisticData, Lexicon, libcmph.dylib, CFOpenDirectory, OpenDirectory, APFS, SecurityFoundation, libutil.dylib, libapp_launch_measurement.dylib, CoreServicesStore, ServiceManagement, libxslt.1.dylib, BackgroundTaskManagement, SkyLight, libFontParser.dylib, RunningBoardServices, WatchdogClient, CoreDisplay, MultitouchSupport, QuartzCore, BaseBoard, PersistentConnection, ImageIO, ProtocolBuffer, CommonUtilities, Bom, libate.dylib, libRadiance.dylib, libJPEG.dylib, libPng.dylib, libTIFF.dylib, libGIF.dylib, libJP2.dylib, libexpat.1.dylib, GPUWrangler, IOPresentment, DSExternalDisplay, CMCaptureCore, libspindump.dylib, CoreAudio, AppServerSupport, perfdata, AssertionServices, AudioToolboxCore, caulk, SystemPolicy, libIOReport.dylib, libSMC.dylib, libAudioToolboxUtility.dylib, libmis.dylib, OpenGL, libGLU.dylib, libGFXShared.dylib, libGL.dylib, libGLImage.dylib, libCVMSPluginSupport.dylib, libCoreVMClient.dylib, CoreImage, CoreText, OpenCL, GraphVisualizer, FaceCore, OTSVG, libFontRegistry.dylib, libhvf.dylib, AudioSession, libAudioStatistics.dylib, MediaExperience, libSessionUtility.dylib, libperfcheck.dylib, AudioResourceArbitration, CoreData, AppKit, UIFoundation, RemoteViewServices, XCTTargetBootstrap, UniformTypeIdentifiers, CoreSVG, IconServices, ApplicationServices, DFRFoundation, DataDetectorsCore, HIToolbox, SpeechRecognition, CoreUI, InternationalSupport, PerformanceAnalysis, UserActivity, TextureIO, ATS, ColorSyncLegacy, HIServices, LangAnalysis, PrintCore, QD, SpeechSynthesis, ATSUI, libcups.2.dylib, NetAuth, Kerberos, GSS, libresolv.9.dylib, Heimdal, libHeimdalProxy.dylib, Network, libheimdal-asn1.dylib, CommonAuth, loginsupport, IconFoundation, SpeechRecognitionCore} [2021-10-25T11:13:48.713Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":12,"event":"module","body":{"module":{"addressRange":"100AF0000","id":"100AF0000","name":"libbeam-slicer.dylib","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libbeam-slicer.dylib","symbolFilePath":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libbeam-slicer.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.714Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":13,"event":"module","body":{"module":{"addressRange":"104C20000","id":"104C20000","name":"libboost_chrono.dylib","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libboost_chrono.dylib","symbolFilePath":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libboost_chrono.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.714Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":14,"event":"module","body":{"module":{"addressRange":"104C40000","id":"104C40000","name":"libboost_thread.dylib","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libboost_thread.dylib","symbolFilePath":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libboost_thread.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.714Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":15,"event":"module","body":{"module":{"addressRange":"104CB0000","id":"104CB0000","name":"libavformat.58.51.101.dylib","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libavformat.58.51.101.dylib","symbolFilePath":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libavformat.58.51.101.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.714Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":16,"event":"module","body":{"module":{"addressRange":"10502C000","id":"10502C000","name":"libavfilter.7.87.100.dylib","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libavfilter.7.87.100.dylib","symbolFilePath":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libavfilter.7.87.100.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.714Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":17,"event":"module","body":{"module":{"addressRange":"105590000","id":"105590000","name":"libavcodec.58.101.101.dylib","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libavcodec.58.101.101.dylib","symbolFilePath":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libavcodec.58.101.101.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.714Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":18,"event":"module","body":{"module":{"addressRange":"10703C000","id":"10703C000","name":"libswscale.5.8.100.dylib","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libswscale.5.8.100.dylib","symbolFilePath":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libswscale.5.8.100.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.714Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":19,"event":"module","body":{"module":{"addressRange":"107224000","id":"107224000","name":"libswresample.3.8.100.dylib","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libswresample.3.8.100.dylib","symbolFilePath":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libswresample.3.8.100.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.714Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":20,"event":"module","body":{"module":{"addressRange":"107258000","id":"107258000","name":"libavutil.56.58.100.dylib","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libavutil.56.58.100.dylib","symbolFilePath":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libavutil.56.58.100.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.715Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":21,"event":"module","body":{"module":{"addressRange":"107544000","id":"107544000","name":"libcares.2.dylib","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libcares.2.dylib","symbolFilePath":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libcares.2.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.715Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":22,"event":"module","body":{"module":{"addressRange":"10756C000","id":"10756C000","name":"libssl.1.1.dylib","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libssl.1.1.dylib","symbolFilePath":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libssl.1.1.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.715Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":23,"event":"module","body":{"module":{"addressRange":"1075F8000","id":"1075F8000","name":"libcrypto.1.1.dylib","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libcrypto.1.1.dylib","symbolFilePath":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libcrypto.1.1.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.715Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":24,"event":"module","body":{"module":{"addressRange":"107858000","id":"107858000","name":"libfreetype.6.dylib","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libfreetype.6.dylib","symbolFilePath":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libfreetype.6.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.715Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":25,"event":"module","body":{"module":{"addressRange":"107904000","id":"107904000","name":"libzimg.2.dylib","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libzimg.2.dylib","symbolFilePath":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libzimg.2.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.715Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":26,"event":"module","body":{"module":{"addressRange":"107B80000","id":"107B80000","name":"libopus.0.dylib","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libopus.0.dylib","symbolFilePath":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libopus.0.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.715Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":27,"event":"module","body":{"module":{"addressRange":"107BF8000","id":"107BF8000","name":"libintlc.dylib","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libintlc.dylib","symbolFilePath":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libintlc.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":28,"event":"module","body":{"module":{"addressRange":"107C37000","id":"107C37000","name":"libimf.dylib","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libimf.dylib","symbolFilePath":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libimf.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":29,"event":"module","body":{"module":{"addressRange":"107F43000","id":"107F43000","name":"libirc.dylib","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libirc.dylib","symbolFilePath":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libirc.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":30,"event":"module","body":{"module":{"addressRange":"107F82000","id":"107F82000","name":"libsvml.dylib","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libsvml.dylib","symbolFilePath":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libsvml.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":31,"event":"module","body":{"module":{"addressRange":"108659000","id":"108659000","name":"libiomp5.dylib","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libiomp5.dylib","symbolFilePath":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libiomp5.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":32,"event":"module","body":{"module":{"addressRange":"7FFF246E9000","id":"7FFF246E9000","name":"CFNetwork","path":"/System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork","symbolFilePath":"/System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":33,"event":"module","body":{"module":{"addressRange":"7FFF20402000","id":"7FFF20402000","name":"CoreFoundation","path":"/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation","symbolFilePath":"/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":34,"event":"module","body":{"module":{"addressRange":"7FFF20EC5000","id":"7FFF20EC5000","name":"SystemConfiguration","path":"/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration","symbolFilePath":"/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":35,"event":"module","body":{"module":{"addressRange":"7FFF202E8000","id":"7FFF202E8000","name":"libc++.1.dylib","path":"/usr/lib/libc++.1.dylib","symbolFilePath":"/usr/lib/libc++.1.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":36,"event":"module","body":{"module":{"addressRange":"7FFF2A563000","id":"7FFF2A563000","name":"libSystem.B.dylib","path":"/usr/lib/libSystem.B.dylib","symbolFilePath":"/usr/lib/libSystem.B.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":37,"event":"module","body":{"module":{"addressRange":"10876D000","id":"10876D000","name":"libboost_system.dylib","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libboost_system.dylib","symbolFilePath":"/Users/dyitzchaki/projects/modularuplynk2/slicer/dependencies/slicer_Darwin_64_debug/lib/libboost_system.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":38,"event":"module","body":{"module":{"addressRange":"7FFF2033E000","id":"7FFF2033E000","name":"libc++abi.dylib","path":"/usr/lib/libc++abi.dylib","symbolFilePath":"/usr/lib/libc++abi.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":39,"event":"module","body":{"module":{"addressRange":"7FFF2A55D000","id":"7FFF2A55D000","name":"libcache.dylib","path":"/usr/lib/system/libcache.dylib","symbolFilePath":"/usr/lib/system/libcache.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":40,"event":"module","body":{"module":{"addressRange":"7FFF2A519000","id":"7FFF2A519000","name":"libcommonCrypto.dylib","path":"/usr/lib/system/libcommonCrypto.dylib","symbolFilePath":"/usr/lib/system/libcommonCrypto.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":41,"event":"module","body":{"module":{"addressRange":"7FFF2A543000","id":"7FFF2A543000","name":"libcompiler_rt.dylib","path":"/usr/lib/system/libcompiler_rt.dylib","symbolFilePath":"/usr/lib/system/libcompiler_rt.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":42,"event":"module","body":{"module":{"addressRange":"7FFF2A538000","id":"7FFF2A538000","name":"libcopyfile.dylib","path":"/usr/lib/system/libcopyfile.dylib","symbolFilePath":"/usr/lib/system/libcopyfile.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":43,"event":"module","body":{"module":{"addressRange":"7FFF20112000","id":"7FFF20112000","name":"libcorecrypto.dylib","path":"/usr/lib/system/libcorecrypto.dylib","symbolFilePath":"/usr/lib/system/libcorecrypto.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":44,"event":"module","body":{"module":{"addressRange":"7FFF201DD000","id":"7FFF201DD000","name":"libdispatch.dylib","path":"/usr/lib/system/libdispatch.dylib","symbolFilePath":"/usr/lib/system/libdispatch.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":45,"event":"module","body":{"module":{"addressRange":"7FFF20390000","id":"7FFF20390000","name":"libdyld.dylib","path":"/usr/lib/system/libdyld.dylib","symbolFilePath":"/usr/lib/system/libdyld.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":46,"event":"module","body":{"module":{"addressRange":"7FFF2A554000","id":"7FFF2A554000","name":"libkeymgr.dylib","path":"/usr/lib/system/libkeymgr.dylib","symbolFilePath":"/usr/lib/system/libkeymgr.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":47,"event":"module","body":{"module":{"addressRange":"7FFF2D967000","id":"7FFF2D967000","name":"liblaunch.dylib","path":"/usr/lib/system/liblaunch.dylib","symbolFilePath":"/usr/lib/system/liblaunch.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":48,"event":"module","body":{"module":{"addressRange":"7FFF2A4F7000","id":"7FFF2A4F7000","name":"libmacho.dylib","path":"/usr/lib/system/libmacho.dylib","symbolFilePath":"/usr/lib/system/libmacho.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":49,"event":"module","body":{"module":{"addressRange":"7FFF29CEF000","id":"7FFF29CEF000","name":"libquarantine.dylib","path":"/usr/lib/system/libquarantine.dylib","symbolFilePath":"/usr/lib/system/libquarantine.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":50,"event":"module","body":{"module":{"addressRange":"7FFF2A551000","id":"7FFF2A551000","name":"libremovefile.dylib","path":"/usr/lib/system/libremovefile.dylib","symbolFilePath":"/usr/lib/system/libremovefile.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":51,"event":"module","body":{"module":{"addressRange":"7FFF24BF5000","id":"7FFF24BF5000","name":"libsystem_asl.dylib","path":"/usr/lib/system/libsystem_asl.dylib","symbolFilePath":"/usr/lib/system/libsystem_asl.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.716Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":52,"event":"module","body":{"module":{"addressRange":"7FFF200C2000","id":"7FFF200C2000","name":"libsystem_blocks.dylib","path":"/usr/lib/system/libsystem_blocks.dylib","symbolFilePath":"/usr/lib/system/libsystem_blocks.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.717Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":53,"event":"module","body":{"module":{"addressRange":"7FFF2025F000","id":"7FFF2025F000","name":"libsystem_c.dylib","path":"/usr/lib/system/libsystem_c.dylib","symbolFilePath":"/usr/lib/system/libsystem_c.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.717Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":54,"event":"module","body":{"module":{"addressRange":"7FFF2A54B000","id":"7FFF2A54B000","name":"libsystem_collections.dylib","path":"/usr/lib/system/libsystem_collections.dylib","symbolFilePath":"/usr/lib/system/libsystem_collections.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.717Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":55,"event":"module","body":{"module":{"addressRange":"7FFF28FF5000","id":"7FFF28FF5000","name":"libsystem_configuration.dylib","path":"/usr/lib/system/libsystem_configuration.dylib","symbolFilePath":"/usr/lib/system/libsystem_configuration.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":56,"event":"module","body":{"module":{"addressRange":"7FFF282E1000","id":"7FFF282E1000","name":"libsystem_containermanager.dylib","path":"/usr/lib/system/libsystem_containermanager.dylib","symbolFilePath":"/usr/lib/system/libsystem_containermanager.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":57,"event":"module","body":{"module":{"addressRange":"7FFF2A29A000","id":"7FFF2A29A000","name":"libsystem_coreservices.dylib","path":"/usr/lib/system/libsystem_coreservices.dylib","symbolFilePath":"/usr/lib/system/libsystem_coreservices.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":58,"event":"module","body":{"module":{"addressRange":"7FFF227D1000","id":"7FFF227D1000","name":"libsystem_darwin.dylib","path":"/usr/lib/system/libsystem_darwin.dylib","symbolFilePath":"/usr/lib/system/libsystem_darwin.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":59,"event":"module","body":{"module":{"addressRange":"7FFF2A555000","id":"7FFF2A555000","name":"libsystem_dnssd.dylib","path":"/usr/lib/system/libsystem_dnssd.dylib","symbolFilePath":"/usr/lib/system/libsystem_dnssd.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":60,"event":"module","body":{"module":{"addressRange":"7FFF2025C000","id":"7FFF2025C000","name":"libsystem_featureflags.dylib","path":"/usr/lib/system/libsystem_featureflags.dylib","symbolFilePath":"/usr/lib/system/libsystem_featureflags.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":61,"event":"module","body":{"module":{"addressRange":"7FFF203D6000","id":"7FFF203D6000","name":"libsystem_info.dylib","path":"/usr/lib/system/libsystem_info.dylib","symbolFilePath":"/usr/lib/system/libsystem_info.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":62,"event":"module","body":{"module":{"addressRange":"7FFF2A4AE000","id":"7FFF2A4AE000","name":"libsystem_m.dylib","path":"/usr/lib/system/libsystem_m.dylib","symbolFilePath":"/usr/lib/system/libsystem_m.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":63,"event":"module","body":{"module":{"addressRange":"7FFF201B0000","id":"7FFF201B0000","name":"libsystem_malloc.dylib","path":"/usr/lib/system/libsystem_malloc.dylib","symbolFilePath":"/usr/lib/system/libsystem_malloc.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":64,"event":"module","body":{"module":{"addressRange":"7FFF24B88000","id":"7FFF24B88000","name":"libsystem_networkextension.dylib","path":"/usr/lib/system/libsystem_networkextension.dylib","symbolFilePath":"/usr/lib/system/libsystem_networkextension.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":65,"event":"module","body":{"module":{"addressRange":"7FFF22BF0000","id":"7FFF22BF0000","name":"libsystem_notify.dylib","path":"/usr/lib/system/libsystem_notify.dylib","symbolFilePath":"/usr/lib/system/libsystem_notify.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":66,"event":"module","body":{"module":{"addressRange":"7FFF2FDFE000","id":"7FFF2FDFE000","name":"libsystem_product_info_filter.dylib","path":"/usr/lib/system/libsystem_product_info_filter.dylib","symbolStatus":"Symbols not found"},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":67,"event":"module","body":{"module":{"addressRange":"7FFF28FF9000","id":"7FFF28FF9000","name":"libsystem_sandbox.dylib","path":"/usr/lib/system/libsystem_sandbox.dylib","symbolFilePath":"/usr/lib/system/libsystem_sandbox.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":68,"event":"module","body":{"module":{"addressRange":"7FFF2A54E000","id":"7FFF2A54E000","name":"libsystem_secinit.dylib","path":"/usr/lib/system/libsystem_secinit.dylib","symbolFilePath":"/usr/lib/system/libsystem_secinit.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":69,"event":"module","body":{"module":{"addressRange":"7FFF20354000","id":"7FFF20354000","name":"libsystem_kernel.dylib","path":"/usr/lib/system/libsystem_kernel.dylib","symbolFilePath":"/usr/lib/system/libsystem_kernel.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":70,"event":"module","body":{"module":{"addressRange":"7FFF203CC000","id":"7FFF203CC000","name":"libsystem_platform.dylib","path":"/usr/lib/system/libsystem_platform.dylib","symbolFilePath":"/usr/lib/system/libsystem_platform.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":71,"event":"module","body":{"module":{"addressRange":"7FFF20384000","id":"7FFF20384000","name":"libsystem_pthread.dylib","path":"/usr/lib/system/libsystem_pthread.dylib","symbolFilePath":"/usr/lib/system/libsystem_pthread.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":72,"event":"module","body":{"module":{"addressRange":"7FFF262D2000","id":"7FFF262D2000","name":"libsystem_symptoms.dylib","path":"/usr/lib/system/libsystem_symptoms.dylib","symbolFilePath":"/usr/lib/system/libsystem_symptoms.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":73,"event":"module","body":{"module":{"addressRange":"7FFF200FA000","id":"7FFF200FA000","name":"libsystem_trace.dylib","path":"/usr/lib/system/libsystem_trace.dylib","symbolFilePath":"/usr/lib/system/libsystem_trace.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":74,"event":"module","body":{"module":{"addressRange":"7FFF2A525000","id":"7FFF2A525000","name":"libunwind.dylib","path":"/usr/lib/system/libunwind.dylib","symbolFilePath":"/usr/lib/system/libunwind.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":75,"event":"module","body":{"module":{"addressRange":"7FFF200C4000","id":"7FFF200C4000","name":"libxpc.dylib","path":"/usr/lib/system/libxpc.dylib","symbolFilePath":"/usr/lib/system/libxpc.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":76,"event":"module","body":{"module":{"addressRange":"7FFF20222000","id":"7FFF20222000","name":"libobjc.A.dylib","path":"/usr/lib/libobjc.A.dylib","symbolFilePath":"/usr/lib/libobjc.A.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":77,"event":"module","body":{"module":{"addressRange":"7FFF2A530000","id":"7FFF2A530000","name":"liboah.dylib","path":"/usr/lib/liboah.dylib","symbolFilePath":"/usr/lib/liboah.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":78,"event":"module","body":{"module":{"addressRange":"7FFF2A28D000","id":"7FFF2A28D000","name":"libbz2.1.0.dylib","path":"/usr/lib/libbz2.1.0.dylib","symbolFilePath":"/usr/lib/libbz2.1.0.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":79,"event":"module","body":{"module":{"addressRange":"7FFF22219000","id":"7FFF22219000","name":"Security","path":"/System/Library/Frameworks/Security.framework/Versions/A/Security","symbolFilePath":"/System/Library/Frameworks/Security.framework/Versions/A/Security","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":80,"event":"module","body":{"module":{"addressRange":"7FFF2A5A2000","id":"7FFF2A5A2000","name":"libiconv.2.dylib","path":"/usr/lib/libiconv.2.dylib","symbolFilePath":"/usr/lib/libiconv.2.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":81,"event":"module","body":{"module":{"addressRange":"7FFF2CBD0000","id":"7FFF2CBD0000","name":"AudioToolbox","path":"/System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox","symbolFilePath":"/System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":82,"event":"module","body":{"module":{"addressRange":"7FFF2BA92000","id":"7FFF2BA92000","name":"VideoToolbox","path":"/System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox","symbolFilePath":"/System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":83,"event":"module","body":{"module":{"addressRange":"7FFF2844F000","id":"7FFF2844F000","name":"CoreMedia","path":"/System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia","symbolFilePath":"/System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":84,"event":"module","body":{"module":{"addressRange":"7FFF272D9000","id":"7FFF272D9000","name":"CoreVideo","path":"/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo","symbolFilePath":"/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":85,"event":"module","body":{"module":{"addressRange":"7FFF2FEFC000","id":"7FFF2FEFC000","name":"CoreServices","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":86,"event":"module","body":{"module":{"addressRange":"7FFF2830E000","id":"7FFF2830E000","name":"Metal","path":"/System/Library/Frameworks/Metal.framework/Versions/A/Metal","symbolFilePath":"/System/Library/Frameworks/Metal.framework/Versions/A/Metal","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":87,"event":"module","body":{"module":{"addressRange":"7FFF2A7D3000","id":"7FFF2A7D3000","name":"MetalPerformanceShaders","path":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders","symbolFilePath":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.718Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":88,"event":"module","body":{"module":{"addressRange":"7FFF25615000","id":"7FFF25615000","name":"ColorSync","path":"/System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync","symbolFilePath":"/System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.719Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":89,"event":"module","body":{"module":{"addressRange":"7FFF24F8B000","id":"7FFF24F8B000","name":"CoreGraphics","path":"/System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics","symbolFilePath":"/System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.719Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":90,"event":"module","body":{"module":{"addressRange":"7FFF2B92D000","id":"7FFF2B92D000","name":"AppleJPEG","path":"/System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG","symbolFilePath":"/System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.719Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":91,"event":"module","body":{"module":{"addressRange":"7FFF211B1000","id":"7FFF211B1000","name":"Foundation","path":"/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation","symbolFilePath":"/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.719Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":92,"event":"module","body":{"module":{"addressRange":"7FFF2B03E000","id":"7FFF2B03E000","name":"AppleVA","path":"/System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA","symbolFilePath":"/System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.719Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":93,"event":"module","body":{"module":{"addressRange":"7FFF300B8000","id":"7FFF300B8000","name":"Accelerate","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate","symbolStatus":"Symbols not found"},"reason":"new"}} [2021-10-25T11:13:48.719Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":94,"event":"module","body":{"module":{"addressRange":"7FFF22B41000","id":"7FFF22B41000","name":"IOKit","path":"/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit","symbolFilePath":"/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.719Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":95,"event":"module","body":{"module":{"addressRange":"7FFF282F2000","id":"7FFF282F2000","name":"IOSurface","path":"/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface","symbolFilePath":"/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.719Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":96,"event":"module","body":{"module":{"addressRange":"7FFF26496000","id":"7FFF26496000","name":"libDiagnosticMessagesClient.dylib","path":"/usr/lib/libDiagnosticMessagesClient.dylib","symbolFilePath":"/usr/lib/libDiagnosticMessagesClient.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.719Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":97,"event":"module","body":{"module":{"addressRange":"7FFF28304000","id":"7FFF28304000","name":"IOAccelerator","path":"/System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator","symbolFilePath":"/System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.720Z ERROR codelldb::debug_session] no available capacity [2021-10-25T11:13:48.720Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":98,"event":"module","body":{"module":{"addressRange":"7FFF6BA5D000","id":"7FFF6BA5D000","name":"libCoreFSCache.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib","symbolFilePath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.720Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":99,"event":"module","body":{"module":{"addressRange":"7FFF24B97000","id":"7FFF24B97000","name":"libenergytrace.dylib","path":"/usr/lib/libenergytrace.dylib","symbolFilePath":"/usr/lib/libenergytrace.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.720Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":100,"event":"module","body":{"module":{"addressRange":"7FFF29D16000","id":"7FFF29D16000","name":"libbsm.0.dylib","path":"/usr/lib/libbsm.0.dylib","symbolFilePath":"/usr/lib/libbsm.0.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.720Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":101,"event":"module","body":{"module":{"addressRange":"7FFF2A49B000","id":"7FFF2A49B000","name":"libz.1.dylib","path":"/usr/lib/libz.1.dylib","symbolFilePath":"/usr/lib/libz.1.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.720Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":102,"event":"module","body":{"module":{"addressRange":"7FFF2A4FD000","id":"7FFF2A4FD000","name":"libkxld.dylib","path":"/usr/lib/system/libkxld.dylib","symbolFilePath":"/usr/lib/system/libkxld.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.720Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":103,"event":"module","body":{"module":{"addressRange":"7FFF2A569000","id":"7FFF2A569000","name":"SoftLinking","path":"/System/Library/PrivateFrameworks/SoftLinking.framework/Versions/A/SoftLinking","symbolFilePath":"/System/Library/PrivateFrameworks/SoftLinking.framework/Versions/A/SoftLinking","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.720Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":104,"event":"module","body":{"module":{"addressRange":"7FFF2A565000","id":"7FFF2A565000","name":"libfakelink.dylib","path":"/usr/lib/libfakelink.dylib","symbolFilePath":"/usr/lib/libfakelink.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.720Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":105,"event":"module","body":{"module":{"addressRange":"7FFF22571000","id":"7FFF22571000","name":"libicucore.A.dylib","path":"/usr/lib/libicucore.A.dylib","symbolFilePath":"/usr/lib/libicucore.A.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.720Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":106,"event":"module","body":{"module":{"addressRange":"7FFF26466000","id":"7FFF26466000","name":"CoreAnalytics","path":"/System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics","symbolFilePath":"/System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.720Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":107,"event":"module","body":{"module":{"addressRange":"7FFF2A781000","id":"7FFF2A781000","name":"AppleSauce","path":"/System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce","symbolFilePath":"/System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.720Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":108,"event":"module","body":{"module":{"addressRange":"7FFF25F44000","id":"7FFF25F44000","name":"libsqlite3.dylib","path":"/usr/lib/libsqlite3.dylib","symbolFilePath":"/usr/lib/libsqlite3.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.720Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":109,"event":"module","body":{"module":{"addressRange":"7FFF271AE000","id":"7FFF271AE000","name":"CoreAutoLayout","path":"/System/Library/PrivateFrameworks/CoreAutoLayout.framework/Versions/A/CoreAutoLayout","symbolFilePath":"/System/Library/PrivateFrameworks/CoreAutoLayout.framework/Versions/A/CoreAutoLayout","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.720Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":110,"event":"module","body":{"module":{"addressRange":"7FFF2A7DA000","id":"7FFF2A7DA000","name":"libcompression.dylib","path":"/usr/lib/libcompression.dylib","symbolFilePath":"/usr/lib/libcompression.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.720Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":111,"event":"module","body":{"module":{"addressRange":"7FFF26581000","id":"7FFF26581000","name":"DiskArbitration","path":"/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration","symbolFilePath":"/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.720Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":112,"event":"module","body":{"module":{"addressRange":"7FFF2A6A5000","id":"7FFF2A6A5000","name":"libarchive.2.dylib","path":"/usr/lib/libarchive.2.dylib","symbolFilePath":"/usr/lib/libarchive.2.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.720Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":113,"event":"module","body":{"module":{"addressRange":"7FFF271F6000","id":"7FFF271F6000","name":"libxml2.2.dylib","path":"/usr/lib/libxml2.2.dylib","symbolFilePath":"/usr/lib/libxml2.2.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.720Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":114,"event":"module","body":{"module":{"addressRange":"7FFF29004000","id":"7FFF29004000","name":"liblangid.dylib","path":"/usr/lib/liblangid.dylib","symbolFilePath":"/usr/lib/liblangid.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.720Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":115,"event":"module","body":{"module":{"addressRange":"7FFF20F43000","id":"7FFF20F43000","name":"libCRFSuite.dylib","path":"/usr/lib/libCRFSuite.dylib","symbolFilePath":"/usr/lib/libCRFSuite.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.720Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":116,"event":"module","body":{"module":{"addressRange":"7FFF24062000","id":"7FFF24062000","name":"libnetwork.dylib","path":"/usr/lib/libnetwork.dylib","symbolFilePath":"/usr/lib/libnetwork.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.721Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":117,"event":"module","body":{"module":{"addressRange":"7FFF2A56A000","id":"7FFF2A56A000","name":"libpcap.A.dylib","path":"/usr/lib/libpcap.A.dylib","symbolFilePath":"/usr/lib/libpcap.A.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.721Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":118,"event":"module","body":{"module":{"addressRange":"7FFF262CB000","id":"7FFF262CB000","name":"libdns_services.dylib","path":"/usr/lib/libdns_services.dylib","symbolFilePath":"/usr/lib/libdns_services.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.721Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":119,"event":"module","body":{"module":{"addressRange":"7FFF2AC07000","id":"7FFF2AC07000","name":"libcoretls_cfhelpers.dylib","path":"/usr/lib/libcoretls_cfhelpers.dylib","symbolFilePath":"/usr/lib/libcoretls_cfhelpers.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.721Z ERROR codelldb::debug_session] no available capacity [2021-10-25T11:13:48.722Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":120,"event":"module","body":{"module":{"addressRange":"7FFF2A7A4000","id":"7FFF2A7A4000","name":"libapple_nghttp2.dylib","path":"/usr/lib/libapple_nghttp2.dylib","symbolFilePath":"/usr/lib/libapple_nghttp2.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.722Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":121,"event":"module","body":{"module":{"addressRange":"7FFF24B98000","id":"7FFF24B98000","name":"libMobileGestalt.dylib","path":"/usr/lib/libMobileGestalt.dylib","symbolFilePath":"/usr/lib/libMobileGestalt.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.722Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":122,"event":"module","body":{"module":{"addressRange":"7FFF2A27D000","id":"7FFF2A27D000","name":"AppleFSCompression","path":"/System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression","symbolFilePath":"/System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.722Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":123,"event":"module","body":{"module":{"addressRange":"7FFF29CFE000","id":"7FFF29CFE000","name":"libcoretls.dylib","path":"/usr/lib/libcoretls.dylib","symbolFilePath":"/usr/lib/libcoretls.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.722Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":124,"event":"module","body":{"module":{"addressRange":"7FFF2A7D5000","id":"7FFF2A7D5000","name":"libpam.2.dylib","path":"/usr/lib/libpam.2.dylib","symbolFilePath":"/usr/lib/libpam.2.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.722Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":125,"event":"module","body":{"module":{"addressRange":"7FFF2AD05000","id":"7FFF2AD05000","name":"libxar.1.dylib","path":"/usr/lib/libxar.1.dylib","symbolFilePath":"/usr/lib/libxar.1.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.722Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":126,"event":"module","body":{"module":{"addressRange":"7FFF29000000","id":"7FFF29000000","name":"AppleSystemInfo","path":"/System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo","symbolFilePath":"/System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.722Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":127,"event":"module","body":{"module":{"addressRange":"7FFF29940000","id":"7FFF29940000","name":"IOMobileFramebuffer","path":"/System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/Versions/A/IOMobileFramebuffer","symbolFilePath":"/System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/Versions/A/IOMobileFramebuffer","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.722Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":128,"event":"module","body":{"module":{"addressRange":"7FFF2ABEE000","id":"7FFF2ABEE000","name":"liblzma.5.dylib","path":"/usr/lib/liblzma.5.dylib","symbolFilePath":"/usr/lib/liblzma.5.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.722Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":129,"event":"module","body":{"module":{"addressRange":"7FFF2A4F6000","id":"7FFF2A4F6000","name":"libcharset.1.dylib","path":"/usr/lib/libcharset.1.dylib","symbolFilePath":"/usr/lib/libcharset.1.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.722Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":130,"event":"module","body":{"module":{"addressRange":"7FFF27179000","id":"7FFF27179000","name":"FSEvents","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.722Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":131,"event":"module","body":{"module":{"addressRange":"7FFF227DB000","id":"7FFF227DB000","name":"CarbonCore","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.722Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":132,"event":"module","body":{"module":{"addressRange":"7FFF264E6000","id":"7FFF264E6000","name":"Metadata","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.722Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":133,"event":"module","body":{"module":{"addressRange":"7FFF2A29F000","id":"7FFF2A29F000","name":"OSServices","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.722Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":134,"event":"module","body":{"module":{"addressRange":"7FFF2A717000","id":"7FFF2A717000","name":"SearchKit","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.722Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":135,"event":"module","body":{"module":{"addressRange":"7FFF26256000","id":"7FFF26256000","name":"AE","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.722Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":136,"event":"module","body":{"module":{"addressRange":"7FFF208A0000","id":"7FFF208A0000","name":"LaunchServices","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.722Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":137,"event":"module","body":{"module":{"addressRange":"7FFF2AB9E000","id":"7FFF2AB9E000","name":"DictionaryServices","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.722Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":138,"event":"module","body":{"module":{"addressRange":"7FFF27186000","id":"7FFF27186000","name":"SharedFileList","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.724Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":139,"event":"module","body":{"module":{"addressRange":"7FFF29CF2000","id":"7FFF29CF2000","name":"libCheckFix.dylib","path":"/usr/lib/libCheckFix.dylib","symbolFilePath":"/usr/lib/libCheckFix.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.724Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":140,"event":"module","body":{"module":{"addressRange":"7FFF24C0C000","id":"7FFF24C0C000","name":"TCC","path":"/System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC","symbolFilePath":"/System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.724Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":141,"event":"module","body":{"module":{"addressRange":"7FFF29006000","id":"7FFF29006000","name":"CoreNLP","path":"/System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP","symbolFilePath":"/System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.722Z ERROR codelldb::debug_session] no available capacity [2021-10-25T11:13:48.724Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":142,"event":"module","body":{"module":{"addressRange":"7FFF26499000","id":"7FFF26499000","name":"MetadataUtilities","path":"/System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities","symbolFilePath":"/System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.724Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":143,"event":"module","body":{"module":{"addressRange":"7FFF20F78000","id":"7FFF20F78000","name":"libmecabra.dylib","path":"/usr/lib/libmecabra.dylib","symbolFilePath":"/usr/lib/libmecabra.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.724Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":144,"event":"module","body":{"module":{"addressRange":"7FFF29FFC000","id":"7FFF29FFC000","name":"MLCompute","path":"/System/Library/Frameworks/MLCompute.framework/Versions/A/MLCompute","symbolFilePath":"/System/Library/Frameworks/MLCompute.framework/Versions/A/MLCompute","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.724Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":145,"event":"module","body":{"module":{"addressRange":"7FFF29D27000","id":"7FFF29D27000","name":"libmecab.dylib","path":"/usr/lib/libmecab.dylib","symbolFilePath":"/usr/lib/libmecab.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.724Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":146,"event":"module","body":{"module":{"addressRange":"7FFF29D71000","id":"7FFF29D71000","name":"libgermantok.dylib","path":"/usr/lib/libgermantok.dylib","symbolFilePath":"/usr/lib/libgermantok.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.724Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":147,"event":"module","body":{"module":{"addressRange":"7FFF2A77F000","id":"7FFF2A77F000","name":"libThaiTokenizer.dylib","path":"/usr/lib/libThaiTokenizer.dylib","symbolFilePath":"/usr/lib/libThaiTokenizer.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.724Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":148,"event":"module","body":{"module":{"addressRange":"7FFF2AD40000","id":"7FFF2AD40000","name":"libChineseTokenizer.dylib","path":"/usr/lib/libChineseTokenizer.dylib","symbolFilePath":"/usr/lib/libChineseTokenizer.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.728Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":149,"event":"module","body":{"module":{"addressRange":"7FFF26588000","id":"7FFF26588000","name":"vImage","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.729Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":150,"event":"module","body":{"module":{"addressRange":"7FFF2FED6000","id":"7FFF2FED6000","name":"vecLib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib","symbolStatus":"Symbols not found"},"reason":"new"}} [2021-10-25T11:13:48.729Z ERROR codelldb::debug_session] no available capacity [2021-10-25T11:13:48.729Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":151,"event":"module","body":{"module":{"addressRange":"7FFF2AD4B000","id":"7FFF2AD4B000","name":"libvMisc.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.729Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":152,"event":"module","body":{"module":{"addressRange":"7FFF2975B000","id":"7FFF2975B000","name":"libvDSP.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.729Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":153,"event":"module","body":{"module":{"addressRange":"7FFF20BAB000","id":"7FFF20BAB000","name":"libBLAS.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.729Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":154,"event":"module","body":{"module":{"addressRange":"7FFF2A800000","id":"7FFF2A800000","name":"libLAPACK.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.729Z ERROR codelldb::debug_session] no available capacity [2021-10-25T11:13:48.729Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":155,"event":"module","body":{"module":{"addressRange":"7FFF29D77000","id":"7FFF29D77000","name":"libLinearAlgebra.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.729Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":156,"event":"module","body":{"module":{"addressRange":"7FFF2A7BC000","id":"7FFF2A7BC000","name":"libSparseBLAS.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.729Z ERROR codelldb::debug_session] no available capacity [2021-10-25T11:13:48.729Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":157,"event":"module","body":{"module":{"addressRange":"7FFF2A7FA000","id":"7FFF2A7FA000","name":"libQuadrature.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.729Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":158,"event":"module","body":{"module":{"addressRange":"7FFF290B2000","id":"7FFF290B2000","name":"libBNNS.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.729Z ERROR codelldb::debug_session] no available capacity [2021-10-25T11:13:48.729Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":159,"event":"module","body":{"module":{"addressRange":"7FFF20E56000","id":"7FFF20E56000","name":"libSparse.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.729Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":160,"event":"module","body":{"module":{"addressRange":"7FFF28F8E000","id":"7FFF28F8E000","name":"MPSCore","path":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSCore.framework/Versions/A/MPSCore","symbolFilePath":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSCore.framework/Versions/A/MPSCore","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.729Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":161,"event":"module","body":{"module":{"addressRange":"7FFF2A1EC000","id":"7FFF2A1EC000","name":"MPSImage","path":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSImage.framework/Versions/A/MPSImage","symbolFilePath":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSImage.framework/Versions/A/MPSImage","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.729Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":162,"event":"module","body":{"module":{"addressRange":"7FFF29D8D000","id":"7FFF29D8D000","name":"MPSNeuralNetwork","path":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork","symbolFilePath":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.729Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":163,"event":"module","body":{"module":{"addressRange":"7FFF2A15E000","id":"7FFF2A15E000","name":"MPSMatrix","path":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix","symbolFilePath":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.729Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":164,"event":"module","body":{"module":{"addressRange":"7FFF29FAC000","id":"7FFF29FAC000","name":"MPSRayIntersector","path":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector","symbolFilePath":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.729Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":165,"event":"module","body":{"module":{"addressRange":"7FFF2A195000","id":"7FFF2A195000","name":"MPSNDArray","path":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray","symbolFilePath":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.729Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":166,"event":"module","body":{"module":{"addressRange":"7FFF20AD6000","id":"7FFF20AD6000","name":"MetalTools","path":"/System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools","symbolFilePath":"/System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.730Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":167,"event":"module","body":{"module":{"addressRange":"7FFF28FFE000","id":"7FFF28FFE000","name":"AggregateDictionary","path":"/System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary","symbolFilePath":"/System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.730Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":168,"event":"module","body":{"module":{"addressRange":"7FFF21510000","id":"7FFF21510000","name":"LanguageModeling","path":"/System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling","symbolFilePath":"/System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.730Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":169,"event":"module","body":{"module":{"addressRange":"7FFF2992E000","id":"7FFF2992E000","name":"CoreEmoji","path":"/System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji","symbolFilePath":"/System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.730Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":170,"event":"module","body":{"module":{"addressRange":"7FFF290AB000","id":"7FFF290AB000","name":"LinguisticData","path":"/System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData","symbolFilePath":"/System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.730Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":171,"event":"module","body":{"module":{"addressRange":"7FFF20E08000","id":"7FFF20E08000","name":"Lexicon","path":"/System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon","symbolFilePath":"/System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.730Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":172,"event":"module","body":{"module":{"addressRange":"7FFF2A693000","id":"7FFF2A693000","name":"libcmph.dylib","path":"/usr/lib/libcmph.dylib","symbolFilePath":"/usr/lib/libcmph.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.730Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":173,"event":"module","body":{"module":{"addressRange":"7FFF27159000","id":"7FFF27159000","name":"CFOpenDirectory","path":"/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory","symbolFilePath":"/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.730Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":174,"event":"module","body":{"module":{"addressRange":"7FFF27149000","id":"7FFF27149000","name":"OpenDirectory","path":"/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory","symbolFilePath":"/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.730Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":175,"event":"module","body":{"module":{"addressRange":"7FFF2AC09000","id":"7FFF2AC09000","name":"APFS","path":"/System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS","symbolFilePath":"/System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.730Z ERROR codelldb::debug_session] no available capacity [2021-10-25T11:13:48.730Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":176,"event":"module","body":{"module":{"addressRange":"7FFF29C54000","id":"7FFF29C54000","name":"SecurityFoundation","path":"/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation","symbolFilePath":"/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.730Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":177,"event":"module","body":{"module":{"addressRange":"7FFF2AD13000","id":"7FFF2AD13000","name":"libutil.dylib","path":"/usr/lib/libutil.dylib","symbolFilePath":"/usr/lib/libutil.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.730Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":178,"event":"module","body":{"module":{"addressRange":"7FFF271AB000","id":"7FFF271AB000","name":"libapp_launch_measurement.dylib","path":"/usr/lib/libapp_launch_measurement.dylib","symbolFilePath":"/usr/lib/libapp_launch_measurement.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.730Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":179,"event":"module","body":{"module":{"addressRange":"7FFF22B06000","id":"7FFF22B06000","name":"CoreServicesStore","path":"/System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore","symbolFilePath":"/System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.730Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":180,"event":"module","body":{"module":{"addressRange":"7FFF29CEA000","id":"7FFF29CEA000","name":"ServiceManagement","path":"/System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement","symbolFilePath":"/System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.733Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":181,"event":"module","body":{"module":{"addressRange":"7FFF2AD17000","id":"7FFF2AD17000","name":"libxslt.1.dylib","path":"/usr/lib/libxslt.1.dylib","symbolFilePath":"/usr/lib/libxslt.1.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":182,"event":"module","body":{"module":{"addressRange":"7FFF29CE0000","id":"7FFF29CE0000","name":"BackgroundTaskManagement","path":"/System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement","symbolFilePath":"/System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":183,"event":"module","body":{"module":{"addressRange":"7FFF24C25000","id":"7FFF24C25000","name":"SkyLight","path":"/System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight","symbolFilePath":"/System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":184,"event":"module","body":{"module":{"addressRange":"7FFF2853A000","id":"7FFF2853A000","name":"libFontParser.dylib","path":"/System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib","symbolFilePath":"/System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":185,"event":"module","body":{"module":{"addressRange":"7FFF2620D000","id":"7FFF2620D000","name":"RunningBoardServices","path":"/System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices","symbolFilePath":"/System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":186,"event":"module","body":{"module":{"addressRange":"7FFF2BA57000","id":"7FFF2BA57000","name":"WatchdogClient","path":"/System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient","symbolFilePath":"/System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":187,"event":"module","body":{"module":{"addressRange":"7FFF215F9000","id":"7FFF215F9000","name":"CoreDisplay","path":"/System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay","symbolFilePath":"/System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":188,"event":"module","body":{"module":{"addressRange":"7FFF2BA5B000","id":"7FFF2BA5B000","name":"MultitouchSupport","path":"/System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport","symbolFilePath":"/System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":189,"event":"module","body":{"module":{"addressRange":"7FFF26BF0000","id":"7FFF26BF0000","name":"QuartzCore","path":"/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore","symbolFilePath":"/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":190,"event":"module","body":{"module":{"addressRange":"7FFF2618D000","id":"7FFF2618D000","name":"BaseBoard","path":"/System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard","symbolFilePath":"/System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":191,"event":"module","body":{"module":{"addressRange":"7FFF2B1D7000","id":"7FFF2B1D7000","name":"PersistentConnection","path":"/System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection","symbolFilePath":"/System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":192,"event":"module","body":{"module":{"addressRange":"7FFF289D5000","id":"7FFF289D5000","name":"ImageIO","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO","symbolFilePath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":193,"event":"module","body":{"module":{"addressRange":"7FFF25F2E000","id":"7FFF25F2E000","name":"ProtocolBuffer","path":"/System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer","symbolFilePath":"/System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":194,"event":"module","body":{"module":{"addressRange":"7FFF26175000","id":"7FFF26175000","name":"CommonUtilities","path":"/System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities","symbolFilePath":"/System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":195,"event":"module","body":{"module":{"addressRange":"7FFF2B8F0000","id":"7FFF2B8F0000","name":"Bom","path":"/System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom","symbolFilePath":"/System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":196,"event":"module","body":{"module":{"addressRange":"7FFF2AE09000","id":"7FFF2AE09000","name":"libate.dylib","path":"/usr/lib/libate.dylib","symbolFilePath":"/usr/lib/libate.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":197,"event":"module","body":{"module":{"addressRange":"7FFF2BCCB000","id":"7FFF2BCCB000","name":"libRadiance.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib","symbolFilePath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":198,"event":"module","body":{"module":{"addressRange":"7FFF2BC25000","id":"7FFF2BC25000","name":"libPng.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib","symbolFilePath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":199,"event":"module","body":{"module":{"addressRange":"7FFF2BC46000","id":"7FFF2BC46000","name":"libTIFF.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib","symbolFilePath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":200,"event":"module","body":{"module":{"addressRange":"7FFF2BD2A000","id":"7FFF2BD2A000","name":"libGIF.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib","symbolFilePath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":201,"event":"module","body":{"module":{"addressRange":"7FFF2B977000","id":"7FFF2B977000","name":"libJP2.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib","symbolFilePath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":202,"event":"module","body":{"module":{"addressRange":"7FFF2B092000","id":"7FFF2B092000","name":"libexpat.1.dylib","path":"/usr/lib/libexpat.1.dylib","symbolFilePath":"/usr/lib/libexpat.1.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":203,"event":"module","body":{"module":{"addressRange":"7FFF2BCC3000","id":"7FFF2BCC3000","name":"GPUWrangler","path":"/System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler","symbolFilePath":"/System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":204,"event":"module","body":{"module":{"addressRange":"7FFF2BCA6000","id":"7FFF2BCA6000","name":"IOPresentment","path":"/System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment","symbolFilePath":"/System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":205,"event":"module","body":{"module":{"addressRange":"7FFF2BCCF000","id":"7FFF2BCCF000","name":"DSExternalDisplay","path":"/System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay","symbolFilePath":"/System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":206,"event":"module","body":{"module":{"addressRange":"7FFF2BD2F000","id":"7FFF2BD2F000","name":"CMCaptureCore","path":"/System/Library/PrivateFrameworks/CMCaptureCore.framework/Versions/A/CMCaptureCore","symbolFilePath":"/System/Library/PrivateFrameworks/CMCaptureCore.framework/Versions/A/CMCaptureCore","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":207,"event":"module","body":{"module":{"addressRange":"7FFF2B68D000","id":"7FFF2B68D000","name":"libspindump.dylib","path":"/usr/lib/libspindump.dylib","symbolFilePath":"/usr/lib/libspindump.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.735Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":208,"event":"module","body":{"module":{"addressRange":"7FFF21B87000","id":"7FFF21B87000","name":"CoreAudio","path":"/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio","symbolFilePath":"/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.737Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":209,"event":"module","body":{"module":{"addressRange":"7FFF2B673000","id":"7FFF2B673000","name":"AppServerSupport","path":"/System/Library/PrivateFrameworks/AppServerSupport.framework/Versions/A/AppServerSupport","symbolFilePath":"/System/Library/PrivateFrameworks/AppServerSupport.framework/Versions/A/AppServerSupport","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.737Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":210,"event":"module","body":{"module":{"addressRange":"7FFF2D70A000","id":"7FFF2D70A000","name":"perfdata","path":"/System/Library/PrivateFrameworks/perfdata.framework/Versions/A/perfdata","symbolFilePath":"/System/Library/PrivateFrameworks/perfdata.framework/Versions/A/perfdata","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.737Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":211,"event":"module","body":{"module":{"addressRange":"7FFF29C43000","id":"7FFF29C43000","name":"AssertionServices","path":"/System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices","symbolFilePath":"/System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.737Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":212,"event":"module","body":{"module":{"addressRange":"7FFF21730000","id":"7FFF21730000","name":"AudioToolboxCore","path":"/System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore","symbolFilePath":"/System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.737Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":213,"event":"module","body":{"module":{"addressRange":"7FFF28432000","id":"7FFF28432000","name":"caulk","path":"/System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk","symbolFilePath":"/System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.737Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":214,"event":"module","body":{"module":{"addressRange":"7FFF3CBB6000","id":"7FFF3CBB6000","name":"SystemPolicy","path":"/System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy","symbolFilePath":"/System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.737Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":215,"event":"module","body":{"module":{"addressRange":"7FFF2AEA1000","id":"7FFF2AEA1000","name":"libIOReport.dylib","path":"/usr/lib/libIOReport.dylib","symbolFilePath":"/usr/lib/libIOReport.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.737Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":216,"event":"module","body":{"module":{"addressRange":"7FFF2CF46000","id":"7FFF2CF46000","name":"libSMC.dylib","path":"/usr/lib/libSMC.dylib","symbolFilePath":"/usr/lib/libSMC.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.737Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":217,"event":"module","body":{"module":{"addressRange":"7FFF2BBF1000","id":"7FFF2BBF1000","name":"libAudioToolboxUtility.dylib","path":"/usr/lib/libAudioToolboxUtility.dylib","symbolFilePath":"/usr/lib/libAudioToolboxUtility.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.737Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":218,"event":"module","body":{"module":{"addressRange":"7FFF3D513000","id":"7FFF3D513000","name":"libmis.dylib","path":"/usr/lib/libmis.dylib","symbolFilePath":"/usr/lib/libmis.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.737Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":219,"event":"module","body":{"module":{"addressRange":"7FFF6BA69000","id":"7FFF6BA69000","name":"OpenGL","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL","symbolFilePath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.737Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":220,"event":"module","body":{"module":{"addressRange":"7FFF6BA7C000","id":"7FFF6BA7C000","name":"libGFXShared.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib","symbolFilePath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.737Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":221,"event":"module","body":{"module":{"addressRange":"7FFF6BC8A000","id":"7FFF6BC8A000","name":"libGL.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib","symbolFilePath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.737Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":222,"event":"module","body":{"module":{"addressRange":"7FFF6BA85000","id":"7FFF6BA85000","name":"libGLImage.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib","symbolFilePath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.737Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":223,"event":"module","body":{"module":{"addressRange":"7FFF6BA79000","id":"7FFF6BA79000","name":"libCVMSPluginSupport.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib","symbolFilePath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.737Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":224,"event":"module","body":{"module":{"addressRange":"7FFF6BA64000","id":"7FFF6BA64000","name":"libCoreVMClient.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib","symbolFilePath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.737Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":225,"event":"module","body":{"module":{"addressRange":"7FFF28C12000","id":"7FFF28C12000","name":"CoreImage","path":"/System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage","symbolFilePath":"/System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.737Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":226,"event":"module","body":{"module":{"addressRange":"7FFF219A1000","id":"7FFF219A1000","name":"CoreText","path":"/System/Library/Frameworks/CoreText.framework/Versions/A/CoreText","symbolFilePath":"/System/Library/Frameworks/CoreText.framework/Versions/A/CoreText","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.738Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":227,"event":"module","body":{"module":{"addressRange":"7FFF6D0D4000","id":"7FFF6D0D4000","name":"OpenCL","path":"/System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL","symbolFilePath":"/System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.738Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":228,"event":"module","body":{"module":{"addressRange":"7FFF2B200000","id":"7FFF2B200000","name":"GraphVisualizer","path":"/System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer","symbolFilePath":"/System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.738Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":229,"event":"module","body":{"module":{"addressRange":"7FFF2B20F000","id":"7FFF2B20F000","name":"FaceCore","path":"/System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore","symbolFilePath":"/System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.738Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":230,"event":"module","body":{"module":{"addressRange":"7FFF2B62B000","id":"7FFF2B62B000","name":"OTSVG","path":"/System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG","symbolFilePath":"/System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.738Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":231,"event":"module","body":{"module":{"addressRange":"7FFF26ECE000","id":"7FFF26ECE000","name":"libFontRegistry.dylib","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.738Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":232,"event":"module","body":{"module":{"addressRange":"7FFF2B67A000","id":"7FFF2B67A000","name":"libhvf.dylib","path":"/System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib","symbolFilePath":"/System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.738Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":233,"event":"module","body":{"module":{"addressRange":"7FFF2CD05000","id":"7FFF2CD05000","name":"AudioSession","path":"/System/Library/PrivateFrameworks/AudioSession.framework/Versions/A/AudioSession","symbolFilePath":"/System/Library/PrivateFrameworks/AudioSession.framework/Versions/A/AudioSession","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.738Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":234,"event":"module","body":{"module":{"addressRange":"7FFF2CD6B000","id":"7FFF2CD6B000","name":"libAudioStatistics.dylib","path":"/usr/lib/libAudioStatistics.dylib","symbolFilePath":"/usr/lib/libAudioStatistics.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.738Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":235,"event":"module","body":{"module":{"addressRange":"7FFF2B138000","id":"7FFF2B138000","name":"MediaExperience","path":"/System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience","symbolFilePath":"/System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.738Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":236,"event":"module","body":{"module":{"addressRange":"7FFF2CB9E000","id":"7FFF2CB9E000","name":"libSessionUtility.dylib","path":"/System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib","symbolFilePath":"/System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.739Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":237,"event":"module","body":{"module":{"addressRange":"7FFF2D716000","id":"7FFF2D716000","name":"libperfcheck.dylib","path":"/usr/lib/libperfcheck.dylib","symbolFilePath":"/usr/lib/libperfcheck.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.739Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":238,"event":"module","body":{"module":{"addressRange":"7FFF2D0B5000","id":"7FFF2D0B5000","name":"AudioResourceArbitration","path":"/System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration","symbolFilePath":"/System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.739Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":239,"event":"module","body":{"module":{"addressRange":"7FFF22C4A000","id":"7FFF22C4A000","name":"AppKit","path":"/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit","symbolFilePath":"/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.739Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":240,"event":"module","body":{"module":{"addressRange":"7FFF23996000","id":"7FFF23996000","name":"UIFoundation","path":"/System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation","symbolFilePath":"/System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.739Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":241,"event":"module","body":{"module":{"addressRange":"7FFF2FB91000","id":"7FFF2FB91000","name":"RemoteViewServices","path":"/System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices","symbolFilePath":"/System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.739Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":242,"event":"module","body":{"module":{"addressRange":"7FFF289A7000","id":"7FFF289A7000","name":"XCTTargetBootstrap","path":"/System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap","symbolFilePath":"/System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.739Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":243,"event":"module","body":{"module":{"addressRange":"7FFF23BE5000","id":"7FFF23BE5000","name":"UniformTypeIdentifiers","path":"/System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers","symbolFilePath":"/System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.739Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":244,"event":"module","body":{"module":{"addressRange":"7FFF289AB000","id":"7FFF289AB000","name":"CoreSVG","path":"/System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG","symbolFilePath":"/System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.739Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":245,"event":"module","body":{"module":{"addressRange":"7FFF2B0CB000","id":"7FFF2B0CB000","name":"IconServices","path":"/System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices","symbolFilePath":"/System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.739Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":246,"event":"module","body":{"module":{"addressRange":"7FFF330D7000","id":"7FFF330D7000","name":"ApplicationServices","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.740Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":247,"event":"module","body":{"module":{"addressRange":"7FFF28993000","id":"7FFF28993000","name":"DFRFoundation","path":"/System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation","symbolFilePath":"/System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.740Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":248,"event":"module","body":{"module":{"addressRange":"7FFF2BE58000","id":"7FFF2BE58000","name":"DataDetectorsCore","path":"/System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore","symbolFilePath":"/System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.740Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":249,"event":"module","body":{"module":{"addressRange":"7FFF28697000","id":"7FFF28697000","name":"HIToolbox","path":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox","symbolFilePath":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.740Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":250,"event":"module","body":{"module":{"addressRange":"7FFF2FBC9000","id":"7FFF2FBC9000","name":"SpeechRecognition","path":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition","symbolFilePath":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.740Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":251,"event":"module","body":{"module":{"addressRange":"7FFF2BE4F000","id":"7FFF2BE4F000","name":"InternationalSupport","path":"/System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport","symbolFilePath":"/System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.740Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":252,"event":"module","body":{"module":{"addressRange":"7FFF2713D000","id":"7FFF2713D000","name":"PerformanceAnalysis","path":"/System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis","symbolFilePath":"/System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.740Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":253,"event":"module","body":{"module":{"addressRange":"7FFF2BED3000","id":"7FFF2BED3000","name":"UserActivity","path":"/System/Library/PrivateFrameworks/UserActivity.framework/Versions/A/UserActivity","symbolFilePath":"/System/Library/PrivateFrameworks/UserActivity.framework/Versions/A/UserActivity","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.740Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":254,"event":"module","body":{"module":{"addressRange":"7FFF2BD81000","id":"7FFF2BD81000","name":"TextureIO","path":"/System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO","symbolFilePath":"/System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.740Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":255,"event":"module","body":{"module":{"addressRange":"7FFF2D0A1000","id":"7FFF2D0A1000","name":"ColorSyncLegacy","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.740Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":256,"event":"module","body":{"module":{"addressRange":"7FFF2570C000","id":"7FFF2570C000","name":"HIServices","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.740Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":257,"event":"module","body":{"module":{"addressRange":"7FFF2BD39000","id":"7FFF2BD39000","name":"PrintCore","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.740Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":258,"event":"module","body":{"module":{"addressRange":"7FFF2D0A9000","id":"7FFF2D0A9000","name":"QD","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.741Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":259,"event":"module","body":{"module":{"addressRange":"7FFF2BCFA000","id":"7FFF2BCFA000","name":"ATSUI","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.741Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":260,"event":"module","body":{"module":{"addressRange":"7FFF2D026000","id":"7FFF2D026000","name":"libcups.2.dylib","path":"/usr/lib/libcups.2.dylib","symbolFilePath":"/usr/lib/libcups.2.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.741Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":261,"event":"module","body":{"module":{"addressRange":"7FFF2D096000","id":"7FFF2D096000","name":"NetAuth","path":"/System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth","symbolFilePath":"/System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.741Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":262,"event":"module","body":{"module":{"addressRange":"7FFF2D725000","id":"7FFF2D725000","name":"Kerberos","path":"/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos","symbolFilePath":"/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.741Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":263,"event":"module","body":{"module":{"addressRange":"7FFF2D735000","id":"7FFF2D735000","name":"GSS","path":"/System/Library/Frameworks/GSS.framework/Versions/A/GSS","symbolFilePath":"/System/Library/Frameworks/GSS.framework/Versions/A/GSS","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.741Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":264,"event":"module","body":{"module":{"addressRange":"7FFF2CDFB000","id":"7FFF2CDFB000","name":"libresolv.9.dylib","path":"/usr/lib/libresolv.9.dylib","symbolFilePath":"/usr/lib/libresolv.9.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.744Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":265,"event":"module","body":{"module":{"addressRange":"7FFF2B690000","id":"7FFF2B690000","name":"Heimdal","path":"/System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal","symbolFilePath":"/System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.744Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":266,"event":"module","body":{"module":{"addressRange":"7FFF333EC000","id":"7FFF333EC000","name":"libHeimdalProxy.dylib","path":"/System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib","symbolStatus":"Symbols not found"},"reason":"new"}} [2021-10-25T11:13:48.744Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":267,"event":"module","body":{"module":{"addressRange":"7FFF262DA000","id":"7FFF262DA000","name":"Network","path":"/System/Library/Frameworks/Network.framework/Versions/A/Network","symbolFilePath":"/System/Library/Frameworks/Network.framework/Versions/A/Network","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.745Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":268,"event":"module","body":{"module":{"addressRange":"7FFF2B0AC000","id":"7FFF2B0AC000","name":"libheimdal-asn1.dylib","path":"/usr/lib/libheimdal-asn1.dylib","symbolFilePath":"/usr/lib/libheimdal-asn1.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.745Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":269,"event":"module","body":{"module":{"addressRange":"7FFF2D786000","id":"7FFF2D786000","name":"CommonAuth","path":"/System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth","symbolFilePath":"/System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.745Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":270,"event":"module","body":{"module":{"addressRange":"7FFF27327000","id":"7FFF27327000","name":"loginsupport","path":"/System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport","symbolFilePath":"/System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.745Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":271,"event":"module","body":{"module":{"addressRange":"7FFF2FBB9000","id":"7FFF2FBB9000","name":"SpeechRecognitionCore","path":"/System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore","symbolFilePath":"/System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore","symbolStatus":"Symbols loaded."},"reason":"new"}} [2021-10-25T11:13:48.784Z DEBUG codelldb::debug_session] Debug event: 0x7fc08c83c948 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:48.785Z DEBUG codelldb::debug_session] Debug event: 0x7fc08c83d658 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:48.785Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":272,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:48.784521+0300 liveslicer[4607:31498] (uplynk): NOTE: this is a DEBUG build of liveslicer, using a DEBUG build of libbeam-slicer\r\n0x100aafe00>> 2021-10-25 14:13:48.785355: NOTE: this is a DEBUG build of liveslicer, using a DEBUG build of libbeam-slicer\r\n\r\n\r\n\r\nThe stack size is 524288.\r\n"}} [2021-10-25T11:13:48.785Z DEBUG codelldb::debug_session] Debug event: 0x7fc08c83f2e8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:48.785Z DEBUG codelldb::debug_session] Debug event: 0x7fbfefb393c8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:48.790Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cf82928 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:48.790Z DEBUG codelldb::debug_session] Debug event: 0x7fc08c9104f8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:48.790Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":273,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:48.789970+0300 liveslicer[4607:31498] (uplynk): creating SSL locks\r\n0x100aafe00>> 2021-10-25 14:13:48.790040: creating SSL locks\r\n"}} [2021-10-25T11:13:48.839Z DEBUG codelldb::debug_session] Debug event: 0x7fc08c83f2e8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:48.839Z DEBUG codelldb::debug_session] Debug event: 0x7fc09017bf58 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:48.839Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":274,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:48.839144+0300 liveslicer[4607:31498] (uplynk): upLynk Software ID: MAGIC__BACKEND__DATABASE__SOFTWARE__ID__MAGIC\r\n0x100aafe00>> 2021-10-25 14:13:48.839216: upLynk Software ID: MAGIC__BACKEND__DATABASE__SOFTWARE__ID__MAGIC\r\n2021-10-25 14:13:48.839262+0300 liveslicer[4607:31498] (uplynk): upLynk Software Version: MAGIC__PACKAGE_VERSION__MAGIC\r\n"}} [2021-10-25T11:13:48.839Z DEBUG codelldb::debug_session] Debug event: 0x7fbfeff13fc8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:48.839Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cf828a8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:48.839Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":275,"event":"output","body":{"category":"stdout","output":"0x100aafe00>> 2021-10-25 14:13:48.839319: upLynk Software Version: MAGIC__PACKAGE_VERSION__MAGIC\r\n2021-10-25 14:13:48.839383+0300 liveslicer[4607:31498] (uplynk): upLynk Git Hash: MAGIC____________GIT_HASH____________MAGIC\r\n"}} [2021-10-25T11:13:48.839Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cd07978 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:48.839Z DEBUG codelldb::debug_session] Debug event: 0x7fbfefa4f208 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:48.839Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":276,"event":"output","body":{"category":"stdout","output":"0x100aafe00>> 2021-10-25 14:13:48.839464: upLynk Git Hash: MAGIC____________GIT_HASH____________MAGIC\r\n"}} [2021-10-25T11:13:49.805Z DEBUG codelldb::debug_session] Debug event: 0x7fc090318868 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:49.805Z DEBUG codelldb::debug_session] Debug event: 0x7fc0903177c8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:49.805Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":277,"event":"output","body":{"category":"stdout","output":"Setting overlay string [ray,localtime,fps,id,cpu,mem]\r\nAdding [ray] to debug overlay\r\nAdding [localtime] to debug overlay\r\nAdding [fps] to debug overlay\r\nAdding [id] to debug overlay\r\nAdding [cpu] to debug overlay\r\nAdding [mem] to debug overlay\r\n"}} [2021-10-25T11:13:49.805Z DEBUG codelldb::debug_session] Debug event: 0x7fc08ce7c0c8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:49.805Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":278,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:49.805608+0300 liveslicer[4607:31498] (dvir_fbf_slicer): Not using timecard (Not Set)\r\n0x100aafe00>> 2021-10-25 14:13:49.805675: Not using timecard (Not Set)\r\n"}} [2021-10-25T11:13:49.805Z DEBUG codelldb::debug_session] Debug event: 0x7fc0903177c8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.576Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cd07b08 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.576Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cb38928 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.576Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":279,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:50.576441+0300 liveslicer[4607:31498] (dvir_fbf_slicer): /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, metadata: [major_brand, isom]\r\n0x100aafe00>> 2021-10-25 14:13:50.576507: /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, metadata: [major_brand, isom]\r\n2021-10-25 14:13:50.576535+0300 liveslicer[4607:31498] (dvir_fbf_slicer): /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, metadata: [minor_version, 1]\r\n"}} [2021-10-25T11:13:50.576Z DEBUG codelldb::debug_session] Debug event: 0x7fc09020d358 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.576Z DEBUG codelldb::debug_session] Debug event: 0x7fc09020d888 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.576Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":280,"event":"output","body":{"category":"stdout","output":"0x100aafe00>> 2021-10-25 14:13:50.576586: /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, metadata: [minor_version, 1]\r\n"}} [2021-10-25T11:13:50.576Z DEBUG codelldb::debug_session] Debug event: 0x7fc08c83d658 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.576Z DEBUG codelldb::debug_session] Debug event: 0x7fc08ca0ecf8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.576Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":281,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:50.576613+0300 liveslicer[4607:31498] (dvir_fbf_slicer): /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, metadata: [compatible_brands, isomavc1]\r\n"}} [2021-10-25T11:13:50.576Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":282,"event":"output","body":{"category":"stdout","output":"0x100aafe00>> 2021-10-25 14:13:50.576653: /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, metadata: [compatible_brands, isomavc1]\r\n"}} [2021-10-25T11:13:50.576Z DEBUG codelldb::debug_session] Debug event: 0x7fc08c83f338 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.576Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":283,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:50.576679+0300 liveslicer[4607:31498] (dvir_fbf_slicer): /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, metadata: [creation_time, 2013-12-16T17:59:32.000000Z]\r\n0x100aafe00>> 2021-10-25 14:13:50.576722: /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, metadata: [creation_time, 2013-12-16T17:59:32.000000Z]\r\n"}} [2021-10-25T11:13:50.576Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":284,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:50.576753+0300 liveslicer[4607:31498] (dvir_fbf_slicer): /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, metadata: [title, Big Buck Bunny, Sunflower version]\r\n0x100aafe00>> 2021-10-25 14:13:50.576802: /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, metadata: [title, Big Buck Bunny, Sunflower version]\r\n2021-10-25 14:13:50.576834+0300 liveslicer[4607:31498] (dvir_fbf_slicer): /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, metadata: [artist, Blender Foundation 2008, Janus Bager Kristensen 2013]\r\n"}} [2021-10-25T11:13:50.576Z DEBUG codelldb::debug_session] Debug event: 0x7fc08c952a48 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.577Z DEBUG codelldb::debug_session] Debug event: 0x7fc08bf5f398 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.577Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":285,"event":"output","body":{"category":"stdout","output":"0x100aafe00>> 2021-10-25 14:13:50.576898: /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, metadata: [artist, Blender Foundation 2008, Janus Bager Kristensen 2013]\r\n2021-10-25 14:13:50.576942+0300 liveslicer[4607:31498] (dvir_fbf_slicer): /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, metadata: [comment, Creative Commons Attribution 3.0 - http://bbb3d.renderfarming.net]\r\n"}} [2021-10-25T11:13:50.577Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cb33ca8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.577Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cc11e58 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.577Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":286,"event":"output","body":{"category":"stdout","output":"0x100aafe00>> 2021-10-25 14:13:50.577001: /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, metadata: [comment, Creative Commons Attribution 3.0 - http://bbb3d.renderfarming.net]\r\n2021-10-25 14:13:50.577034+0300 liveslicer[4607:31498] (dvir_fbf_slicer): /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, metadata: [genre, Animation]\r\n"}} [2021-10-25T11:13:50.577Z DEBUG codelldb::debug_session] Debug event: 0x7fc0902e21e8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.577Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":287,"event":"output","body":{"category":"stdout","output":"0x100aafe00>> 2021-10-25 14:13:50.577083: /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, metadata: [genre, Animation]\r\n2021-10-25 14:13:50.577113+0300 liveslicer[4607:31498] (dvir_fbf_slicer): /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, metadata: [composer, Sacha Goedegebure]\r\n"}} [2021-10-25T11:13:50.577Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cd07b08 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.577Z DEBUG codelldb::debug_session] Debug event: 0x7fc08ce7c0c8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.577Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cb37768 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.577Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":288,"event":"output","body":{"category":"stdout","output":"0x100aafe00>> 2021-10-25 14:13:50.577164: /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, metadata: [composer, Sacha Goedegebure]\r\n2021-10-25 14:13:50.577247+0300 liveslicer[4607:31498] (dvir_fbf_slicer): Measuring latency was set to 1\r\n0x100aafe00>> 2021-10-25 14:13:50.577296: Measuring latency was set to 1\r\n"}} [2021-10-25T11:13:50.577Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cb06f48 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.577Z DEBUG codelldb::debug_session] Debug event: 0x7fc08c952a48 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.577Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":289,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:50.577387+0300 liveslicer[4607:31498] (dvir_fbf_slicer): /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, stream[0] metadata: [creation_time, 2013-12-16T17:59:32.000000Z]\r\n0x100aafe00>> 2021-10-25 14:13:50.577434: /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, stream[0] metadata: [creation_time, 2013-12-16T17:59:32.000000Z]\r\n2021-10-25 14:13:50.577466+0300 liveslicer[4607:31498] (dvir_fbf_slicer): /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, stream[0] metadata: [language, und]\r\n"}} [2021-10-25T11:13:50.577Z DEBUG codelldb::debug_session] Debug event: 0x7fc08ca0ecf8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.577Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":290,"event":"output","body":{"category":"stdout","output":"0x100aafe00>> 2021-10-25 14:13:50.577522: /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, stream[0] metadata: [language, und]\r\n"}} [2021-10-25T11:13:50.578Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":291,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:50.577552+0300 liveslicer[4607:31498] (dvir_fbf_slicer): /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, stream[0] metadata: [handler_name, GPAC ISO Video Handler]\r\n"}} [2021-10-25T11:13:50.577Z DEBUG codelldb::debug_session] Debug event: 0x7fbfefb393c8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.578Z DEBUG codelldb::debug_session] Debug event: 0x7fc0902e22b8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.578Z DEBUG codelldb::debug_session] Debug event: 0x7fc0902e21e8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.578Z DEBUG codelldb::debug_session] Debug event: 0x7fc09020d888 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.578Z DEBUG codelldb::debug_session] Debug event: 0x7fc090318868 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.578Z DEBUG codelldb::debug_session] Debug event: 0x7fbfefc66c18 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.578Z DEBUG codelldb::debug_session] Debug event: 0x7fc090316208 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.578Z DEBUG codelldb::debug_session] Debug event: 0x7fbfefe5d8d8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.578Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cd07b08 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.578Z DEBUG codelldb::debug_session] Debug event: 0x7fc08bd162f8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.578Z DEBUG codelldb::debug_session] Debug event: 0x7fbfefb39f98 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.578Z DEBUG codelldb::debug_session] Debug event: 0x7fbfefe5dd48 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.578Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":292,"event":"output","body":{"category":"stdout","output":"0x100aafe00>> 2021-10-25 14:13:50.577596: /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, stream[0] metadata: [handler_name, GPAC ISO Video Handler]\r\n2021-10-25 14:13:50.577692+0300 liveslicer[4607:31498] (dvir_fbf_slicer): /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, stream[1] metadata: [creation_time, 2013-12-16T17:59:37.000000Z]\r\n0x100aafe00>> 2021-10-25 14:13:50.577745: /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, stream[1] metadata: [creation_time, 2013-12-16T17:59:37.000000Z]\r\n2021-10-25 14:13:50.577777+0300 liveslicer[4607:31498] (dvir_fbf_slicer): /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, stream[1] metadata: [language, und]\r\n0x100aafe00>> 2021-10-25 14:13:50.577835: /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, stream[1] metadata: [language, und]\r"}} [2021-10-25T11:13:50.578Z DEBUG codelldb::debug_session] Debug event: 0x7fc08bd11be8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.578Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":293,"event":"output","body":{"category":"stdout","output":"\n2021-10-25 14:13:50.577865+0300 liveslicer[4607:31498] (dvir_fbf_slicer): /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, stream[1] metadata: [handler_name, GPAC ISO Audio Handler]\r\n0x100aafe00>> 2021-10-25 14:13:50.577918: /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, stream[1] metadata: [handler_name, GPAC ISO Audio Handler]\r\n2021-10-25 14:13:50.577979+0300 liveslicer[4607:31498] (dvir_fbf_slicer): /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, stream[2] metadata: [creation_time, 2013-12-16T17:59:37.000000Z]\r\n0x100aafe00>> 2021-10-25 14:13:50.578031: /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, stream[2] metadata: [creation_time, 2013-12-16T17:59:37.000000Z]\r\n2021-10-25 14:13:50.578062+0300 liveslicer[4607:31498] (dvir_fbf_slicer): /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080"}} [2021-10-25T11:13:50.578Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":294,"event":"output","body":{"category":"stdout","output":"p_60fps_normal.mp4, stream[2] metadata: [language, und]\r\n"}} [2021-10-25T11:13:50.578Z DEBUG codelldb::debug_session] Debug event: 0x7fbfefe5d8d8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.578Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":295,"event":"output","body":{"category":"stdout","output":"0x100aafe00>> 2021-10-25 14:13:50.578106: /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, stream[2] metadata: [language, und]\r\n2021-10-25 14:13:50.578141+0300 liveslicer[4607:31498] (dvir_fbf_slicer): /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, stream[2] metadata: [handler_name, GPAC ISO Audio Handler]\r\n"}} [2021-10-25T11:13:50.578Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":296,"event":"output","body":{"category":"stdout","output":"0x100aafe00>> 2021-10-25 14:13:50.578185: /Users/dyitzchaki/projects/modularuplynk/transport_streams/bbb_sunflower_1080p_60fps_normal.mp4, stream[2] metadata: [handler_name, GPAC ISO Audio Handler]\r\n"}} [2021-10-25T11:13:50.601Z DEBUG codelldb::debug_session] Debug event: 0x7fc08bd11be8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.603Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":297,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:50.601105+0300 liveslicer[4607:31717] (dvir_fbf_slicer): [Graph::Sink] 0x108a08ba0, starting component: (0x10cd0c048) _01_FrameGrabber.demux\r\n0x700007b86000>> 2021-10-25 14:13:50.601190: [Graph::Sink] 0x108a08ba0, starting component: (0x10cd0c048) _01_FrameGrabber.demux\r\n"}} [2021-10-25T11:13:50.603Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cd0bf08 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.603Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":298,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:50.601251+0300 liveslicer[4607:31717] (dvir_fbf_slicer): [Graph::Sink] 0x108a08ba0, starting component: (0x1088063d8) _02_FrameGrabber.sync_pkt\r\n0x700007b86000>> 2021-10-25 14:13:50.601303: [Graph::Sink] 0x108a08ba0, starting component: (0x1088063d8) _02_FrameGrabber.sync_pkt\r\n2021-10-25 14:13:50.601303+0300 liveslicer[4607:31697] (dvir_fbf_slicer): [Graph::on_component_started] 0x108a08ba0: (0x10cd0c048) _01_FrameGrabber.demux\r\n2021-10-25 14:13:50.601344+0300 liveslicer[4607:31717] (dvir_fbf_slicer): [Graph::Sink] 0x108a08ba0, starting component: (0x108a0b0f8) _03_FrameGrabber.stream_dec\r\n0x7000073d9000>> 2021-10-25 14:13:50.601359: [Graph::on_component_started] 0x108a08ba0: (0x10cd0c048) _01_FrameGrabber.demux\r\n0x700007b86000>> 2021-10-25 14:13:50.601392: [Graph::Sink] 0x108a08ba0, starting component: (0x108a0b0f8) _03_FrameGrabber.stream_dec\r\n2021-10-25 14:13:50.601428+0300 liveslicer[4607:31717] (dvir_fbf_slicer): [Graph::Sink] 0x108a08ba0, starting component: (0x10c809f78) _04_FrameGrabb"}} [2021-10-25T11:13:50.603Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":299,"event":"output","body":{"category":"stdout","output":"er.top_ray_xform\r\n0x700007b86000>> 2021-10-25 14:13:50.601467: [Graph::Sink] 0x108a08ba0, starting component: (0x10c809f78) _04_FrameGrabber.top_ray_xform\r\n2021-10-25 14:13:50.601504+0300 liveslicer[4607:31717] (dvir_fbf_slicer): [Graph::Sink] 0x108a08ba0, starting component: (0x108d47a48) _05_FrameGrabber.avfilter\r\n2021-10-25 14:13:50.601500+0300 liveslicer[4607:31698] (dvir_fbf_slicer): [Graph::on_component_started] 0x108a08ba0: (0x1088063d8) _02_FrameGrabber.sync_pkt\r\n0x700007b86000>> 2021-10-25 14:13:50.601547: [Graph::Sink] 0x108a08ba0, starting component: (0x108d47a48) _05_FrameGrabber.avfilter\r\n0x70000745c000>> 2021-10-25 14:13:50.601555: [Graph::on_component_started] 0x108a08ba0: (0x1088063d8) _02_FrameGrabber.sync_pkt\r\n2021-10-25 14:13:50.601582+0300 liveslicer[4607:31717] (dvir_fbf_slicer): [Graph::Sink] 0x108a08ba0, starting component: (0x108b1c508) _06_FrameGrabber.sync_frm\r\n0x700007b86000>> 2021-10-25 14:13:50.601619: [Graph::Sink] 0x108a08ba0, starting component: (0x108b1c508) _06_FrameGrabber.s"}} [2021-10-25T11:13:50.603Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":300,"event":"output","body":{"category":"stdout","output":"ync_frm\r\n2021-10-25 14:13:50.601651+0300 liveslicer[4607:31717] (dvir_fbf_slicer): [Graph::Sink] 0x108a08ba0, starting component: (0x108e58488) _07_FrameGrabber.sink\r\n0x700007b86000>> 2021-10-25 14:13:50.601689: [Graph::Sink] 0x108a08ba0, starting component: (0x108e58488) _07_FrameGrabber.sink\r\n2021-10-25 14:13:50.601801+0300 liveslicer[4607:31699] (dvir_fbf_slicer): [Graph::on_component_started] 0x108a08ba0: (0x108a0b0f8) _03_FrameGrabber.stream_dec\r\n0x7000074df000>> 2021-10-25 14:13:50.601865: [Graph::on_component_started] 0x108a08ba0: (0x108a0b0f8) _03_FrameGrabber.stream_dec\r\n2021-10-25 14:13:50.602258+0300 liveslicer[4607:31700] (dvir_fbf_slicer): [Graph::on_component_started] 0x108a08ba0: (0x10c809f78) _04_FrameGrabber.top_ray_xform\r\n0x700007562000>> 2021-10-25 14:13:50.602334: [Graph::on_component_started] 0x108a08ba0: (0x10c809f78) _04_FrameGrabber.top_ray_xform\r\n2021-10-25 14:13:50.602472+0300 liveslicer[4607:31713] (dvir_fbf_slicer): [Graph::on_component_started] 0x108a08ba0: (0x108d47a48) _05_Frame"}} [2021-10-25T11:13:50.603Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":301,"event":"output","body":{"category":"stdout","output":"Grabber.avfilter\r\n0x7000079fd000>> 2021-10-25 14:13:50.602532: [Graph::on_component_started] 0x108a08ba0: (0x108d47a48) _05_FrameGrabber.avfilter\r\n2021-10-25 14:13:50.602658+0300 liveslicer[4607:31714] (dvir_fbf_slicer): [Graph::on_component_started] 0x108a08ba0: (0x108b1c508) _06_FrameGrabber.sync_frm\r\n0x700007a80000>> 2021-10-25 14:13:50.602730: [Graph::on_component_started] 0x108a08ba0: (0x108b1c508) _06_FrameGrabber.sync_frm\r\n2021-10-25 14:13:50.602846+0300 liveslicer[4607:31715] (dvir_fbf_slicer): [Graph::on_component_started] 0x108a08ba0: (0x108e58488) _07_FrameGrabber.sink\r\n0x700007b03000>> 2021-10-25 14:13:50.602974: [Graph::on_component_started] 0x108a08ba0: (0x108e58488) _07_FrameGrabber.sink\r\n"}} [2021-10-25T11:13:50.603Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cc125a8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.607Z DEBUG codelldb::debug_session] Debug event: 0x7fc08be4e808 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.607Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cd0bf08 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.607Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":302,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:50.607248+0300 liveslicer[4607:31699] (dvir_fbf_slicer): [AUDIO 1.0] AudioDecoder filters: abuffer=time_base=1/48000:sample_rate=48000:sample_fmt=fltp:channel_layout=0x3,aformat=sample_fmts=s16:sample_rates=48000:channel_layouts=0x3,abuffersink\r\n0x7000074df000>> 2021-10-25 14:13:50.607323: [AUDIO 1.0] AudioDecoder filters: abuffer=time_base=1/48000:sample_rate=48000:sample_fmt=fltp:channel_layout=0x3,aformat=sample_fmts=s16:sample_rates=48000:channel_layouts=0x3,abuffersink\r\n"}} [2021-10-25T11:13:50.608Z DEBUG codelldb::debug_session] Debug event: 0x7fc08bf5f398 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.608Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":303,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:50.608136+0300 liveslicer[4607:31699] (dvir_fbf_slicer): LatencyData file is opened as ./LatencyData_1635160430.csv\r\n0x7000074df000>> 2021-10-25 14:13:50.608238: LatencyData file is opened as ./LatencyData_1635160430.csv\r\n"}} [2021-10-25T11:13:50.608Z DEBUG codelldb::debug_session] Debug event: 0x7fbfefb39f98 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.768Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cc11e58 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:50.768Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":304,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:50.766619+0300 liveslicer[4607:31699] (dvir_fbf_slicer): USING h264 FOR DECODER\r\n0x7000074df000>> 2021-10-25 14:13:50.766735: USING h264 FOR DECODER\r\n"}} [2021-10-25T11:13:51.045Z DEBUG codelldb::debug_session] Debug event: 0x7fc09017bf58 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.056Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":305,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:51.042757+0300 liveslicer[4607:31699] (dvir_fbf_slicer): VideoProcessor decode specs: AVFrame(1920x1080@yuv420p, 8-bit, primaries: reserved, trc: reserved, chroma_loc: left)\r\n0x7000074df000>> 2021-10-25 14:13:51.043248: VideoProcessor decode specs: AVFrame(1920x1080@yuv420p, 8-bit, primaries: reserved, trc: reserved, chroma_loc: left)\r\n2021-10-25 14:13:51.043345+0300 liveslicer[4607:31699] (dvir_fbf_slicer): VideoProcessor source specs: AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n0x7000074df000>> 2021-10-25 14:13:51.043587: VideoProcessor source specs: AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n"}} [2021-10-25T11:13:51.056Z DEBUG codelldb::debug_session] Debug event: 0x7fc0902e21e8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.065Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":306,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:51.051271+0300 liveslicer[4607:31699] (dvir_fbf_slicer): VideoProcessor filters: buffer=width=1920:height=1080:pix_fmt=yuv420p:time_base=1/48000:sar=1/1,buffersink\r\n0x7000074df000>> 2021-10-25 14:13:51.051803: VideoProcessor filters: buffer=width=1920:height=1080:pix_fmt=yuv420p:time_base=1/48000:sar=1/1,buffersink\r\n2021-10-25 14:13:51.051976+0300 liveslicer[4607:31699] (dvir_fbf_slicer): VideoProcessor output specs: AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n0x7000074df000>> 2021-10-25 14:13:51.052188: VideoProcessor output specs: AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n2021-10-25 14:13:51.053753+0300 liveslicer[4607:31700] (dvir_fbf_slicer): Pass-through as-is v:0:0, pts(1600): 00:00:00.033, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n0x700007562000>> 2021-10-25 14:13:51.053870: Pass-through as-is v:0:0"}} [2021-10-25T11:13:51.065Z DEBUG codelldb::debug_session] Debug event: 0x7fc08bd11be8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.065Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":307,"event":"output","body":{"category":"stdout","output":", pts(1600): 00:00:00.033, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n"}} [2021-10-25T11:13:51.065Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":308,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:51.057873+0300 liveslicer[4607:31700] (dvir_fbf_slicer): Pass-through as-is v:0:0, pts(2400): 00:00:00.050, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n0x700007562000>> 2021-10-25 14:13:51.057968: Pass-through as-is v:0:0, pts(2400): 00:00:00.050, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n"}} [2021-10-25T11:13:51.066Z DEBUG codelldb::debug_session] Debug event: 0x7fc08ce7c0c8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.072Z DEBUG codelldb::debug_session] Debug event: 0x7fc08ce7c0c8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.073Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":309,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:51.067222+0300 liveslicer[4607:31713] (dvir_fbf_slicer): AVFilterGraphComponent filters: buffer=width=1920:height=1080:pix_fmt=yuv420p:time_base=1/48000:sar=1/1,buffersink\r\n0x7000079fd000>> 2021-10-25 14:13:51.067310: AVFilterGraphComponent filters: buffer=width=1920:height=1080:pix_fmt=yuv420p:time_base=1/48000:sar=1/1,buffersink\r\n"}} [2021-10-25T11:13:51.073Z DEBUG codelldb::debug_session] Debug event: 0x7fbfefa4f258 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.074Z DEBUG codelldb::debug_session] Debug event: 0x7fc08bf5f398 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.074Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":310,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:51.070960+0300 liveslicer[4607:31715] (dvir_fbf_slicer): FrameBufferGraph using queue size of 122\r\n"}} [2021-10-25T11:13:51.074Z DEBUG codelldb::debug_session] Debug event: 0x7fc08c83d658 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.074Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":311,"event":"output","body":{"category":"stdout","output":"0x700007b03000>> 2021-10-25 14:13:51.074810: FrameBufferGraph using queue size of 122\r\n"}} [2021-10-25T11:13:51.094Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cc125a8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.094Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":312,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:51.093937+0300 liveslicer[4607:31700] (dvir_fbf_slicer): Pass-through as-is v:0:0, pts(3200): 00:00:00.067, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n"}} [2021-10-25T11:13:51.095Z DEBUG codelldb::debug_session] Debug event: 0x7fc08bc18a38 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.095Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":313,"event":"output","body":{"category":"stdout","output":"0x700007562000>> 2021-10-25 14:13:51.095588: Pass-through as-is v:0:0, pts(3200): 00:00:00.067, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n"}} [2021-10-25T11:13:51.115Z DEBUG codelldb::debug_session] Debug event: 0x7fc08ce7c0c8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.125Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":314,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:51.115446+0300 liveslicer[4607:31700] (dvir_fbf_slicer): Pass-through as-is v:0:0, pts(4000): 00:00:00.083, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n"}} [2021-10-25T11:13:51.125Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cb37768 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.135Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":315,"event":"output","body":{"category":"stdout","output":"0x700007562000>> 2021-10-25 14:13:51.115614: Pass-through as-is v:0:0, pts(4000): 00:00:00.083, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n2021-10-25 14:13:51.123493+0300 liveslicer[4607:31700] (dvir_fbf_slicer): Pass-through as-is v:0:0, pts(4800): 00:00:00.100, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n0x700007562000>> 2021-10-25 14:13:51.123630: Pass-through as-is v:0:0, pts(4800): 00:00:00.100, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n"}} [2021-10-25T11:13:51.135Z DEBUG codelldb::debug_session] Debug event: 0x7fc09017bf58 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.135Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":316,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:51.126409+0300 liveslicer[4607:31700] (dvir_fbf_slicer): Pass-through as-is v:0:0, pts(5600): 00:00:00.117, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n0x700007562000>> 2021-10-25 14:13:51.126524: Pass-through as-is v:0:0, pts(5600): 00:00:00.117, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n2021-10-25 14:13:51.129606+0300 liveslicer[4607:31700] (dvir_fbf_slicer): Pass-through as-is v:0:0, pts(6400): 00:00:00.133, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n0x700007562000>> 2021-10-25 14:13:51.130000: Pass-through as-is v:0:0, pts(6400): 00:00:00.133, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n"}} [2021-10-25T11:13:51.135Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cf79c18 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.145Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cc125a8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.148Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":317,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:51.136529+0300 liveslicer[4607:31700] (dvir_fbf_slicer): Pass-through as-is v:0:0, pts(7200): 00:00:00.150, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n0x700007562000>> 2021-10-25 14:13:51.136885: Pass-through as-is v:0:0, pts(7200): 00:00:00.150, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n2021-10-25 14:13:51.140681+0300 liveslicer[4607:31700] (dvir_fbf_slicer): Pass-through as-is v:0:0, pts(8000): 00:00:00.167, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n0x700007562000>> 2021-10-25 14:13:51.140823: Pass-through as-is v:0:0, pts(8000): 00:00:00.167, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n"}} [2021-10-25T11:13:51.148Z DEBUG codelldb::debug_session] Debug event: 0x7fc08ca200a8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.150Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cc125a8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.156Z DEBUG codelldb::debug_session] Debug event: 0x7fc090318868 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.156Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":318,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:51.150699+0300 liveslicer[4607:31700] (dvir_fbf_slicer): Pass-through as-is v:0:0, pts(8800): 00:00:00.183, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n0x700007562000>> 2021-10-25 14:13:51.150855: Pass-through as-is v:0:0, pts(8800): 00:00:00.183, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n"}} [2021-10-25T11:13:51.172Z DEBUG codelldb::debug_session] Debug event: 0x7fc0900a8208 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.173Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":319,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:51.172411+0300 liveslicer[4607:31700] (dvir_fbf_slicer): Pass-through as-is v:0:0, pts(9600): 00:00:00.200, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n"}} [2021-10-25T11:13:51.173Z DEBUG codelldb::debug_session] Debug event: 0x7fc08c83d658 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.173Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":320,"event":"output","body":{"category":"stdout","output":"0x700007562000>> 2021-10-25 14:13:51.172723: Pass-through as-is v:0:0, pts(9600): 00:00:00.200, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n"}} [2021-10-25T11:13:51.177Z DEBUG codelldb::debug_session] Debug event: 0x7fc08ce7c0c8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.186Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":321,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:51.177654+0300 liveslicer[4607:31700] (dvir_fbf_slicer): Pass-through as-is v:0:0, pts(10400): 00:00:00.217, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n0x700007562000>> 2021-10-25 14:13:51.177800: Pass-through as-is v:0:0, pts(10400): 00:00:00.217, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n"}} [2021-10-25T11:13:51.186Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cc125a8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.198Z DEBUG codelldb::debug_session] Debug event: 0x7fc08ce7c0c8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.207Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":322,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:51.190683+0300 liveslicer[4607:31700] (dvir_fbf_slicer): Pass-through as-is v:0:0, pts(11200): 00:00:00.233, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n0x700007562000>> 2021-10-25 14:13:51.190918: Pass-through as-is v:0:0, pts(11200): 00:00:00.233, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n"}} [2021-10-25T11:13:51.207Z DEBUG codelldb::debug_session] Debug event: 0x7fbfefa4f258 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.207Z DEBUG codelldb::debug_session] Debug event: 0x7fc08bd16ff8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.208Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":323,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:51.200037+0300 liveslicer[4607:31700] (dvir_fbf_slicer): Pass-through as-is v:0:0, pts(12000): 00:00:00.250, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n0x700007562000>> 2021-10-25 14:13:51.200184: Pass-through as-is v:0:0, pts(12000): 00:00:00.250, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n2021-10-25 14:13:51.206285+0300 liveslicer[4607:31700] (dvir_fbf_slicer): Pass-through as-is v:0:0, pts(12800): 00:00:00.267, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n0x700007562000>> 2021-10-25 14:13:51.206811: Pass-through as-is v:0:0, pts(12800): 00:00:00.267, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n"}} [2021-10-25T11:13:51.217Z DEBUG codelldb::debug_session] Debug event: 0x7fc08bf5f398 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.218Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":324,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:51.211178+0300 liveslicer[4607:31700] (dvir_fbf_slicer): Pass-through as-is v:0:0, pts(13600): 00:00:00.283, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n0x700007562000>> 2021-10-25 14:13:51.212021: Pass-through as-is v:0:0, pts(13600): 00:00:00.283, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n2021-10-25 14:13:51.214492+0300 liveslicer[4607:31700] (dvir_fbf_slicer): Pass-through as-is v:0:0, pts(14400): 00:00:00.300, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n0x700007562000>> 2021-10-25 14:13:51.214827: Pass-through as-is v:0:0, pts(14400): 00:00:00.300, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n"}} [2021-10-25T11:13:51.218Z DEBUG codelldb::debug_session] Debug event: 0x7fc090318868 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.227Z DEBUG codelldb::debug_session] Debug event: 0x7fc0900b27f8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.228Z DEBUG codelldb::debug_session] Debug event: 0x7fc0900b2778 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:51.228Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":325,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:51.220866+0300 liveslicer[4607:31700] (dvir_fbf_slicer): Pass-through as-is v:0:0, pts(15200): 00:00:00.317, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n0x700007562000>> 2021-10-25 14:13:51.222103: Pass-through as-is v:0:0, pts(15200): 00:00:00.317, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n2021-10-25 14:13:51.224546+0300 liveslicer[4607:31700] (dvir_fbf_slicer): Pass-through as-is v:0:0, pts(16000): 00:00:00.333, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n0x700007562000>> 2021-10-25 14:13:51.225975: Pass-through as-is v:0:0, pts(16000): 00:00:00.333, AVFrame(1920x1080@yuv420p(tv), 8-bit, colorspace: bt709, primaries: bt709, trc: bt709, chroma_loc: left)\r\n"}} [2021-10-25T11:13:55.996Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cc125a8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:55.996Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cd07b08 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:55.996Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":326,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:55.995994+0300 liveslicer[4607:31715] (dvir_fbf_slicer): lwd_00000000: LegitWSBrokerDeliver created\r\n0x700007b03000>> 2021-10-25 14:13:55.996073: lwd_00000000: LegitWSBrokerDeliver created\r\n"}} [2021-10-25T11:13:56.200Z DEBUG codelldb::debug_session] Debug event: 0x7fbfeff13fc8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:56.201Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":327,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:56.200775+0300 liveslicer[4607:31715] (dvir_fbf_slicer): Measuring latency was set to 1\r\n0x700007b03000>> 2021-10-25 14:13:56.200855: Measuring latency was set to 1\r\n"}} [2021-10-25T11:13:56.201Z DEBUG codelldb::debug_session] Debug event: 0x7fc08ca0ecf8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:56.366Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cc125a8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:56.366Z DEBUG codelldb::debug_session] Debug event: 0x7fbfef39f718 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:56.366Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":328,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:56.366163+0300 liveslicer[4607:31715] (dvir_fbf_slicer): Starting API server\r\n0x700007b03000>> 2021-10-25 14:13:56.366244: Starting API server\r\n2021-10-25 14:13:56.366282+0300 liveslicer[4607:31715] (dvir_fbf_slicer): Starting API without SSL\r\n"}} [2021-10-25T11:13:56.366Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cc11cf8 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:56.366Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":329,"event":"output","body":{"category":"stdout","output":"0x700007b03000>> 2021-10-25 14:13:56.366342: Starting API without SSL\r\n"}} [2021-10-25T11:13:56.366Z DEBUG codelldb::debug_session] Debug event: 0x7fc090363518 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:56.391Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cd07b08 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:56.391Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":330,"event":"output","body":{"category":"stdout","output":"2021-10-25 14:13:56.391311+0300 liveslicer[4607:31715] (dvir_fbf_slicer): ERROR at web.cpp:343 (Could not bind 65405), backtrace: 0x00000001011f30da WebComponent::RestartWebServer() + 3194#0120x00000001011f558d WebComponent::SyncInit() + 4685#0120x0000000101138115 TrackSync::Init() + 85#0120x0000000100ef805b Graph::Run() + 491#0120x00000001013f8894 StartLive(_UplynkJob*) + 28404#0120x00000001013ecedb ULUpload + 203#0120x00000001000571eb FrameGrabberSink::Consume(std::__1::shared_ptr const&) + 1403#0120x0000000100f0085d UplynkComponent::Iterate(std::__1::shared_ptr const&) + 2861#0120x0000000100effab1 UplynkComponent::Main() + 193#0120x0000000100efd75d UplynkComponent::MainHelper() + 77#0120x0000000100f234d2 UplynkComponentMainTask::execute(uplynk::Worker const&) + 50#0120x000000010138b0ad uplynk::Worker::thread_loop() + 541#0120x000000010138acad uplynk::Worker::thread_cb(void*) + 29#0120x00000001013807b2 Thread::Private::run() + 130#0120x00000001013842f6 boost::_mfi::mf0::operator()(Thread::Private*) const + 102#0120x000000010138426a void boost::_bi::list1 >::operator(), boost::_bi::list0>(boost::_bi::type, boost::_mfi::mf0&, boost::_bi::list0&, int) + 74#0120x0000000101384213 boost::_bi::bind_t, boost::_bi::list1 > >::operator()() + 51#0120x0000000101383c4c boost::detail::thread_data, boost::_bi::list1 > > >::run() + 28#0120x0000000104c45bd3 boost::(anonymous namespace)::thread_proxy(void*) + 147#0120x00007fff2038a8fc _pthread_start + 224#0120x00007fff20386443 thread_start + 15#012\r\n"}} [2021-10-25T11:13:56.391Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cc11e58 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:56.391Z DEBUG codelldb::debug_session] Debug event: 0x7fbfef39f718 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000004 (stdout-available), data = { process = 0x7fc08d911618 (pid = 4607), state = running} [2021-10-25T11:13:56.391Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":332,"event":"output","body":{"category":"stdout","output":"0x700007b03000>> 2021-10-25 14:13:56.391810: ERROR at web.cpp:343 (Could not bind 65405), backtrace: 0x00000001011f30da WebComponent::RestartWebServer() + 3194#0120x00000001011f558d WebComponent::SyncInit() + 4685#0120x0000000101138115 TrackSync::Init() + 85#0120x0000000100ef805b Graph::Run() + 491#0120x00000001013f8894 StartLive(_UplynkJob*) + 28404#0120x00000001013ecedb ULUpload + 203#0120x00000001000571eb FrameGrabberSink::Consume(std::__1::shared_ptr const&) + 1403#0120x0000000100f0085d UplynkComponent::Iterate(std::__1::shared_ptr const&) + 2861#0120x0000000100effab1 UplynkComponent::Main() + 193#0120x0000000100efd75d UplynkComponent::MainHelper() + 77#0120x0000000100f234d2 UplynkComponentMainTask::execute(uplynk::Worker const&) + 50#0120x000000010138b0ad uplynk::Worker::thread_loop() + 541#0120x000000010138acad uplynk::Worker::thread_cb(void*) + 29#0120x00000001013807b2 Thread::Private::run() + 130#0120x00000001013842f6 boost::_mfi::mf0::operator()(Thre"}} [2021-10-25T11:13:56.391Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":333,"event":"output","body":{"category":"stdout","output":"ad::Private*) const + 102#0120x000000010138426a void boost::_bi::list1 >::operator(), boost::_bi::list0>(boost::_bi::type, boost::_mfi::mf0&, boost::_bi::list0&, int) + 74#0120x0000000101384213 boost::_bi::bind_t, boost::_bi::list1 > >::operator()() + 51#0120x0000000101383c4c boost::detail::thread_data, boost::_bi::list1 > > >::run() + 28#0120x0000000104c45bd3 boost::(anonymous namespace)::thread_proxy(void*) + 147#0120x00007fff2038a8fc _pthread_start + 224#0120x00007fff20386443 thread_start + 15#012\r\n\r\n"}} [2021-10-25T11:13:56.614Z DEBUG codelldb::debug_session] Debug event: 0x7fc08cd07960 Event: broadcaster = 0x7fc08d911650 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7fc08d911618 (pid = 4607), state = stopped} [2021-10-25T11:13:56.618Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":334,"event":"output","body":{"category":"stderr","output":"Stop reason: EXC_BAD_ACCESS (code=1, address=0x8ca08)\n"}} [2021-10-25T11:13:56.619Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":335,"event":"stopped","body":{"allThreadsStopped":true,"reason":"exception","text":"EXC_BAD_ACCESS (code=1, address=0x8ca08)","threadId":31715}} [2021-10-25T11:13:56.620Z DEBUG codelldb::dap_codec] --> {"command":"threads","type":"request","seq":13} [2021-10-25T11:13:56.621Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":13,"success":true,"command":"threads","body":{"threads":[{"id":31498,"name":"1: tid=31498"},{"id":31654,"name":"2: tid=31654"},{"id":31655,"name":"3: tid=31655 \"services_api\""},{"id":31697,"name":"4: tid=31697 \"_i000_FrameGrabber.demux\""},{"id":31698,"name":"5: tid=31698 \"_i001_FrameGrabber.sync_pkt\""},{"id":31699,"name":"6: tid=31699 \"_i002_FrameGrabber.stream_dec\""},{"id":31700,"name":"7: tid=31700 \"_i003_FrameGrabber.top_ray_xform\""},{"id":31701,"name":"8: tid=31701 \"TopRayTransform::workers_[0]\""},{"id":31702,"name":"9: tid=31702 \"TopRayTransform::workers_[1]\""},{"id":31703,"name":"10: tid=31703 \"TopRayTransform::workers_[2]\""},{"id":31704,"name":"11: tid=31704 \"TopRayTransform::workers_[3]\""},{"id":31705,"name":"12: tid=31705 \"TopRayTransform::workers_[4]\""},{"id":31706,"name":"13: tid=31706 \"TopRayTransform::workers_[5]\""},{"id":31708,"name":"14: tid=31708 \"TopRayTransform::workers_[6]\""},{"id":31712,"name":"15: tid=31712 \"TopRayTransform::workers_[7]\""},{"id":31713,"name":"16: tid=31713 \"_i004_FrameGrabber.avfilter\""},{"id":31714,"name":"17: tid=31714 \"_i005_FrameGrabber.sync_frm\""},{"id":31715,"name":"18: tid=31715 \"_i006_FrameGrabber.sink\""},{"id":31717,"name":"19: tid=31717 \"Graph::Sink\""},{"id":31718,"name":"20: tid=31718"},{"id":31719,"name":"21: tid=31719"},{"id":31720,"name":"22: tid=31720"},{"id":31721,"name":"23: tid=31721"},{"id":31722,"name":"24: tid=31722"},{"id":31723,"name":"25: tid=31723"},{"id":31724,"name":"26: tid=31724"},{"id":31725,"name":"27: tid=31725"},{"id":31726,"name":"28: tid=31726"},{"id":31727,"name":"29: tid=31727"},{"id":31728,"name":"30: tid=31728"},{"id":31729,"name":"31: tid=31729"},{"id":31730,"name":"32: tid=31730"},{"id":31731,"name":"33: tid=31731"},{"id":31732,"name":"34: tid=31732"},{"id":31733,"name":"35: tid=31733"},{"id":31830,"name":"36: tid=31830 \"vdec_postproc\""},{"id":31831,"name":"37: tid=31831"},{"id":31832,"name":"38: tid=31832"},{"id":31833,"name":"39: tid=31833"},{"id":31834,"name":"40: tid=31834"},{"id":31835,"name":"41: tid=31835"},{"id":31836,"name":"42: tid=31836"},{"id":31837,"name":"43: tid=31837"},{"id":31838,"name":"44: tid=31838"},{"id":31839,"name":"45: tid=31839"},{"id":31840,"name":"46: tid=31840"},{"id":31841,"name":"47: tid=31841"},{"id":31842,"name":"48: tid=31842"},{"id":31843,"name":"49: tid=31843"},{"id":31844,"name":"50: tid=31844"},{"id":31845,"name":"51: tid=31845"},{"id":31846,"name":"52: tid=31846"},{"id":31868,"name":"53: tid=31868"},{"id":31869,"name":"54: tid=31869"},{"id":31870,"name":"55: tid=31870"},{"id":31871,"name":"56: tid=31871"},{"id":31872,"name":"57: tid=31872"},{"id":31873,"name":"58: tid=31873"},{"id":31874,"name":"59: tid=31874"},{"id":31875,"name":"60: tid=31875"},{"id":31876,"name":"61: tid=31876"},{"id":31877,"name":"62: tid=31877"},{"id":31878,"name":"63: tid=31878"},{"id":31879,"name":"64: tid=31879"},{"id":31880,"name":"65: tid=31880"},{"id":31881,"name":"66: tid=31881"},{"id":31882,"name":"67: tid=31882"},{"id":31883,"name":"68: tid=31883"},{"id":31884,"name":"69: tid=31884"},{"id":31885,"name":"70: tid=31885"},{"id":31886,"name":"71: tid=31886"},{"id":31887,"name":"72: tid=31887"},{"id":31888,"name":"73: tid=31888"},{"id":31889,"name":"74: tid=31889"},{"id":31890,"name":"75: tid=31890"},{"id":31891,"name":"76: tid=31891"},{"id":31892,"name":"77: tid=31892"},{"id":31893,"name":"78: tid=31893"},{"id":31894,"name":"79: tid=31894"},{"id":31895,"name":"80: tid=31895"},{"id":31896,"name":"81: tid=31896"},{"id":31897,"name":"82: tid=31897"},{"id":31898,"name":"83: tid=31898"},{"id":31899,"name":"84: tid=31899"},{"id":31943,"name":"85: tid=31943 \"_i007_DolbyConditioner\""},{"id":31951,"name":"86: tid=31951 \"_i008_preview\""},{"id":31965,"name":"87: tid=31965 \"_i009_Analyzer\""},{"id":31973,"name":"88: tid=31973 \"_i010_FramerateReducerComponent\""},{"id":31974,"name":"89: tid=31974 \"_i011_top_ray_transform\""},{"id":31978,"name":"90: tid=31978 \"TopRayTransform::workers_[0]\""},{"id":31983,"name":"91: tid=31983 \"TopRayTransform::workers_[1]\""},{"id":31986,"name":"92: tid=31986 \"TopRayTransform::workers_[2]\""},{"id":31989,"name":"93: tid=31989 \"TopRayTransform::workers_[3]\""},{"id":31990,"name":"94: tid=31990 \"TopRayTransform::workers_[4]\""},{"id":31991,"name":"95: tid=31991 \"TopRayTransform::workers_[5]\""},{"id":31994,"name":"96: tid=31994 \"TopRayTransform::workers_[6]\""},{"id":31996,"name":"97: tid=31996 \"TopRayTransform::workers_[7]\""},{"id":31998,"name":"98: tid=31998 \"_i012_InputFpsObserver\""},{"id":31999,"name":"99: tid=31999 \"_i013_imagebug\""},{"id":32000,"name":"100: tid=32000 \"_i014_livepreview\""},{"id":32002,"name":"101: tid=32002 \"LivePreview::WorkerThread\""},{"id":32005,"name":"102: tid=32005 \"WebSocketServer::worker\""},{"id":32006,"name":"103: tid=32006 \"_i015_HTTP\""},{"id":32029,"name":"104: tid=32029 \"_i016_Command\""},{"id":32035,"name":"105: tid=32035 \"_i017_render_608\""},{"id":32045,"name":"106: tid=32045 \"_i018_dr_mode_track_sync\""},{"id":32049,"name":"107: tid=32049 \"_i019_dr_mode\""},{"id":32051,"name":"108: tid=32051 \"_i020_DebugOverlay\""},{"id":32052,"name":"109: tid=32052 \"_i021_dr_mode_framerate_reducer_component\""},{"id":32054,"name":"110: tid=32054 \"_i022_dr_mode_video_encoder\""},{"id":32055,"name":"111: tid=32055 \"_i023_dr_mode_cc_muxer\""},{"id":32057,"name":"112: tid=32057 \"_i024_dr_mode\""},{"id":32058,"name":"113: tid=32058 \"_i025_dr_rtmp_output\""},{"id":32060,"name":"114: tid=32060 \"_i026_yxs_pts_transform\""},{"id":32061,"name":"115: tid=32061 \"_i027_yxs_cc_sync\""},{"id":32063,"name":"116: tid=32063 \"_i028_yxs_vtt_output\""},{"id":32064,"name":"117: tid=32064 \"_i029_yxs_rtmp_output\""},{"id":32065,"name":"118: tid=32065 \"_i030_DolbyAudioScaler\""},{"id":32066,"name":"119: tid=32066 \"_i031_dd2\""},{"id":32069,"name":"120: tid=32069 \"_i032_dd6\""},{"id":32070,"name":"121: tid=32070 \"_i033_Slicer\""},{"id":32071,"name":"122: tid=32071 \"_i034_DebugOverlay\""},{"id":32073,"name":"123: tid=32073 \"_i035_flac\""},{"id":32074,"name":"124: tid=32074 \"_i036_VideoEncoder\""},{"id":32075,"name":"125: tid=32075 \"_i037_Mux\""},{"id":32076,"name":"126: tid=32076 \"_i038_Upload (s1)\""},{"id":32077,"name":"127: tid=32077 \"deliverswitcher_cleanup\""},{"id":32079,"name":"128: tid=32079 \"_i039_Upload\""},{"id":32080,"name":"129: tid=32080 \"_i040_bum\""},{"id":32081,"name":"130: tid=32081 \"_i041_Status\""}]}} [2021-10-25T11:13:56.672Z DEBUG codelldb::dap_codec] --> {"command":"stackTrace","arguments":{"threadId":31715,"startFrame":0,"levels":1},"type":"request","seq":14} [2021-10-25T11:13:56.848Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":14,"success":true,"command":"stackTrace","body":{"stackFrames":[{"column":12,"id":1001,"line":39,"name":"Lock::Acquire(long)","source":{"name":"threadbase.cpp","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/beam/libbeam/threading/threadbase.cpp"}}],"totalFrames":30}} [2021-10-25T11:13:57.279Z DEBUG codelldb::dap_codec] --> {"command":"stackTrace","arguments":{"threadId":31715,"startFrame":1,"levels":19},"type":"request","seq":15} [2021-10-25T11:13:57.323Z DEBUG codelldb::disassembly] libsystem_c.dylib`__cxa_finalize_ranges + 316 [2021-10-25T11:13:57.330Z DEBUG codelldb::disassembly] libsystem_c.dylib`exit + 53 [2021-10-25T11:13:57.348Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":15,"success":true,"command":"stackTrace","body":{"stackFrames":[{"column":64,"id":1002,"line":97,"name":"ScopeLock::ScopeLock(Lock&)","source":{"name":"threadbase.hpp","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/beam/libbeam/threading/threadbase.hpp"}},{"column":43,"id":1003,"line":97,"name":"ScopeLock::ScopeLock(Lock&)","source":{"name":"threadbase.hpp","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/beam/libbeam/threading/threadbase.hpp"}},{"column":15,"id":1004,"line":91,"name":"LatencyData::Sort()","source":{"name":"latency_data.cpp","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/beam/libbeam/graph/latency_data.cpp"}},{"column":15,"id":1005,"line":1899,"name":"GraphMessage::BuildLatencyDataString(char*, unsigned long)","source":{"name":"graph.cpp","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/beam/libbeam/graph/graph.cpp"}},{"column":5,"id":1006,"line":1811,"name":"GraphMessage::OutputLatencyData()","source":{"name":"graph.cpp","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/beam/libbeam/graph/graph.cpp"}},{"column":9,"id":1007,"line":1794,"name":"GraphMessage::~GraphMessage()","source":{"name":"graph.cpp","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/beam/libbeam/graph/graph.cpp"}},{"column":1,"id":1008,"line":1776,"name":"GraphMessage::~GraphMessage()","source":{"name":"graph.cpp","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/beam/libbeam/graph/graph.cpp"}},{"column":23,"id":1009,"line":3318,"name":"std::__1::__shared_ptr_emplace >::__on_zero_shared()","source":{"name":"memory","path":"/Library/Developer/CommandLineTools/SDKs/MacOSX11.3.sdk/usr/include/c++/v1/memory"}},{"column":9,"id":1010,"line":3169,"name":"std::__1::__shared_count::__release_shared()","source":{"name":"memory","path":"/Library/Developer/CommandLineTools/SDKs/MacOSX11.3.sdk/usr/include/c++/v1/memory"}},{"column":27,"id":1011,"line":3211,"name":"std::__1::__shared_weak_count::__release_shared()","source":{"name":"memory","path":"/Library/Developer/CommandLineTools/SDKs/MacOSX11.3.sdk/usr/include/c++/v1/memory"}},{"column":19,"id":1012,"line":3884,"name":"std::__1::shared_ptr::~shared_ptr()","source":{"name":"memory","path":"/Library/Developer/CommandLineTools/SDKs/MacOSX11.3.sdk/usr/include/c++/v1/memory"}},{"column":1,"id":1013,"line":3882,"name":"std::__1::shared_ptr::~shared_ptr()","source":{"name":"memory","path":"/Library/Developer/CommandLineTools/SDKs/MacOSX11.3.sdk/usr/include/c++/v1/memory"}},{"column":0,"id":1014,"line":91,"name":"__cxa_finalize_ranges","presentationHint":"subtle","source":{"name":"@__cxa_finalize_ranges","sourceReference":1000}},{"column":0,"id":1015,"line":21,"name":"exit","presentationHint":"subtle","source":{"name":"@exit","sourceReference":1001}},{"column":21,"id":1016,"line":685,"name":"FrameGrabberSink::Consume(std::__1::shared_ptr const&)","source":{"name":"filelive.cpp","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/beam/slicer/live/filelive.cpp"}},{"column":9,"id":1017,"line":1568,"name":"UplynkComponent::Iterate(std::__1::shared_ptr const&)","source":{"name":"graph.cpp","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/beam/libbeam/graph/graph.cpp"}},{"column":13,"id":1018,"line":1441,"name":"UplynkComponent::Main()","source":{"name":"graph.cpp","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/beam/libbeam/graph/graph.cpp"}},{"column":12,"id":1019,"line":1158,"name":"UplynkComponent::MainHelper()","source":{"name":"graph.cpp","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/beam/libbeam/graph/graph.cpp"}},{"column":20,"id":1020,"line":1127,"name":"UplynkComponentMainTask::execute(uplynk::Worker const&)","source":{"name":"graph.cpp","path":"/Users/dyitzchaki/projects/modularuplynk2/slicer/beam/libbeam/graph/graph.cpp"}}],"totalFrames":30}} [2021-10-25T11:13:57.533Z DEBUG codelldb::dap_codec] --> {"command":"scopes","arguments":{"frameId":1001},"type":"request","seq":16} [2021-10-25T11:13:57.544Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":16,"success":true,"command":"scopes","body":{"scopes":[{"expensive":false,"name":"Local","variablesReference":1021},{"expensive":false,"name":"Static","variablesReference":1022},{"expensive":false,"name":"Global","variablesReference":1023},{"expensive":false,"name":"Registers","variablesReference":1024}]}} [2021-10-25T11:13:57.791Z DEBUG codelldb::dap_codec] --> {"command":"variables","arguments":{"variablesReference":1021},"type":"request","seq":17} [2021-10-25T11:13:57.832Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":17,"success":true,"command":"variables","body":{"variables":[{"evaluateName":"this","memoryReference":"0x700007AF2048","name":"this","type":"Lock *","value":"","variablesReference":1025},{"evaluateName":"timeout","memoryReference":"0x700007AF2040","name":"timeout","type":"long","value":"0","variablesReference":0}]}} [2021-10-25T11:14:07.168Z DEBUG codelldb::dap_codec] --> {"command":"scopes","arguments":{"frameId":1004},"type":"request","seq":18} [2021-10-25T11:14:07.177Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":18,"success":true,"command":"scopes","body":{"scopes":[{"expensive":false,"name":"Local","variablesReference":1026},{"expensive":false,"name":"Static","variablesReference":1027},{"expensive":false,"name":"Global","variablesReference":1028},{"expensive":false,"name":"Registers","variablesReference":1029}]}} [2021-10-25T11:14:07.181Z DEBUG codelldb::dap_codec] --> {"command":"variables","arguments":{"variablesReference":1026},"type":"request","seq":19} [2021-10-25T11:14:07.191Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":19,"success":true,"command":"variables","body":{"variables":[{"evaluateName":"this","memoryReference":"0x700007AF20D8","name":"this","type":"LatencyData *","value":"","variablesReference":1030},{"evaluateName":"guard","memoryReference":"0x700007AF20D0","name":"guard","type":"ScopeLock","value":"{m_lock:0x000000000008ca08}","variablesReference":1031}]}} [2021-10-25T11:14:10.412Z DEBUG codelldb::dap_codec] --> {"command":"scopes","arguments":{"frameId":1005},"type":"request","seq":20} [2021-10-25T11:14:10.413Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":20,"success":true,"command":"scopes","body":{"scopes":[{"expensive":false,"name":"Local","variablesReference":1032},{"expensive":false,"name":"Static","variablesReference":1033},{"expensive":false,"name":"Global","variablesReference":1034},{"expensive":false,"name":"Registers","variablesReference":1035}]}} [2021-10-25T11:14:10.415Z DEBUG codelldb::dap_codec] --> {"command":"variables","arguments":{"variablesReference":1032},"type":"request","seq":21} [2021-10-25T11:14:10.562Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":21,"success":true,"command":"variables","body":{"variables":[{"evaluateName":"this","memoryReference":"0x700007AF22F8","name":"this","type":"GraphMessage *","value":"{halting:false, flush:false, control:false, ...}","variablesReference":1036},{"evaluateName":"data","memoryReference":"0x700007AF22F0","name":"data","type":"char *","value":"\"\"","variablesReference":1037},{"evaluateName":"max_len","memoryReference":"0x700007AF22E8","name":"max_len","type":"size_t","value":"65536","variablesReference":0},{"evaluateName":"ESTIMATED_MAX_LINE_LEN","memoryReference":"0x700007AF22E4","name":"ESTIMATED_MAX_LINE_LEN","type":"const int","value":"200","variablesReference":0},{"evaluateName":"begin","memoryReference":"0x700007AF22D8","name":"begin","type":"int64_t","value":"1635160436396248","variablesReference":0},{"evaluateName":"ptl","memoryReference":"0x700007AF22B0","name":"ptl","type":"PerThreadLatency","value":"{...}","variablesReference":1038},{"evaluateName":"first_ts","memoryReference":"0x700007AF22A8","name":"first_ts","type":"int64_t","value":"0","variablesReference":0},{"evaluateName":"last_ts","memoryReference":"0x700007AF22A0","name":"last_ts","type":"int64_t","value":"0","variablesReference":0},{"evaluateName":"current_string_idx","memoryReference":"0x700007AF2278","name":"current_string_idx","type":"size_t","value":"0","variablesReference":0}]}} [2021-10-25T11:14:20.043Z DEBUG codelldb::dap_codec] --> {"command":"evaluate","arguments":{"expression":"latency_","frameId":1005,"context":"hover"},"type":"request","seq":22} Received signal: SIGSEGV 0: backtrace::backtrace::trace 1: backtrace::capture::Backtrace::new 2: codelldb::hook_crashes::handler 3: __sigtramp 4: __ZN15SymbolFileDWARF13GetTypeSystemER9DWARFUnit 5: __ZN15SymbolFileDWARF14GetDWARFParserER9DWARFUnit 6: __ZN19DWARFASTParserClang26CopyUniqueClassMethodTypesERK8DWARFDIES2_PN12lldb_private4TypeERNSt3__16vectorIS0_NS6_9allocatorIS0_EEEE 7: __ZN19DWARFASTParserClang15ParseSubroutineERK8DWARFDIER25ParsedDWARFTypeAttributes 8: __ZN19DWARFASTParserClang18ParseTypeFromDWARFERKN12lldb_private13SymbolContextERK8DWARFDIEPb 9: __ZN15SymbolFileDWARF9ParseTypeERKN12lldb_private13SymbolContextERK8DWARFDIEPb 10: __ZN15SymbolFileDWARF13GetTypeForDIEERK8DWARFDIEb 11: __ZN15SymbolFileDWARF11ResolveTypeERK8DWARFDIEbb 12: __ZN19DWARFASTParserClang25GetClangDeclContextForDIEERK8DWARFDIE 13: __ZN19DWARFASTParserClang29GetDeclContextForUIDFromDWARFERK8DWARFDIE 14: __ZN15SymbolFileDWARF14GetDeclContextERK8DWARFDIE 15: __ZN15SymbolFileDWARF20GetDeclContextForUIDEy 16: __ZN23SymbolFileDWARFDebugMap20GetDeclContextForUIDEy 17: __ZN12lldb_private5Block14GetDeclContextEv 18: __ZN12lldb_private19ClangUserExpression11ScanContextERNS_16ExecutionContextERNS_6StatusE 19: __ZN12lldb_private19ClangUserExpression17PrepareForParsingERNS_17DiagnosticManagerERNS_16ExecutionContextEb 20: __ZN12lldb_private19ClangUserExpression5ParseERNS_17DiagnosticManagerERNS_16ExecutionContextENS_15ExecutionPolicyEbb 21: __ZN12lldb_private14UserExpression8EvaluateERNS_16ExecutionContextERKNS_25EvaluateExpressionOptionsEN4llvm9StringRefES7_RNSt3__110shared_ptrINS_11ValueObjectEEERNS_6StatusEPNS8_12basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEPSA_ 22: __ZN12lldb_private6Target18EvaluateExpressionEN4llvm9StringRefEPNS_21ExecutionContextScopeERNSt3__110shared_ptrINS_11ValueObjectEEERKNS_25EvaluateExpressionOptionsEPNS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEPS7_ 23: __ZN4lldb7SBFrame18EvaluateExpressionEPKcRKNS_19SBExpressionOptionsE 24: __ZN4lldb7SBFrame18EvaluateExpressionEPKc 25: ___cpp_closure_3762757338300474570 26: lldb::strings::with_cstr 27: lldb::sb::sbframe::SBFrame::evaluate_expression 28: codelldb::debug_session::variables::::evaluate_expr_in_frame 29: codelldb::debug_session::variables::::handle_evaluate_expression 30: codelldb::debug_session::DebugSession::handle_request_args 31: codelldb::debug_session::DebugSession::handle_request 32: tokio::loom::std::unsafe_cell::UnsafeCell::with_mut 33: tokio::runtime::task::core::CoreStage::poll 34: tokio::runtime::task::harness::Harness::poll 35: std::thread::local::LocalKey::with 36: tokio::task::local::LocalSet::tick 37: ::poll 38: as core::future::future::Future>::poll 39: tokio::park::thread::CachedParkThread::block_on 40: tokio::runtime::thread_pool::ThreadPool::block_on 41: tokio::runtime::Runtime::block_on 42: _entry 43: codelldb::main 44: std::sys_common::backtrace::__rust_begin_short_backtrace 45: std::rt::lang_start::{{closure}} 46: std::rt::lang_start_internal 47: _main Debug adapter exit code=255, signal=null.