Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows debugging fails to redirect stdio sometimes #400

Open
CAD97 opened this issue Dec 18, 2020 · 5 comments
Open

Windows debugging fails to redirect stdio sometimes #400

CAD97 opened this issue Dec 18, 2020 · 5 comments
Labels
help wanted I am not likely to be able to investigate this issue or implement a solution. Please help! waiting for info Waiting for the issue author to provide more information.

Comments

@CAD97
Copy link

CAD97 commented Dec 18, 2020

OS: Microsoft Windows Version 2004 (OS Build 19041.685)
VSCode version: Visual Studio Code Version 1.52.1 (system setup)
Extension version: v1.6.0
Compiler: rustc 1.50.0-nightly (b32e6e6ac 2020-12-16)
Build target: x86_64-pc-windows-msvc

When debugging Bevy games, stdio is failing to be redirected (terminal agent did not respond within the allotted time). (Side note: because of #380, the debug console says "Debugee output will appear here", but it doesn't, as debugee output is going to the LLDB log exclusively.) Interestingly, the LLDB log says Listening on port 55372, and command history in the terminal shows that it was attaching to --port=55375?

Debug Log
Failed to redirect stdio to a terminal. (Terminal agent did not respond within the allotted time.)
Debuggee output will appear here.
Launching: D:\.rust\target\debug\examples\breakout.exe
Launched process 25308
Output (LLDB)
Running `cargo build --example=breakout --package=bevy --message-format=json`...
    Finished dev [unoptimized + debuginfo] target(s) in 0.48s
Raw artifacts:
{
  fileName: 'D:\\.rust\\target\\debug\\examples\\breakout.exe',
  name: 'breakout',
  kind: 'example'
}
Filtered artifacts: 
{
  fileName: 'D:\\.rust\\target\\debug\\examples\\breakout.exe',
  name: 'breakout',
  kind: 'example'
}
configuration: {
  type: 'lldb',
  request: 'launch',
  name: "Debug example 'breakout'",
  args: [],
  cwd: '${workspaceFolder}',
  __configurationTarget: 5,
  sourceMap: {
    '/rustc/b32e6e6ac8921035177256ab6806e6ab0d4b9b94': 'D:/.rust/rustup/toolchains/nightly-x86_64-pc-windows-msvc/lib/rustlib/src/rust'
  },
  relativePathBase: 'd:\\repos\\bevyengine\\bevy',
  program: 'D:\\.rust\\target\\debug\\examples\\breakout.exe',
  sourceLanguages: [ 'rust' ]
}
liblldb: c:\Users\CAD\.vscode\extensions\vadimcn.vscode-lldb-1.6.0\lldb\bin\liblldb.dll
environment: {}
params: { sourceLanguages: [ 'rust' ] }
Listening on port 55372
[2020-12-18T00:35:35Z DEBUG codelldb] New debug session
INFO(Python) 19:35:36 formatters: Initializing
INFO(Python) 19:35:36 formatters.rust: Initializing
[2020-12-18T00:35:36Z 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},"type":"request","seq":1}
[2020-12-18T00:35:36Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":1,"success":true,"command":"initialize","body":{"exceptionBreakpointFilters":[{"default":true,"filter":"rust_panic","label":"Rust: on panic"}],"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}}
[2020-12-18T00:35:36Z DEBUG codelldb::dap_codec] --> {"command":"launch","arguments":{"type":"lldb","request":"launch","name":"Debug example 'breakout'","args":[],"cwd":"D:\\repos\\bevyengine\\bevy","__configurationTarget":5,"sourceMap":{"/rustc/b32e6e6ac8921035177256ab6806e6ab0d4b9b94":"D:/.rust/rustup/toolchains/nightly-x86_64-pc-windows-msvc/lib/rustlib/src/rust"},"relativePathBase":"d:\\repos\\bevyengine\\bevy","program":"D:\\.rust\\target\\debug\\examples\\breakout.exe","sourceLanguages":["rust"],"_adapterSettings":{"displayFormat":"auto","showDisassembly":"auto","dereferencePointers":true,"suppressMissingSourceFiles":true,"evaluationTimeout":5,"consoleMode":"commands","sourceLanguages":null,"terminalPromptClear":null},"__sessionId":"b03e8c29-1777-429d-8d5f-365847f17d13"},"type":"request","seq":2}
[2020-12-18T00:35:36Z INFO  codelldb::debug_session] Set target.source-map args: "/rustc/b32e6e6ac8921035177256ab6806e6ab0d4b9b94" "D:/.rust/rustup/toolchains/nightly-x86_64-pc-windows-msvc/lib/rustlib/src/rust" 
[2020-12-18T00:35:40Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":1,"event":"initialized"}
[2020-12-18T00:35:40Z DEBUG codelldb::dap_codec] <-- {"type":"request","seq":2,"command":"runInTerminal","arguments":{"args":["c:\\Users\\CAD\\.vscode\\extensions\\vadimcn.vscode-lldb-1.6.0\\adapter\\codelldb.exe","terminal-agent","--port=55375"],"cwd":"","kind":"integrated","title":"Debug example 'breakout'"}}
[2020-12-18T00:35:40Z DEBUG codelldb::dap_codec] --> {"command":"setFunctionBreakpoints","arguments":{"breakpoints":[]},"type":"request","seq":3}
[2020-12-18T00:35:40Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":3,"success":true,"command":"setFunctionBreakpoints","body":{"breakpoints":[]}}
[2020-12-18T00:35:40Z DEBUG codelldb::dap_codec] --> {"command":"setDataBreakpoints","arguments":{"breakpoints":[]},"type":"request","seq":4}
[2020-12-18T00:35:40Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":4,"success":true,"command":"setDataBreakpoints","body":{"breakpoints":[]}}
[2020-12-18T00:35:40Z DEBUG codelldb::dap_codec] --> {"command":"setExceptionBreakpoints","arguments":{"filters":["rust_panic"]},"type":"request","seq":5}
[2020-12-18T00:35:41Z DEBUG codelldb::dap_codec] --> {"type":"response","seq":6,"command":"runInTerminal","request_seq":2,"success":true,"body":{"shellProcessId":12564}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":5,"success":true,"command":"setExceptionBreakpoints"}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":3,"event":"output","body":{"category":"stderr","output":"Failed to redirect stdio to a terminal. (Terminal agent did not respond within the allotted time.)\nDebuggee output will appear here.\n"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] --> {"command":"configurationDone","type":"request","seq":7}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":4,"event":"output","body":{"output":"Launching: D:\\.rust\\target\\debug\\examples\\breakout.exe\n"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":5,"event":"output","body":{"output":"Launched process 1420\n"}}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD5DA98700 Event: broadcaster = 000001FD61D3FAB8 (lldb.process), type = 0x00000001 (state-changed), data = { process = 000001FD61D3FA90 (pid = 1420), state = running}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":2,"success":true,"command":"launch"}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":7,"success":true,"command":"configurationDone"}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":6,"event":"continued","body":{"allThreadsContinued":true,"threadId":0}}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A93DD80 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {imm32.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A93D9C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {imm32.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":7,"event":"module","body":{"module":{"addressRange":"7FFB8B180000","id":"7FFB8B180000","name":"imm32.dll","path":"C:\\Windows\\System32\\imm32.dll","symbolFilePath":"C:\\Windows\\System32\\imm32.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":8,"event":"module","body":{"module":{"addressRange":"7FFB8B180000","id":"7FFB8B180000","name":"imm32.dll","path":"C:\\Windows\\System32\\imm32.dll","symbolFilePath":"C:\\Windows\\System32\\imm32.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A93D500 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {bcryptprimitives.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A93E080 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {bcryptprimitives.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":9,"event":"module","body":{"module":{"addressRange":"7FFB89A10000","id":"7FFB89A10000","name":"bcryptprimitives.dll","path":"C:\\Windows\\System32\\bcryptprimitives.dll","symbolFilePath":"C:\\Windows\\System32\\bcryptprimitives.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":10,"event":"module","body":{"module":{"addressRange":"7FFB89A10000","id":"7FFB89A10000","name":"bcryptprimitives.dll","path":"C:\\Windows\\System32\\bcryptprimitives.dll","symbolFilePath":"C:\\Windows\\System32\\bcryptprimitives.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A93E700 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {kernel.appcore.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A93FD80 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {kernel.appcore.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":11,"event":"module","body":{"module":{"addressRange":"7FFB88290000","id":"7FFB88290000","name":"kernel.appcore.dll","path":"C:\\Windows\\System32\\kernel.appcore.dll","symbolFilePath":"C:\\Windows\\System32\\kernel.appcore.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":12,"event":"module","body":{"module":{"addressRange":"7FFB88290000","id":"7FFB88290000","name":"kernel.appcore.dll","path":"C:\\Windows\\System32\\kernel.appcore.dll","symbolFilePath":"C:\\Windows\\System32\\kernel.appcore.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A93F300 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {clbcatq.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A9400C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {clbcatq.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":13,"event":"module","body":{"module":{"addressRange":"7FFB8A2B0000","id":"7FFB8A2B0000","name":"clbcatq.dll","path":"C:\\Windows\\System32\\clbcatq.dll","symbolFilePath":"C:\\Windows\\System32\\clbcatq.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":14,"event":"module","body":{"module":{"addressRange":"7FFB8A2B0000","id":"7FFB8A2B0000","name":"clbcatq.dll","path":"C:\\Windows\\System32\\clbcatq.dll","symbolFilePath":"C:\\Windows\\System32\\clbcatq.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A93F940 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {MMDevAPI.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A93F980 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {MMDevAPI.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":15,"event":"module","body":{"module":{"addressRange":"7FFB83950000","id":"7FFB83950000","name":"MMDevAPI.dll","path":"C:\\Windows\\System32\\MMDevAPI.dll","symbolFilePath":"C:\\Windows\\System32\\MMDevAPI.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":16,"event":"module","body":{"module":{"addressRange":"7FFB83950000","id":"7FFB83950000","name":"MMDevAPI.dll","path":"C:\\Windows\\System32\\MMDevAPI.dll","symbolFilePath":"C:\\Windows\\System32\\MMDevAPI.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A93FCC0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {SHCore.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A93F5C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {SHCore.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":17,"event":"module","body":{"module":{"addressRange":"7FFB8B740000","id":"7FFB8B740000","name":"SHCore.dll","path":"C:\\Windows\\System32\\SHCore.dll","symbolFilePath":"C:\\Windows\\System32\\SHCore.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":18,"event":"module","body":{"module":{"addressRange":"7FFB8B740000","id":"7FFB8B740000","name":"SHCore.dll","path":"C:\\Windows\\System32\\SHCore.dll","symbolFilePath":"C:\\Windows\\System32\\SHCore.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A93F540 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {devobj.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A93F2C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {devobj.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":19,"event":"module","body":{"module":{"addressRange":"7FFB89740000","id":"7FFB89740000","name":"devobj.dll","path":"C:\\Windows\\System32\\devobj.dll","symbolFilePath":"C:\\Windows\\System32\\devobj.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":20,"event":"module","body":{"module":{"addressRange":"7FFB89740000","id":"7FFB89740000","name":"devobj.dll","path":"C:\\Windows\\System32\\devobj.dll","symbolFilePath":"C:\\Windows\\System32\\devobj.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A93FA40 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {cfgmgr32.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A9401C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {cfgmgr32.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":21,"event":"module","body":{"module":{"addressRange":"7FFB89990000","id":"7FFB89990000","name":"cfgmgr32.dll","path":"C:\\Windows\\System32\\cfgmgr32.dll","symbolFilePath":"C:\\Windows\\System32\\cfgmgr32.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":22,"event":"module","body":{"module":{"addressRange":"7FFB89990000","id":"7FFB89990000","name":"cfgmgr32.dll","path":"C:\\Windows\\System32\\cfgmgr32.dll","symbolFilePath":"C:\\Windows\\System32\\cfgmgr32.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A941080 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {AudioSes.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A941B80 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {AudioSes.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":23,"event":"module","body":{"module":{"addressRange":"7FFB839F0000","id":"7FFB839F0000","name":"AudioSes.dll","path":"C:\\Windows\\System32\\AudioSes.dll","symbolFilePath":"C:\\Windows\\System32\\AudioSes.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":24,"event":"module","body":{"module":{"addressRange":"7FFB839F0000","id":"7FFB839F0000","name":"AudioSes.dll","path":"C:\\Windows\\System32\\AudioSes.dll","symbolFilePath":"C:\\Windows\\System32\\AudioSes.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A941800 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {oleaut32.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A941F40 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {oleaut32.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":25,"event":"module","body":{"module":{"addressRange":"7FFB8A6C0000","id":"7FFB8A6C0000","name":"oleaut32.dll","path":"C:\\Windows\\System32\\oleaut32.dll","symbolFilePath":"C:\\Windows\\System32\\oleaut32.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":26,"event":"module","body":{"module":{"addressRange":"7FFB8A6C0000","id":"7FFB8A6C0000","name":"oleaut32.dll","path":"C:\\Windows\\System32\\oleaut32.dll","symbolFilePath":"C:\\Windows\\System32\\oleaut32.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A941F40 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {powrprof.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A9415C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {powrprof.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":27,"event":"module","body":{"module":{"addressRange":"7FFB89360000","id":"7FFB89360000","name":"powrprof.dll","path":"C:\\Windows\\System32\\powrprof.dll","symbolFilePath":"C:\\Windows\\System32\\powrprof.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":28,"event":"module","body":{"module":{"addressRange":"7FFB89360000","id":"7FFB89360000","name":"powrprof.dll","path":"C:\\Windows\\System32\\powrprof.dll","symbolFilePath":"C:\\Windows\\System32\\powrprof.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A9413C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {umpdc.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A943100 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {umpdc.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":29,"event":"module","body":{"module":{"addressRange":"7FFB892E0000","id":"7FFB892E0000","name":"umpdc.dll","path":"C:\\Windows\\System32\\umpdc.dll","symbolFilePath":"C:\\Windows\\System32\\umpdc.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":30,"event":"module","body":{"module":{"addressRange":"7FFB892E0000","id":"7FFB892E0000","name":"umpdc.dll","path":"C:\\Windows\\System32\\umpdc.dll","symbolFilePath":"C:\\Windows\\System32\\umpdc.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A942F00 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {ResourcePolicyClient.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A9425C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {ResourcePolicyClient.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":31,"event":"module","body":{"module":{"addressRange":"7FFB87250000","id":"7FFB87250000","name":"ResourcePolicyClient.dll","path":"C:\\Windows\\System32\\ResourcePolicyClient.dll","symbolFilePath":"C:\\Windows\\System32\\ResourcePolicyClient.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":32,"event":"module","body":{"module":{"addressRange":"7FFB87250000","id":"7FFB87250000","name":"ResourcePolicyClient.dll","path":"C:\\Windows\\System32\\ResourcePolicyClient.dll","symbolFilePath":"C:\\Windows\\System32\\ResourcePolicyClient.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] --> {"command":"threads","type":"request","seq":8}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":8,"success":true,"command":"threads","body":{"threads":[{"id":3020,"name":"2: tid=3020"},{"id":3288,"name":"3: tid=3288"},{"id":13788,"name":"1: tid=13788"},{"id":18044,"name":"4: tid=18044"}]}}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A942D00 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {XInput1_4.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A942A40 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {XInput1_4.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":33,"event":"module","body":{"module":{"addressRange":"7FFB4A0A0000","id":"7FFB4A0A0000","name":"XInput1_4.dll","path":"C:\\Windows\\System32\\XInput1_4.dll","symbolFilePath":"C:\\Windows\\System32\\XInput1_4.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":34,"event":"module","body":{"module":{"addressRange":"7FFB4A0A0000","id":"7FFB4A0A0000","name":"XInput1_4.dll","path":"C:\\Windows\\System32\\XInput1_4.dll","symbolFilePath":"C:\\Windows\\System32\\XInput1_4.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A942480 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {InputHost.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A942B40 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {InputHost.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":35,"event":"module","body":{"module":{"addressRange":"7FFB80240000","id":"7FFB80240000","name":"InputHost.dll","path":"C:\\Windows\\System32\\InputHost.dll","symbolFilePath":"C:\\Windows\\System32\\InputHost.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":36,"event":"module","body":{"module":{"addressRange":"7FFB80240000","id":"7FFB80240000","name":"InputHost.dll","path":"C:\\Windows\\System32\\InputHost.dll","symbolFilePath":"C:\\Windows\\System32\\InputHost.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A942700 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {WinTypes.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A942200 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {WinTypes.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":37,"event":"module","body":{"module":{"addressRange":"7FFB86260000","id":"7FFB86260000","name":"WinTypes.dll","path":"C:\\Windows\\System32\\WinTypes.dll","symbolFilePath":"C:\\Windows\\System32\\WinTypes.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":38,"event":"module","body":{"module":{"addressRange":"7FFB86260000","id":"7FFB86260000","name":"WinTypes.dll","path":"C:\\Windows\\System32\\WinTypes.dll","symbolFilePath":"C:\\Windows\\System32\\WinTypes.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A942C40 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {CoreMessaging.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A9286C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {CoreMessaging.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":39,"event":"module","body":{"module":{"addressRange":"7FFB86C90000","id":"7FFB86C90000","name":"CoreMessaging.dll","path":"C:\\Windows\\System32\\CoreMessaging.dll","symbolFilePath":"C:\\Windows\\System32\\CoreMessaging.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":40,"event":"module","body":{"module":{"addressRange":"7FFB86C90000","id":"7FFB86C90000","name":"CoreMessaging.dll","path":"C:\\Windows\\System32\\CoreMessaging.dll","symbolFilePath":"C:\\Windows\\System32\\CoreMessaging.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A928640 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {CoreUIComponents.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A928BC0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {CoreUIComponents.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":41,"event":"module","body":{"module":{"addressRange":"7FFB86930000","id":"7FFB86930000","name":"CoreUIComponents.dll","path":"C:\\Windows\\System32\\CoreUIComponents.dll","symbolFilePath":"C:\\Windows\\System32\\CoreUIComponents.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":42,"event":"module","body":{"module":{"addressRange":"7FFB86930000","id":"7FFB86930000","name":"CoreUIComponents.dll","path":"C:\\Windows\\System32\\CoreUIComponents.dll","symbolFilePath":"C:\\Windows\\System32\\CoreUIComponents.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A9286C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {propsys.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A929140 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {propsys.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":43,"event":"module","body":{"module":{"addressRange":"7FFB84E00000","id":"7FFB84E00000","name":"propsys.dll","path":"C:\\Windows\\System32\\propsys.dll","symbolFilePath":"C:\\Windows\\System32\\propsys.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":44,"event":"module","body":{"module":{"addressRange":"7FFB84E00000","id":"7FFB84E00000","name":"propsys.dll","path":"C:\\Windows\\System32\\propsys.dll","symbolFilePath":"C:\\Windows\\System32\\propsys.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A9281C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {ws2_32.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A928380 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {ws2_32.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":45,"event":"module","body":{"module":{"addressRange":"7FFB8AA20000","id":"7FFB8AA20000","name":"ws2_32.dll","path":"C:\\Windows\\System32\\ws2_32.dll","symbolFilePath":"C:\\Windows\\System32\\ws2_32.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":46,"event":"module","body":{"module":{"addressRange":"7FFB8AA20000","id":"7FFB8AA20000","name":"ws2_32.dll","path":"C:\\Windows\\System32\\ws2_32.dll","symbolFilePath":"C:\\Windows\\System32\\ws2_32.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A9281C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {ntmarta.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A929700 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {ntmarta.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":47,"event":"module","body":{"module":{"addressRange":"7FFB88710000","id":"7FFB88710000","name":"ntmarta.dll","path":"C:\\Windows\\System32\\ntmarta.dll","symbolFilePath":"C:\\Windows\\System32\\ntmarta.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":48,"event":"module","body":{"module":{"addressRange":"7FFB88710000","id":"7FFB88710000","name":"ntmarta.dll","path":"C:\\Windows\\System32\\ntmarta.dll","symbolFilePath":"C:\\Windows\\System32\\ntmarta.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A929440 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {vulkan-1.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::debug_session] Debug event: 000001FD6A929E80 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {vulkan-1.dll}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":49,"event":"module","body":{"module":{"addressRange":"7FFB38130000","id":"7FFB38130000","name":"vulkan-1.dll","path":"C:\\Windows\\System32\\vulkan-1.dll","symbolFilePath":"C:\\Windows\\System32\\vulkan-1.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:46Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":50,"event":"module","body":{"module":{"addressRange":"7FFB38130000","id":"7FFB38130000","name":"vulkan-1.dll","path":"C:\\Windows\\System32\\vulkan-1.dll","symbolFilePath":"C:\\Windows\\System32\\vulkan-1.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A929F80 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {dxgi.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92A100 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {dxgi.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":51,"event":"module","body":{"module":{"addressRange":"7FFB882E0000","id":"7FFB882E0000","name":"dxgi.dll","path":"C:\\Windows\\System32\\dxgi.dll","symbolFilePath":"C:\\Windows\\System32\\dxgi.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":52,"event":"module","body":{"module":{"addressRange":"7FFB882E0000","id":"7FFB882E0000","name":"dxgi.dll","path":"C:\\Windows\\System32\\dxgi.dll","symbolFilePath":"C:\\Windows\\System32\\dxgi.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A9294C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {nvoglv64.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A929640 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {nvoglv64.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":53,"event":"module","body":{"module":{"addressRange":"7FFAF1D70000","id":"7FFAF1D70000","name":"nvoglv64.dll","path":"C:\\Windows\\System32\\DriverStore\\FileRepository\\nvgbdi.inf_amd64_4df27ee1e2afee02\\nvoglv64.dll","symbolFilePath":"C:\\Windows\\System32\\DriverStore\\FileRepository\\nvgbdi.inf_amd64_4df27ee1e2afee02\\nvoglv64.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":54,"event":"module","body":{"module":{"addressRange":"7FFAF1D70000","id":"7FFAF1D70000","name":"nvoglv64.dll","path":"C:\\Windows\\System32\\DriverStore\\FileRepository\\nvgbdi.inf_amd64_4df27ee1e2afee02\\nvoglv64.dll","symbolFilePath":"C:\\Windows\\System32\\DriverStore\\FileRepository\\nvgbdi.inf_amd64_4df27ee1e2afee02\\nvoglv64.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92A100 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {setupapi.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A9297C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {setupapi.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":55,"event":"module","body":{"module":{"addressRange":"7FFB8AB80000","id":"7FFB8AB80000","name":"setupapi.dll","path":"C:\\Windows\\System32\\setupapi.dll","symbolFilePath":"C:\\Windows\\System32\\setupapi.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":56,"event":"module","body":{"module":{"addressRange":"7FFB8AB80000","id":"7FFB8AB80000","name":"setupapi.dll","path":"C:\\Windows\\System32\\setupapi.dll","symbolFilePath":"C:\\Windows\\System32\\setupapi.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A9297C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {bcrypt.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92AE80 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {bcrypt.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":57,"event":"module","body":{"module":{"addressRange":"7FFB899E0000","id":"7FFB899E0000","name":"bcrypt.dll","path":"C:\\Windows\\System32\\bcrypt.dll","symbolFilePath":"C:\\Windows\\System32\\bcrypt.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":58,"event":"module","body":{"module":{"addressRange":"7FFB899E0000","id":"7FFB899E0000","name":"bcrypt.dll","path":"C:\\Windows\\System32\\bcrypt.dll","symbolFilePath":"C:\\Windows\\System32\\bcrypt.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92A940 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {wtsapi32.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92ACC0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {wtsapi32.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":59,"event":"module","body":{"module":{"addressRange":"7FFB85470000","id":"7FFB85470000","name":"wtsapi32.dll","path":"C:\\Windows\\System32\\wtsapi32.dll","symbolFilePath":"C:\\Windows\\System32\\wtsapi32.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":60,"event":"module","body":{"module":{"addressRange":"7FFB85470000","id":"7FFB85470000","name":"wtsapi32.dll","path":"C:\\Windows\\System32\\wtsapi32.dll","symbolFilePath":"C:\\Windows\\System32\\wtsapi32.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92A780 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {version.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92AC00 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {version.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":61,"event":"module","body":{"module":{"addressRange":"7FFB83330000","id":"7FFB83330000","name":"version.dll","path":"C:\\Windows\\System32\\version.dll","symbolFilePath":"C:\\Windows\\System32\\version.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":62,"event":"module","body":{"module":{"addressRange":"7FFB83330000","id":"7FFB83330000","name":"version.dll","path":"C:\\Windows\\System32\\version.dll","symbolFilePath":"C:\\Windows\\System32\\version.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92AD80 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {msasn1.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92A700 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {msasn1.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":63,"event":"module","body":{"module":{"addressRange":"7FFB89580000","id":"7FFB89580000","name":"msasn1.dll","path":"C:\\Windows\\System32\\msasn1.dll","symbolFilePath":"C:\\Windows\\System32\\msasn1.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":64,"event":"module","body":{"module":{"addressRange":"7FFB89580000","id":"7FFB89580000","name":"msasn1.dll","path":"C:\\Windows\\System32\\msasn1.dll","symbolFilePath":"C:\\Windows\\System32\\msasn1.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92A380 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {cryptnet.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92A3C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {cryptnet.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":65,"event":"module","body":{"module":{"addressRange":"7FFB82CC0000","id":"7FFB82CC0000","name":"cryptnet.dll","path":"C:\\Windows\\System32\\cryptnet.dll","symbolFilePath":"C:\\Windows\\System32\\cryptnet.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":66,"event":"module","body":{"module":{"addressRange":"7FFB82CC0000","id":"7FFB82CC0000","name":"cryptnet.dll","path":"C:\\Windows\\System32\\cryptnet.dll","symbolFilePath":"C:\\Windows\\System32\\cryptnet.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92A840 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {crypt32.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92A980 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {crypt32.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":67,"event":"module","body":{"module":{"addressRange":"7FFB89A90000","id":"7FFB89A90000","name":"crypt32.dll","path":"C:\\Windows\\System32\\crypt32.dll","symbolFilePath":"C:\\Windows\\System32\\crypt32.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":68,"event":"module","body":{"module":{"addressRange":"7FFB89A90000","id":"7FFB89A90000","name":"crypt32.dll","path":"C:\\Windows\\System32\\crypt32.dll","symbolFilePath":"C:\\Windows\\System32\\crypt32.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92A980 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {wintrust.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92BA80 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {wintrust.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":69,"event":"module","body":{"module":{"addressRange":"7FFB89F70000","id":"7FFB89F70000","name":"wintrust.dll","path":"C:\\Windows\\System32\\wintrust.dll","symbolFilePath":"C:\\Windows\\System32\\wintrust.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":70,"event":"module","body":{"module":{"addressRange":"7FFB89F70000","id":"7FFB89F70000","name":"wintrust.dll","path":"C:\\Windows\\System32\\wintrust.dll","symbolFilePath":"C:\\Windows\\System32\\wintrust.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92C0C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {graphics-hook64.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92B6C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {graphics-hook64.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":71,"event":"module","body":{"module":{"addressRange":"7FFB3A7C0000","id":"7FFB3A7C0000","name":"graphics-hook64.dll","path":"C:\\ProgramData\\obs-studio-hook\\graphics-hook64.dll","symbolFilePath":"C:\\ProgramData\\obs-studio-hook\\graphics-hook64.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":72,"event":"module","body":{"module":{"addressRange":"7FFB3A7C0000","id":"7FFB3A7C0000","name":"graphics-hook64.dll","path":"C:\\ProgramData\\obs-studio-hook\\graphics-hook64.dll","symbolFilePath":"C:\\ProgramData\\obs-studio-hook\\graphics-hook64.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92B200 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {DXCore.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92B480 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {DXCore.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":73,"event":"module","body":{"module":{"addressRange":"7FFB804A0000","id":"7FFB804A0000","name":"DXCore.dll","path":"C:\\Windows\\System32\\DXCore.dll","symbolFilePath":"C:\\Windows\\System32\\DXCore.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":74,"event":"module","body":{"module":{"addressRange":"7FFB804A0000","id":"7FFB804A0000","name":"DXCore.dll","path":"C:\\Windows\\System32\\DXCore.dll","symbolFilePath":"C:\\Windows\\System32\\DXCore.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92BF00 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {windows.storage.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92B840 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {windows.storage.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":75,"event":"module","body":{"module":{"addressRange":"7FFB87810000","id":"7FFB87810000","name":"windows.storage.dll","path":"C:\\Windows\\System32\\windows.storage.dll","symbolFilePath":"C:\\Windows\\System32\\windows.storage.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":76,"event":"module","body":{"module":{"addressRange":"7FFB87810000","id":"7FFB87810000","name":"windows.storage.dll","path":"C:\\Windows\\System32\\windows.storage.dll","symbolFilePath":"C:\\Windows\\System32\\windows.storage.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92B6C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {wldp.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92B7C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {wldp.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":77,"event":"module","body":{"module":{"addressRange":"7FFB89400000","id":"7FFB89400000","name":"wldp.dll","path":"C:\\Windows\\System32\\wldp.dll","symbolFilePath":"C:\\Windows\\System32\\wldp.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":78,"event":"module","body":{"module":{"addressRange":"7FFB89400000","id":"7FFB89400000","name":"wldp.dll","path":"C:\\Windows\\System32\\wldp.dll","symbolFilePath":"C:\\Windows\\System32\\wldp.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92C0C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {shlwapi.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92BD80 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {shlwapi.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":79,"event":"module","body":{"module":{"addressRange":"7FFB8A660000","id":"7FFB8A660000","name":"shlwapi.dll","path":"C:\\Windows\\System32\\shlwapi.dll","symbolFilePath":"C:\\Windows\\System32\\shlwapi.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":80,"event":"module","body":{"module":{"addressRange":"7FFB8A660000","id":"7FFB8A660000","name":"shlwapi.dll","path":"C:\\Windows\\System32\\shlwapi.dll","symbolFilePath":"C:\\Windows\\System32\\shlwapi.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92C8C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {nvspcap64.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92C4C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {nvspcap64.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":81,"event":"module","body":{"module":{"addressRange":"7FFB4A250000","id":"7FFB4A250000","name":"nvspcap64.dll","path":"C:\\Windows\\System32\\nvspcap64.dll","symbolFilePath":"C:\\Windows\\System32\\nvspcap64.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":82,"event":"module","body":{"module":{"addressRange":"7FFB4A250000","id":"7FFB4A250000","name":"nvspcap64.dll","path":"C:\\Windows\\System32\\nvspcap64.dll","symbolFilePath":"C:\\Windows\\System32\\nvspcap64.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92CC40 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {profapi.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92CF80 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {profapi.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":83,"event":"module","body":{"module":{"addressRange":"7FFB898C0000","id":"7FFB898C0000","name":"profapi.dll","path":"C:\\Windows\\System32\\profapi.dll","symbolStatus":"Symbols not found"},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":84,"event":"module","body":{"module":{"addressRange":"7FFB898C0000","id":"7FFB898C0000","name":"profapi.dll","path":"C:\\Windows\\System32\\profapi.dll","symbolStatus":"Symbols not found"},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92CD80 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {msctf.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92CB80 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {msctf.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":85,"event":"module","body":{"module":{"addressRange":"7FFB8C0F0000","id":"7FFB8C0F0000","name":"msctf.dll","path":"C:\\Windows\\System32\\msctf.dll","symbolFilePath":"C:\\Windows\\System32\\msctf.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":86,"event":"module","body":{"module":{"addressRange":"7FFB8C0F0000","id":"7FFB8C0F0000","name":"msctf.dll","path":"C:\\Windows\\System32\\msctf.dll","symbolFilePath":"C:\\Windows\\System32\\msctf.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92C640 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {D3D12.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92CAC0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {D3D12.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":87,"event":"module","body":{"module":{"addressRange":"7FFB27DF0000","id":"7FFB27DF0000","name":"D3D12.dll","path":"C:\\Windows\\System32\\D3D12.dll","symbolFilePath":"C:\\Windows\\System32\\D3D12.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":88,"event":"module","body":{"module":{"addressRange":"7FFB27DF0000","id":"7FFB27DF0000","name":"D3D12.dll","path":"C:\\Windows\\System32\\D3D12.dll","symbolFilePath":"C:\\Windows\\System32\\D3D12.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92C300 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {d3d12SDKLayers.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92CC40 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {d3d12SDKLayers.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":89,"event":"module","body":{"module":{"addressRange":"7FFB09520000","id":"7FFB09520000","name":"d3d12SDKLayers.dll","path":"C:\\Windows\\System32\\d3d12SDKLayers.dll","symbolFilePath":"C:\\Windows\\System32\\d3d12SDKLayers.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":90,"event":"module","body":{"module":{"addressRange":"7FFB09520000","id":"7FFB09520000","name":"d3d12SDKLayers.dll","path":"C:\\Windows\\System32\\d3d12SDKLayers.dll","symbolFilePath":"C:\\Windows\\System32\\d3d12SDKLayers.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92CC40 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {DXGIDebug.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92D980 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {DXGIDebug.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":91,"event":"module","body":{"module":{"addressRange":"7FFB3A100000","id":"7FFB3A100000","name":"DXGIDebug.dll","path":"C:\\Windows\\System32\\DXGIDebug.dll","symbolFilePath":"C:\\Windows\\System32\\DXGIDebug.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":92,"event":"module","body":{"module":{"addressRange":"7FFB3A100000","id":"7FFB3A100000","name":"DXGIDebug.dll","path":"C:\\Windows\\System32\\DXGIDebug.dll","symbolFilePath":"C:\\Windows\\System32\\DXGIDebug.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92D2C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92D5C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92DE00 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {DXGIDebug.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92D600 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {DXGIDebug.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":93,"event":"module","body":{"module":{"addressRange":"7FFB3A100000","id":"7FFB3A100000","name":"DXGIDebug.dll","path":"C:\\Windows\\System32\\DXGIDebug.dll","symbolFilePath":"C:\\Windows\\System32\\DXGIDebug.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":94,"event":"module","body":{"module":{"addressRange":"7FFB3A100000","id":"7FFB3A100000","name":"DXGIDebug.dll","path":"C:\\Windows\\System32\\DXGIDebug.dll","symbolFilePath":"C:\\Windows\\System32\\DXGIDebug.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A92DE00 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {nvldumdx.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A936A80 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {nvldumdx.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":95,"event":"module","body":{"module":{"addressRange":"7FFB80100000","id":"7FFB80100000","name":"nvldumdx.dll","path":"C:\\Windows\\System32\\DriverStore\\FileRepository\\nvgbdi.inf_amd64_4df27ee1e2afee02\\nvldumdx.dll","symbolFilePath":"C:\\Windows\\System32\\DriverStore\\FileRepository\\nvgbdi.inf_amd64_4df27ee1e2afee02\\nvldumdx.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":96,"event":"module","body":{"module":{"addressRange":"7FFB80100000","id":"7FFB80100000","name":"nvldumdx.dll","path":"C:\\Windows\\System32\\DriverStore\\FileRepository\\nvgbdi.inf_amd64_4df27ee1e2afee02\\nvldumdx.dll","symbolFilePath":"C:\\Windows\\System32\\DriverStore\\FileRepository\\nvgbdi.inf_amd64_4df27ee1e2afee02\\nvldumdx.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A936940 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {imagehlp.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A936380 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {imagehlp.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":97,"event":"module","body":{"module":{"addressRange":"7FFB8AB60000","id":"7FFB8AB60000","name":"imagehlp.dll","path":"C:\\Windows\\System32\\imagehlp.dll","symbolFilePath":"C:\\Windows\\System32\\imagehlp.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":98,"event":"module","body":{"module":{"addressRange":"7FFB8AB60000","id":"7FFB8AB60000","name":"imagehlp.dll","path":"C:\\Windows\\System32\\imagehlp.dll","symbolFilePath":"C:\\Windows\\System32\\imagehlp.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A936480 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {rsaenh.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A9368C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {rsaenh.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":99,"event":"module","body":{"module":{"addressRange":"7FFB88A40000","id":"7FFB88A40000","name":"rsaenh.dll","path":"C:\\Windows\\System32\\rsaenh.dll","symbolFilePath":"C:\\Windows\\System32\\rsaenh.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":100,"event":"module","body":{"module":{"addressRange":"7FFB88A40000","id":"7FFB88A40000","name":"rsaenh.dll","path":"C:\\Windows\\System32\\rsaenh.dll","symbolFilePath":"C:\\Windows\\System32\\rsaenh.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A936A40 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {nvwgf2umx.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A937080 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {nvwgf2umx.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":101,"event":"module","body":{"module":{"addressRange":"7FFB54660000","id":"7FFB54660000","name":"nvwgf2umx.dll","path":"C:\\Windows\\System32\\DriverStore\\FileRepository\\nvgbdi.inf_amd64_4df27ee1e2afee02\\nvwgf2umx.dll","symbolFilePath":"C:\\Windows\\System32\\DriverStore\\FileRepository\\nvgbdi.inf_amd64_4df27ee1e2afee02\\nvwgf2umx.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":102,"event":"module","body":{"module":{"addressRange":"7FFB54660000","id":"7FFB54660000","name":"nvwgf2umx.dll","path":"C:\\Windows\\System32\\DriverStore\\FileRepository\\nvgbdi.inf_amd64_4df27ee1e2afee02\\nvwgf2umx.dll","symbolFilePath":"C:\\Windows\\System32\\DriverStore\\FileRepository\\nvgbdi.inf_amd64_4df27ee1e2afee02\\nvwgf2umx.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A9365C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {winmm.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A936880 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {winmm.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":103,"event":"module","body":{"module":{"addressRange":"7FFB7C020000","id":"7FFB7C020000","name":"winmm.dll","path":"C:\\Windows\\System32\\winmm.dll","symbolFilePath":"C:\\Windows\\System32\\winmm.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":104,"event":"module","body":{"module":{"addressRange":"7FFB7C020000","id":"7FFB7C020000","name":"winmm.dll","path":"C:\\Windows\\System32\\winmm.dll","symbolFilePath":"C:\\Windows\\System32\\winmm.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A9365C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {NvCameraAllowlisting64.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A9374C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {NvCameraAllowlisting64.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":105,"event":"module","body":{"module":{"addressRange":"7FFB292B0000","id":"7FFB292B0000","name":"NvCameraAllowlisting64.dll","path":"C:\\Windows\\System32\\DriverStore\\FileRepository\\nvgbdi.inf_amd64_4df27ee1e2afee02\\NvCamera\\NvCameraAllowlisting64.dll","symbolFilePath":"C:\\Windows\\System32\\DriverStore\\FileRepository\\nvgbdi.inf_amd64_4df27ee1e2afee02\\NvCamera\\NvCameraAllowlisting64.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":106,"event":"module","body":{"module":{"addressRange":"7FFB292B0000","id":"7FFB292B0000","name":"NvCameraAllowlisting64.dll","path":"C:\\Windows\\System32\\DriverStore\\FileRepository\\nvgbdi.inf_amd64_4df27ee1e2afee02\\NvCamera\\NvCameraAllowlisting64.dll","symbolFilePath":"C:\\Windows\\System32\\DriverStore\\FileRepository\\nvgbdi.inf_amd64_4df27ee1e2afee02\\NvCamera\\NvCameraAllowlisting64.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A936FC0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A936880 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {d3d12SDKLayers.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A937DC0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {d3d12SDKLayers.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":107,"event":"module","body":{"module":{"addressRange":"7FFB09520000","id":"7FFB09520000","name":"d3d12SDKLayers.dll","path":"C:\\Windows\\System32\\d3d12SDKLayers.dll","symbolFilePath":"C:\\Windows\\System32\\d3d12SDKLayers.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":108,"event":"module","body":{"module":{"addressRange":"7FFB09520000","id":"7FFB09520000","name":"d3d12SDKLayers.dll","path":"C:\\Windows\\System32\\d3d12SDKLayers.dll","symbolFilePath":"C:\\Windows\\System32\\d3d12SDKLayers.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A937D40 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {dxilconv.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A937D00 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {dxilconv.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":109,"event":"module","body":{"module":{"addressRange":"7FFB26650000","id":"7FFB26650000","name":"dxilconv.dll","path":"C:\\Windows\\System32\\dxilconv.dll","symbolFilePath":"C:\\Windows\\System32\\dxilconv.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":110,"event":"module","body":{"module":{"addressRange":"7FFB26650000","id":"7FFB26650000","name":"dxilconv.dll","path":"C:\\Windows\\System32\\dxilconv.dll","symbolFilePath":"C:\\Windows\\System32\\dxilconv.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A937E80 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {D3DSCache.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A937D80 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {D3DSCache.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":111,"event":"module","body":{"module":{"addressRange":"7FFB68FF0000","id":"7FFB68FF0000","name":"D3DSCache.dll","path":"C:\\Windows\\System32\\D3DSCache.dll","symbolFilePath":"C:\\Windows\\System32\\D3DSCache.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":112,"event":"module","body":{"module":{"addressRange":"7FFB68FF0000","id":"7FFB68FF0000","name":"D3DSCache.dll","path":"C:\\Windows\\System32\\D3DSCache.dll","symbolFilePath":"C:\\Windows\\System32\\D3DSCache.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A937900 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {userenv.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A937280 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {userenv.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":113,"event":"module","body":{"module":{"addressRange":"7FFB89880000","id":"7FFB89880000","name":"userenv.dll","path":"C:\\Windows\\System32\\userenv.dll","symbolFilePath":"C:\\Windows\\System32\\userenv.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":114,"event":"module","body":{"module":{"addressRange":"7FFB89880000","id":"7FFB89880000","name":"userenv.dll","path":"C:\\Windows\\System32\\userenv.dll","symbolFilePath":"C:\\Windows\\System32\\userenv.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A937F80 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {twinapi.appcore.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A937180 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {twinapi.appcore.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":115,"event":"module","body":{"module":{"addressRange":"7FFB83070000","id":"7FFB83070000","name":"twinapi.appcore.dll","path":"C:\\Windows\\System32\\twinapi.appcore.dll","symbolFilePath":"C:\\Windows\\System32\\twinapi.appcore.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":116,"event":"module","body":{"module":{"addressRange":"7FFB83070000","id":"7FFB83070000","name":"twinapi.appcore.dll","path":"C:\\Windows\\System32\\twinapi.appcore.dll","symbolFilePath":"C:\\Windows\\System32\\twinapi.appcore.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A937EC0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A937A00 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {d3d10warp.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A937900 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {d3d10warp.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":117,"event":"module","body":{"module":{"addressRange":"7FFB80A40000","id":"7FFB80A40000","name":"d3d10warp.dll","path":"C:\\Windows\\System32\\d3d10warp.dll","symbolFilePath":"C:\\Windows\\System32\\d3d10warp.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":118,"event":"module","body":{"module":{"addressRange":"7FFB80A40000","id":"7FFB80A40000","name":"d3d10warp.dll","path":"C:\\Windows\\System32\\d3d10warp.dll","symbolFilePath":"C:\\Windows\\System32\\d3d10warp.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A9372C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {dxilconv.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":119,"event":"module","body":{"module":{"addressRange":"7FFB26650000","id":"7FFB26650000","name":"dxilconv.dll","path":"C:\\Windows\\System32\\dxilconv.dll","symbolFilePath":"C:\\Windows\\System32\\dxilconv.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A9371C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {dxilconv.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":120,"event":"module","body":{"module":{"addressRange":"7FFB26650000","id":"7FFB26650000","name":"dxilconv.dll","path":"C:\\Windows\\System32\\dxilconv.dll","symbolFilePath":"C:\\Windows\\System32\\dxilconv.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A9377C0 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A936C40 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A936600 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A935F80 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A937900 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A937380 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {gpapi.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A938040 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {gpapi.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":121,"event":"module","body":{"module":{"addressRange":"7FFB882B0000","id":"7FFB882B0000","name":"gpapi.dll","path":"C:\\Windows\\System32\\gpapi.dll","symbolFilePath":"C:\\Windows\\System32\\gpapi.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":122,"event":"module","body":{"module":{"addressRange":"7FFB882B0000","id":"7FFB882B0000","name":"gpapi.dll","path":"C:\\Windows\\System32\\gpapi.dll","symbolFilePath":"C:\\Windows\\System32\\gpapi.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A937880 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {NvCameraAllowlisting64.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A938A00 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {NvCameraAllowlisting64.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":123,"event":"module","body":{"module":{"addressRange":"7FFB292B0000","id":"7FFB292B0000","name":"NvCameraAllowlisting64.dll","path":"C:\\Windows\\System32\\DriverStore\\FileRepository\\nvgbdi.inf_amd64_4df27ee1e2afee02\\NvCamera\\NvCameraAllowlisting64.dll","symbolFilePath":"C:\\Windows\\System32\\DriverStore\\FileRepository\\nvgbdi.inf_amd64_4df27ee1e2afee02\\NvCamera\\NvCameraAllowlisting64.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":124,"event":"module","body":{"module":{"addressRange":"7FFB292B0000","id":"7FFB292B0000","name":"NvCameraAllowlisting64.dll","path":"C:\\Windows\\System32\\DriverStore\\FileRepository\\nvgbdi.inf_amd64_4df27ee1e2afee02\\NvCamera\\NvCameraAllowlisting64.dll","symbolFilePath":"C:\\Windows\\System32\\DriverStore\\FileRepository\\nvgbdi.inf_amd64_4df27ee1e2afee02\\NvCamera\\NvCameraAllowlisting64.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A938B40 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {TextInputFramework.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::debug_session] Debug event: 000001FD6A938280 Event: broadcaster = 000001FD45DB8238 (lldb.target), type = 0x00000002 (modules-loaded), data = {TextInputFramework.dll}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":125,"event":"module","body":{"module":{"addressRange":"7FFB803A0000","id":"7FFB803A0000","name":"TextInputFramework.dll","path":"C:\\Windows\\System32\\TextInputFramework.dll","symbolFilePath":"C:\\Windows\\System32\\TextInputFramework.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2020-12-18T00:35:47Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":126,"event":"module","body":{"module":{"addressRange":"7FFB803A0000","id":"7FFB803A0000","name":"TextInputFramework.dll","path":"C:\\Windows\\System32\\TextInputFramework.dll","symbolFilePath":"C:\\Windows\\System32\\TextInputFramework.dll","symbolStatus":"Symbols loaded."},"reason":"new"}}
thread 'IO Task Pool (3)' panicked at 'called `Result::unwrap()` on an `Err` value: PathLoaderError(NotFound("D:\\.rust\\target\\debug\\examples\\assets\\fonts/FiraSans-Bold.ttf"))', D:\repos\bevyengine\bevy\crates\bevy_asset\src\asset_server.rs:294:60
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
error: breakout.exe :: Class 'concurrent_queue::unbounded::Block>' has a member 'next' of type 'core::sync::atomic::AtomicPtr>>' which does not have a complete definition.
error: breakout.exe :: Class 'std::sync::mpsc::oneshot::MyUpgrade' has a member 'RUST$ENCODED$ENUM$0$NothingSent' of type 'std::sync::mpsc::oneshot::GoUp' which does not have a complete definition.
error: breakout.exe :: Class 'core::sync::atomic::AtomicPtr>>' has a member 'p' of type 'core::cell::UnsafeCell>*>' which does not have a complete definition.
error: breakout.exe :: Class 'std::sync::mpsc::mpsc_queue::Node' has a member 'next' of type 'core::sync::atomic::AtomicPtr>' which does not have a complete definition.
error: breakout.exe :: Class 'core::sync::atomic::AtomicPtr>>' has a member 'p' of type 'core::cell::UnsafeCell>*>' which does not have a complete definition.
error: breakout.exe :: Class 'std::sync::mpsc::mpsc_queue::Node' has a member 'next' of type 'core::sync::atomic::AtomicPtr>' which does not have a complete definition.
error: breakout.exe :: Class 'core::sync::atomic::AtomicPtr>>' has a member 'p' of type 'core::cell::UnsafeCell>*>' which does not have a complete definition.
error: breakout.exe :: Class 'std::sync::mpsc::mpsc_queue::Node' has a member 'next' of type 'core::sync::atomic::AtomicPtr>' which does not have a complete definition.
[2020-12-18T00:35:58Z DEBUG codelldb::debug_session] Debug event: 000001FD61AA3CF0 Event: broadcaster = 000001FD61D3FAB8 (lldb.process), type = 0x00000001 (state-changed), data = { process = 000001FD61D3FA90 (pid = 1420), state = stopped}
[2020-12-18T00:35:58Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":127,"event":"stopped","body":{"allThreadsStopped":true,"reason":"breakpoint","threadId":7384}}
[2020-12-18T00:35:58Z DEBUG codelldb::dap_codec] --> {"command":"threads","type":"request","seq":9}
[2020-12-18T00:35:58Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":9,"success":true,"command":"threads","body":{"threads":[{"id":3020,"name":"2: tid=3020"},{"id":3288,"name":"3: tid=3288"},{"id":13788,"name":"1: tid=13788"},{"id":18044,"name":"4: tid=18044"},{"id":2224,"name":"39: tid=2224"},{"id":2848,"name":"37: tid=2848"},{"id":2872,"name":"5: tid=2872"},{"id":3304,"name":"25: tid=3304"},{"id":5916,"name":"27: tid=5916"},{"id":6568,"name":"16: tid=6568"},{"id":7384,"name":"8: tid=7384"},{"id":9804,"name":"28: tid=9804"},{"id":10436,"name":"23: tid=10436"},{"id":10748,"name":"40: tid=10748"},{"id":13532,"name":"18: tid=13532"},{"id":15180,"name":"17: tid=15180"},{"id":15748,"name":"14: tid=15748"},{"id":16788,"name":"29: tid=16788"},{"id":16868,"name":"24: tid=16868"},{"id":18300,"name":"21: tid=18300"},{"id":19300,"name":"13: tid=19300"},{"id":20820,"name":"30: tid=20820"},{"id":22708,"name":"15: tid=22708"},{"id":23004,"name":"12: tid=23004"},{"id":23288,"name":"9: tid=23288"},{"id":23932,"name":"7: tid=23932"},{"id":23984,"name":"20: tid=23984"},{"id":24676,"name":"36: tid=24676"},{"id":25932,"name":"6: tid=25932"},{"id":27296,"name":"10: tid=27296"},{"id":28056,"name":"38: tid=28056"},{"id":28884,"name":"22: tid=28884"},{"id":29272,"name":"19: tid=29272"},{"id":29324,"name":"11: tid=29324"}]}}
[2020-12-18T00:35:58Z DEBUG codelldb::dap_codec] --> {"command":"stackTrace","arguments":{"threadId":7384,"startFrame":0,"levels":1},"type":"request","seq":10}
error: breakout.exe :: Class 'concurrent_queue::unbounded::Block' has a member 'next' of type 'core::sync::atomic::AtomicPtr>' which does not have a complete definition.
error: breakout.exe :: Class 'async_executor::{{impl}}::tick::generator-0' has a member 'pinned' of type 'core::future::from_generator::GenFuture' which does not have a complete definition.
[2020-12-18T00:36:19Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":10,"success":true,"command":"stackTrace","body":{"stackFrames":[{"column":0,"id":1001,"line":637,"name":"void std::panicking::rust_panic()","source":{"name":"panicking.rs","path":"D:\\.rust\\rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\src\\rust\\library\\std\\src\\panicking.rs"}}],"totalFrames":36}}
[2020-12-18T00:36:19Z DEBUG codelldb::dap_codec] --> {"command":"stackTrace","arguments":{"threadId":7384,"startFrame":1,"levels":19},"type":"request","seq":11}
[2020-12-18T00:36:19Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":11,"success":true,"command":"stackTrace","body":{"stackFrames":[{"column":0,"id":1002,"line":610,"name":"void std::panicking::rust_panic_with_hook()","source":{"name":"panicking.rs","path":"D:\\.rust\\rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\src\\rust\\library\\std\\src\\panicking.rs"}},{"column":0,"id":1003,"line":497,"name":"static void std::panicking::begin_panic_handler::{{closure}}()","source":{"name":"panicking.rs","path":"D:\\.rust\\rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\src\\rust\\library\\std\\src\\panicking.rs"}},{"column":0,"id":1004,"line":141,"name":"static void std::sys_common::backtrace::__rust_end_short_backtrace()","source":{"name":"backtrace.rs","path":"D:\\.rust\\rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\src\\rust\\library\\std\\src\\sys_common\\backtrace.rs"}},{"column":0,"id":1005,"line":493,"name":"void std::panicking::begin_panic_handler()","source":{"name":"panicking.rs","path":"D:\\.rust\\rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\src\\rust\\library\\std\\src\\panicking.rs"}},{"column":0,"id":1006,"line":92,"name":"void core::panicking::panic_fmt()","source":{"name":"panicking.rs","path":"D:\\.rust\\rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\src\\rust\\library\\core\\src\\panicking.rs"}},{"column":0,"id":1007,"line":1268,"name":"void core::option::expect_none_failed()","source":{"name":"option.rs","path":"D:\\.rust\\rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\src\\rust\\library\\core\\src\\option.rs"}},{"column":0,"id":1008,"line":973,"name":"struct bevy_asset::path::AssetPathId core::result::Result::unwrap(union core::result::Result, struct core::panic::Location *)","source":{"name":"result.rs","path":"D:\\.rust\\rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\src\\rust\\library\\core\\src\\result.rs"}},{"column":0,"id":1009,"line":294,"name":"core::ops::generator::GeneratorState bevy_asset::asset_server::{{impl}}::load_untracked::{{closure}}(struct core::pin::Pin, struct core::future::ResumeTy)","source":{"name":"asset_server.rs","path":"D:\\repos\\bevyengine\\bevy\\crates\\bevy_asset\\src\\asset_server.rs"}},{"column":0,"id":1010,"line":80,"name":"core::task::poll::Poll core::future::from_generator::{{impl}}::poll(struct core::pin::Pin*>, struct core::task::wake::Context *)","source":{"name":"mod.rs","path":"D:\\.rust\\rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\src\\rust\\library\\core\\src\\future\\mod.rs"}},{"column":0,"id":1011,"line":138,"name":"core::ops::generator::GeneratorState async_executor::{{impl}}::spawn::{{closure}},core::future::from_generator::GenFuture>(struct core::pin::Pin, struct core::future::ResumeTy)","source":{"name":"lib.rs","path":"D:\\.rust\\cargo\\registry\\src\\github.com-1ecc6299db9ec823\\async-executor-1.4.0\\src\\lib.rs"}},{"column":0,"id":1012,"line":80,"name":"core::task::poll::Poll core::future::from_generator::{{impl}}::poll(struct core::pin::Pin*>, struct core::task::wake::Context *)","source":{"name":"mod.rs","path":"D:\\.rust\\rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\src\\rust\\library\\core\\src\\future\\mod.rs"}},{"column":0,"id":1013,"line":489,"name":"static bool async_task::raw::RawTask, tuple<>, closure-0>::run,tuple<>,closure-0>()","source":{"name":"raw.rs","path":"D:\\.rust\\cargo\\registry\\src\\github.com-1ecc6299db9ec823\\async-task-4.0.3\\src\\raw.rs"}},{"column":0,"id":1014,"line":309,"name":"bool async_task::runnable::Runnable::run(struct async_task::runnable::Runnable)","source":{"name":"runnable.rs","path":"D:\\.rust\\cargo\\registry\\src\\github.com-1ecc6299db9ec823\\async-task-4.0.3\\src\\runnable.rs"}},{"column":0,"id":1015,"line":229,"name":"union core::ops::generator::GeneratorState, core::result::Result, async_channel::RecvError>> async_executor::{{impl}}::run::{{closure}}::{{closure}}, async_channel::RecvError>,core::future::from_generator::GenFuture>(struct core::pin::Pin, struct core::future::ResumeTy)","source":{"name":"lib.rs","path":"D:\\.rust\\cargo\\registry\\src\\github.com-1ecc6299db9ec823\\async-executor-1.4.0\\src\\lib.rs"}},{"column":0,"id":1016,"line":80,"name":"union core::task::poll::Poll, async_channel::RecvError>> core::future::from_generator::{{impl}}::poll(struct core::pin::Pin*>, struct core::task::wake::Context *)","source":{"name":"mod.rs","path":"D:\\.rust\\rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\src\\rust\\library\\core\\src\\future\\mod.rs"}},{"column":0,"id":1017,"line":529,"name":"union core::task::poll::Poll, async_channel::RecvError>> futures_lite::future::{{impl}}::poll, async_channel::RecvError>,core::future::from_generator::GenFuture,core::future::from_generator::GenFuture>(struct core::pin::Pin, core::future::from_generator::GenFuture>*>, struct core::task::wake::Context *)","source":{"name":"future.rs","path":"D:\\.rust\\cargo\\registry\\src\\github.com-1ecc6299db9ec823\\futures-lite-1.11.2\\src\\future.rs"}},{"column":0,"id":1018,"line":236,"name":"union core::ops::generator::GeneratorState, core::result::Result, async_channel::RecvError>> async_executor::{{impl}}::run::{{closure}}, async_channel::RecvError>,core::future::from_generator::GenFuture>(struct core::pin::Pin, struct core::future::ResumeTy)","source":{"name":"lib.rs","path":"D:\\.rust\\cargo\\registry\\src\\github.com-1ecc6299db9ec823\\async-executor-1.4.0\\src\\lib.rs"}},{"column":0,"id":1019,"line":80,"name":"union core::task::poll::Poll, async_channel::RecvError>> core::future::from_generator::{{impl}}::poll(struct core::pin::Pin*>, struct core::task::wake::Context *)","source":{"name":"mod.rs","path":"D:\\.rust\\rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\src\\rust\\library\\core\\src\\future\\mod.rs"}},{"column":0,"id":1020,"line":89,"name":"core::result::Result futures_lite::future::block_on::{{closure}}, async_channel::RecvError>,core::future::from_generator::GenFuture>(struct futures_lite::future::block_on::closure-0, struct core::cell::RefCell> *)","source":{"name":"future.rs","path":"D:\\.rust\\cargo\\registry\\src\\github.com-1ecc6299db9ec823\\futures-lite-1.11.2\\src\\future.rs"}}],"totalFrames":36}}
[2020-12-18T00:36:19Z DEBUG codelldb::dap_codec] --> {"command":"scopes","arguments":{"frameId":1001},"type":"request","seq":12}
[2020-12-18T00:36:19Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":12,"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}]}}
[2020-12-18T00:36:19Z DEBUG codelldb::dap_codec] --> {"command":"variables","arguments":{"variablesReference":1021},"type":"request","seq":13}
[2020-12-18T00:36:20Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":13,"success":true,"command":"variables","body":{"variables":[]}}

This can be most easily reproduced by cloning the bevy repo and running the breakout example via the debugger.

        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug example 'breakout'",
            "cargo": {
                "args": [
                    "build",
                    "--example=breakout",
                    "--package=bevy"
                ],
                "filter": {
                    "name": "breakout",
                    "kind": "example"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}",
        }

This does not seem to be an issue for smaller projects, so perhaps this is related to startup time? My trivial playground works just fine (there Listening on port 55492 and --port=55494 it seems, so that's not the issue, I suppose.)

Debugging itself seems to work fine, it's just the stdio redirection that is not working.

(Panic in bevy example is due to working directory shenanigans, and is more likely a bevy issue.)

@vadimcn
Copy link
Owner

vadimcn commented Dec 28, 2020

CodeLLDB runs a copy of itself in the terminal to figure out which console to attach stdio to. This information is then communicated back to the main instance via that second port you are seeing (the first port is where VSCode attaches to control the debug session). Do you see this "terminal agent" instance starting in the terminal? Does it report any errors?

I've seen reports of this behavior before, but was never able to reproduce locally. I was not able to compile the breakout example because of some errors about missing "__GSHandlerCheck_EH4" symbol, but I doubt it's related to a specific debuggee, and more likely something to do with debugger startup timing.

@CAD97
Copy link
Author

CAD97 commented Dec 29, 2020

Failure is inconsistent on my machine as well. It almost certainly has to do with startup timing, and something timing out. It definitely fails more often when something is multitasking, and less often when starting up the debug is the only thing going on.

By launching with "terminal": "external", I see exactly nothing in the external terminal; just "Press any key to continue...".
image

Using the integrated terminal, command history shows the command run as & 'c:\Users\CAD\.vscode\extensions\vadimcn.vscode-lldb-1.6.1\adapter\codelldb.exe' 'terminal-agent' '--port=64721' and a $LASTEXITCODE of 0 (unfortunately). Attempting to manually run the command from command history gives "connection actively refused".

@vadimcn vadimcn added the help wanted I am not likely to be able to investigate this issue or implement a solution. Please help! label Apr 17, 2021
@Sheepyhead
Copy link

Sheepyhead commented Aug 22, 2021

I'm experiencing this exact issue with a bevy project too. The odd thing is that in two of my projects this does not happen but in other projects it does. I've tried switching between nightly and stable rust, recompiling, reloading, all terminal settings, nothing seems to be able to fix this it just... happens to some projects and not others. I could not tell you the difference other than that they're different projects in different locations configured exactly the same

Edit: I tried creating a completely fresh project and this seems to happen only when I add the DefaultPlugins, but I also add those in the projects where it works correctly, so I'm pretty stumped at what could cause this to happen

Edit 2: It started randomly working after I commented out some code, got a panic on run, added the code back in, and now it works. Seems like this might be a really convoluted edge case

@vadimcn
Copy link
Owner

vadimcn commented Sep 11, 2021

Just fixed something while investigating another bug, wondering if it was the root cause of this one as well. Can you try this build?

@vadimcn vadimcn added the waiting for info Waiting for the issue author to provide more information. label Sep 14, 2021
@amyspark
Copy link

amyspark commented Apr 6, 2022

Can confirm it's happening with MSYS Clang 13.0.1 and CodeLLDB 1.7.0. Having a working cout is almost impossible.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help wanted I am not likely to be able to investigate this issue or implement a solution. Please help! waiting for info Waiting for the issue author to provide more information.
Projects
None yet
Development

No branches or pull requests

4 participants