microsoft / vscode-cpptools

Official repository for the Microsoft C/C++ extension for VS Code.
Other
5.51k stars 1.55k forks source link

BP cannot stop program in cygwin environment #9242

Open Yb2S3 opened 2 years ago

Yb2S3 commented 2 years ago

Environment

Bug Summary and Steps to Reproduce

Bug Summary:

Debugger Configurations

launch.json

{
  "version": "0.2.0",
  "configurations": [
      {
          "name": "(gdb) Launch",
          "type": "cppdbg",
          "request": "launch",
          "targetArchitecture": "x86",
          "program": "${workspaceFolder}/${fileBasenameNoExtension}.exe",
          "args": [],
          "stopAtEntry": false,
          "cwd": "${workspaceFolder}",
          "environment": [],
          "externalConsole": true,
          "MIMode": "gdb",
          "miDebuggerPath": "c:\\cygwin64\\bin\\gdb.exe",
          "setupCommands": [
              {
                  "description": "Enable pretty-printing for gdb",
                  "text": "-enable-pretty-printing",
                  "ignoreFailures": true
              },
              {
                "description":  "set disassembly-flavor as Intel",
                "text": "-gdb-set disassembly-flavor intel",
                "ignoreFailures": true
              }
          ],
          "preLaunchTask": "complie"
      }
  ]
}

tasks.json:

{
  "version": "2.0.0",
  "tasks": [
    {
      "label": "complie",
      "type": "cppbuild",
      "command": "g++",
      "args": [
        "-fdiagnostics-color=always",
        "-g",
        "${file}",
        "-o",
        "${fileDirname}\\${fileBasenameNoExtension}.exe"
      ],
      "presentation": {
        "reveal": "silent"
      },
      "problemMatcher": {
        "owner": "cpp",
        "fileLocation": [
          "relative",
          "${workspaceRoot}"
        ],
        "pattern": {
          "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
          "file": 1,
          "line": 2,
          "column": 3,
          "severity": 4,
          "message": 5
        }
      },
      "options": {
        "cwd": "${workspaceFolder}"
      },
      "group": {
        "kind": "build",
        "isDefault": true
      },
      "detail": "c:\\cygwin64\\bin\\g++.exe"
    }
  ]
}

Debugger Logs

DEBUG CONSOLE:
=thread-group-added,id="i1"
GNU gdb (GDB) (Cygwin 10.2-1) 10.2
Copyright (C) 2021 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "x86_64-pc-cygwin".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<https://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
    <http://www.gnu.org/software/gdb/documentation/>.

For help, type "help".
Type "apropos word" to search for commands related to "word".
=cmd-param-changed,param="pagination",value="off"
[New Thread 12460.0x56e0]
[New Thread 12460.0x3d28]
=library-unloaded,id="/cygdrive/c/windows/System32/umppc15005.dll",target-name="/cygdrive/c/windows/System32/umppc15005.dll",host-name="/cygdrive/c/windows/System32/umppc15005.dll",thread-group="i1"
[New Thread 12460.0x5004]
[New Thread 12460.0x53f4]

Thread 1 "test_c" hit Breakpoint 1, main () at C:\Users\yi.liu\Desktop\MyProjects\C_CPP\test_c.c:5
Loaded '/cygdrive/c/windows/SYSTEM32/ntdll.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/KERNEL32.DLL'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/KERNELBASE.dll'. Symbols loaded.
Loaded '/usr/bin/cygwin1.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/advapi32.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/msvcrt.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/sechost.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/RPCRT4.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/SYSTEM32/CRYPTBASE.DLL'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/bcryptPrimitives.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/umppc15005.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/system32/netapi32.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/SYSTEM32/LOGONCLI.DLL'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/ucrtbase.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/SYSTEM32/NETUTILS.DLL'. Symbols loaded.
Loaded '/cygdrive/c/windows/SYSTEM32/SAMCLI.DLL'. Symbols loaded.
Loaded '/cygdrive/c/windows/SYSTEM32/SAMLIB.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/wldap32.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/WS2_32.DLL'. Symbols loaded.
Loaded '/cygdrive/c/windows/system32/mswsock.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/SYSTEM32/SspiCli.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/user32.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/win32u.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/GDI32.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/gdi32full.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/msvcp_win.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/IMM32.DLL'. Symbols loaded.
[Thread 12460.0x346c exited with code 0]
[Thread 12460.0x3d28 exited with code 0]
[Thread 12460.0x56e0 exited with code 0]
[Thread 12460.0x53f4 exited with code 0]
[Inferior 1 (process 12460) exited normally]
The program 'C:\Users\Administrator\Desktop\MyProjects\C_CPP/test_c.exe' has exited with code 0 (0x00000000).

Other Extensions

Additional Information

vscode's settings.json

{
    "terminal.integrated.profiles.windows": {
        "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe (migrated)": {
            "path": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
            "args": []
        }
    },
    "terminal.integrated.defaultProfile.windows": "Windows PowerShell",
    "editor.fontFamily": "'Inconsolata', 'Fira Code', monospace",
    "workbench.iconTheme": "vscode-icons",
    "editor.suggestSelection": "first",
    "debug.console.fontFamily": "'Inconsolata', 'Fira Code', monospace",
    "debug.console.fontSize": 16,
    "scm.inputFontFamily": "'Fira Code Medium', 'Courier New', monospace",
    "terminal.integrated.fontFamily": "'Inconsolata', 'Fira Code', monospace",
    "terminal.integrated.fontSize": 16,
    "json.maxItemsComputed": 1e+240,
    "javascript.updateImportsOnFileMove.enabled": "always",
    "explorer.confirmDelete": false,
    "workbench.editor.showTabs": true,
    "workbench.editor.enablePreview": true,
    "workbench.editor.pinnedTabSizing": "compact",
    "[javascript]": {
        "editor.defaultFormatter": "vscode.typescript-language-features"
    },
    "workbench.colorTheme": "Default Light+",
    "files.associations": {
        "*.cjson": "jsonc",
        "*.wxss": "css",
        "*.wxs": "javascript"
    },
    "emmet.includeLanguages": {
        "wxml": "html"
    },
    "remote.SSH.remotePlatform": {
        "app-nlu-releng": "linux",
        "jenkins-slave-05.crg.cerence.net": "linux"
    },
    "security.workspace.trust.untrustedFiles": "open",
    "settingsSync.ignoredSettings": [
        "-C_Cpp.default.includePath"
    ],
    "C_Cpp.default.includePath": [
        "C:\\cygwin64\\usr\\include"
    ],
    "editor.fontSize": 16,
    "workbench.startupEditor": "none",
    "editor.fontLigatures": false,
    "editor.fontWeight": 600,
    "debug.onTaskErrors": "showErrors",
    "debug.allowBreakpointsEverywhere": true,
    "C_Cpp.debugShortcut": true,
    "debug.showInlineBreakpointCandidates": false,
}
Yb2S3 commented 2 years ago

I have run successfully long time ago, but recently I cannot debug my c/cpp with vscode. I have no idea about which has been changed.

WardenGnaw commented 2 years ago

Can you add the following "logging": { "engineLogging": true, "trace": true, "traceResponse": true } to your launch.json file and share the new output?

Yb2S3 commented 2 years ago

Can you add the following "logging": { "engineLogging": true, "trace": true, "traceResponse": true } to your launch.json file and share the new output?

Of course. Here's my new launch.json, I just add the new one before "preLaunchTask", see

......
"setupCommands": [
              {
                  "description": "Enable pretty-printing for gdb",
                  "text": "-enable-pretty-printing",
                  "ignoreFailures": true
              },
              {
                "description":  "set disassembly-flavor as Intel",
                "text": "-gdb-set disassembly-flavor intel",
                "ignoreFailures": true
              }
          ],
          "logging": { "engineLogging": true, "trace": true, "traceResponse": true },
          "preLaunchTask": "complie"

After run debug, the debug console shows:

=thread-group-added,id="i1"
GNU gdb (GDB) (Cygwin 10.2-1) 10.2
Copyright (C) 2021 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "x86_64-pc-cygwin".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<https://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
    <http://www.gnu.org/software/gdb/documentation/>.

For help, type "help".
Type "apropos word" to search for commands related to "word".
Warning: Debuggee TargetArchitecture not detected, assuming x86_64.
=cmd-param-changed,param="pagination",value="off"
[New Thread 15408.0x31bc]
[New Thread 15408.0x32f8]
[New Thread 15408.0x1d1c]
=library-unloaded,id="/cygdrive/c/windows/System32/umppc15005.dll",target-name="/cygdrive/c/windows/System32/umppc15005.dll",host-name="/cygdrive/c/windows/System32/umppc15005.dll",thread-group="i1"
[New Thread 15408.0x2b00]
[New Thread 15408.0x59ac]

Thread 1 "hello" hit Breakpoint 1, main () at C:\Users\tommy\Desktop\MyProjects\C_CPP\.vscode\hello.cpp:7
Loaded '/cygdrive/c/windows/SYSTEM32/ntdll.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/KERNEL32.DLL'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/KERNELBASE.dll'. Symbols loaded.
Loaded '/usr/bin/cygstdc++-6.dll'. Symbols loaded.
Loaded '/usr/bin/cygwin1.dll'. Symbols loaded.
Loaded '/usr/bin/cyggcc_s-seh-1.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/advapi32.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/msvcrt.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/sechost.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/RPCRT4.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/SYSTEM32/CRYPTBASE.DLL'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/bcryptPrimitives.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/umppc15005.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/system32/netapi32.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/SYSTEM32/LOGONCLI.DLL'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/ucrtbase.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/SYSTEM32/NETUTILS.DLL'. Symbols loaded.
Loaded '/cygdrive/c/windows/SYSTEM32/SAMCLI.DLL'. Symbols loaded.
Loaded '/cygdrive/c/windows/SYSTEM32/SAMLIB.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/wldap32.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/System32/WS2_32.DLL'. Symbols loaded.
Loaded '/cygdrive/c/windows/system32/mswsock.dll'. Symbols loaded.
Loaded '/cygdrive/c/windows/SYSTEM32/SspiCli.dll'. Symbols loaded.
Hello, this is CPP program!!!
[Thread 15408.0x1d1c exited with code 0]
[Thread 15408.0x31bc exited with code 0]
[Thread 15408.0x59ac exited with code 0]
[Thread 15408.0x32f8 exited with code 0]
[Thread 15408.0x2e7c exited with code 0]
[Inferior 1 (process 15408) exited normally]
The program 'c:\Users\tommy\Desktop\MyProjects\C_CPP\.vscode\hello.exe' has exited with code 0 (0x00000000).

And the terminal is:

PS C:\Users\tommy\Desktop\MyProjects\C_CPP>  & 'c:\Users\tommy\.vscode\extensions\ms-vscode.cpptools-1.9.8-win32-x64\debugAdapters\bin\WindowsDebugLauncher.exe' '--stdin=Microsoft-MIEngine-In-znmfqzu4.i5q' '--stdout=Microsoft-MIEngine-Out-whq0dhxo.euw' '--stderr=Microsoft-MIEngine-Error-3vwqvqqz.uos' '--pid=Microsoft-MIEngine-Pid-f0q1wlhx.qvl' '--dbgExe=C:\cygwin64\bin\gdb.exe' '--interpreter=mi'

And when the program exited, I click "gdb launch" on the bottom, and see the following new messages:

--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (88) LaunchOptions{\"name\":\"(gdb) Launch\",\"type\":\"cppdbg\",\"request\":\"launch\",\"targetArchitecture\":\"x86\",\"program\":\"C:\\\\Users\\\\tommy\\\\Desktop\\\\MyProjects\\\\C_CPP/hello.exe\",\"args\":[],\"stopAtEntry\":false,\"cwd\":\"C:\\\\Users\\\\tommy\\\\Desktop\\\\MyProjects\\\\C_CPP\",\"environment\":[],\"externalConsole\":true,\"MIMode\":\"gdb\",\"miDebuggerPath\":\"c:\\\\cygwin64\\\\bin\\\\gdb.exe\",\"setupCommands\":[{\"description\":\"Enable pretty-printing for gdb\",\"text\":\"-enable-pretty-printing\",\"ignoreFailures\":true},{\"description\":\"set disassembly-flavor as Intel\",\"text\":\"-gdb-set disassembly-flavor intel\",\"ignoreFailures\":true}],\"logging\":{\"engineLogging\":true,\"trace\":true,\"traceResponse\":true},\"preLaunchTask\":\"complie\",\"__configurationTarget\":5,\"__sessionId\":\"2197bfff-357f-41b5-8701-f5ce8d204ea2\"}\r\n"},"seq":2}
1: (88) LaunchOptions{"name":"(gdb) Launch","type":"cppdbg","request":"launch","targetArchitecture":"x86","program":"C:\\Users\\tommy\\Desktop\\MyProjects\\C_CPP/hello.exe","args":[],"stopAtEntry":false,"cwd":"C:\\Users\\tommy\\Desktop\\MyProjects\\C_CPP","environment":[],"externalConsole":true,"MIMode":"gdb","miDebuggerPath":"c:\\cygwin64\\bin\\gdb.exe","setupCommands":[{"description":"Enable pretty-printing for gdb","text":"-enable-pretty-printing","ignoreFailures":true},{"description":"set disassembly-flavor as Intel","text":"-gdb-set disassembly-flavor intel","ignoreFailures":true}],"logging":{"engineLogging":true,"trace":true,"traceResponse":true},"preLaunchTask":"complie","__configurationTarget":5,"__sessionId":"2197bfff-357f-41b5-8701-f5ce8d204ea2"}
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (136) Starting: \"c:\\cygwin64\\bin\\gdb.exe\" --interpreter=mi\r\n"},"seq":4}
1: (136) Starting: "c:\cygwin64\bin\gdb.exe" --interpreter=mi
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (154) DebuggerPid=22752\r\n"},"seq":6}
1: (154) DebuggerPid=22752
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (344) ->=thread-group-added,id=\"i1\"\r\n"},"seq":8}
1: (344) ->=thread-group-added,id="i1"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (345) ->~\"GNU gdb (GDB) (Cygwin 10.2-1) 10.2\\n\"\r\n"},"seq":10}
1: (345) ->~"GNU gdb (GDB) (Cygwin 10.2-1) 10.2\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (346) ->~\"Copyright (C) 2021 Free Software Foundation, Inc.\\n\"\r\n"},"seq":12}
1: (346) ->~"Copyright (C) 2021 Free Software Foundation, Inc.\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (346) ->~\"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\\nThis is free software: you are free to change and redistribute it.\\nThere is NO WARRANTY, to the extent permitted by law.\"\r\n"},"seq":14}
1: (346) ->~"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\nThis is free software: you are free to change and redistribute it.\nThere is NO WARRANTY, to the extent permitted by law."
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (346) ->~\"\\nType \\\"show copying\\\" and \\\"show warranty\\\" for details.\\n\"\r\n"},"seq":16}
1: (346) ->~"\nType \"show copying\" and \"show warranty\" for details.\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (346) ->~\"This GDB was configured as \\\"x86_64-pc-cygwin\\\".\\n\"\r\n"},"seq":18}
1: (346) ->~"This GDB was configured as \"x86_64-pc-cygwin\".\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (346) ->~\"Type \\\"show configuration\\\" for configuration details.\\n\"\r\n"},"seq":20}
1: (346) ->~"Type \"show configuration\" for configuration details.\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (346) ->~\"For bug reporting instructions, please see:\\n\"\r\n"},"seq":22}
1: (346) ->~"For bug reporting instructions, please see:\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (346) ->~\"<https://www.gnu.org/software/gdb/bugs/>.\\n\"\r\n"},"seq":24}
1: (346) ->~"<https://www.gnu.org/software/gdb/bugs/>.\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (346) ->~\"Find the GDB manual and other documentation resources online at:\\n    <http://www.gnu.org/software/gdb/documentation/>.\"\r\n"},"seq":26}
1: (346) ->~"Find the GDB manual and other documentation resources online at:\n    <http://www.gnu.org/software/gdb/documentation/>."
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (346) ->~\"\\n\\n\"\r\n"},"seq":28}
1: (346) ->~"\n\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (346) ->~\"For help, type \\\"help\\\".\\n\"\r\n"},"seq":30}
1: (346) ->~"For help, type \"help\".\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (346) ->~\"Type \\\"apropos word\\\" to search for commands related to \\\"word\\\".\\n\"\r\n"},"seq":32}
1: (346) ->~"Type \"apropos word\" to search for commands related to \"word\".\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (346) ->(gdb)\r\n"},"seq":34}
1: (346) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (351) <-1001-gdb-set mi-async on\r\n"},"seq":36}
1: (351) <-1001-gdb-set mi-async on
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (365) ->1001^done\r\n"},"seq":38}
1: (365) ->1001^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (365) ->(gdb)\r\n"},"seq":40}
1: (365) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (366) ->&\"\\n\"\r\n"},"seq":42}
1: (366) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (366) ->^done\r\n"},"seq":44}
1: (366) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (366) ->(gdb)\r\n"},"seq":46}
1: (366) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (368) 1001: elapsed time 17\r\n"},"seq":48}
1: (368) 1001: elapsed time 17
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (371) <-1002-interpreter-exec console \"show configuration\"\r\n"},"seq":50}
1: (371) <-1002-interpreter-exec console "show configuration"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (385) ->~\"This GDB was configured as follows:\\n   configure --host=\"\r\n"},"seq":52}
1: (385) ->~"This GDB was configured as follows:\n   configure --host="
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (386) ->~\"x86_64-pc-cygwin --target=x86_64-pc-cygwin\\n\"\r\n"},"seq":54}
1: (386) ->~"x86_64-pc-cygwin --target=x86_64-pc-cygwin\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (386) ->~\"             --with-auto-load-dir=$debugdir:$datadir/auto-load\\n             --with-auto-load-safe-path=\"\r\n"},"seq":56}
1: (386) ->~"             --with-auto-load-dir=$debugdir:$datadir/auto-load\n             --with-auto-load-safe-path="
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (386) ->~\"$debugdir:$datadir/auto-load\\n\"\r\n"},"seq":58}
1: (386) ->~"$debugdir:$datadir/auto-load\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (386) ->~\"             --with-expat\\n\"\r\n"},"seq":60}
1: (386) ->~"             --with-expat\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (386) ->~\"             --with-gdb-datadir=/usr/share/gdb (relocatable)\\n\"\r\n"},"seq":62}
1: (386) ->~"             --with-gdb-datadir=/usr/share/gdb (relocatable)\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (388) ->~\"             --with-jit-reader-dir=/usr/lib/gdb (relocatable)\\n\"\r\n"},"seq":64}
1: (388) ->~"             --with-jit-reader-dir=/usr/lib/gdb (relocatable)\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (388) ->~\"             --without-libunwind-ia64\\n\"\r\n"},"seq":66}
1: (388) ->~"             --without-libunwind-ia64\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (388) ->~\"             --with-lzma\\n\"\r\n"},"seq":68}
1: (388) ->~"             --with-lzma\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (388) ->~\"             --without-babeltrace\\n\"\r\n"},"seq":70}
1: (388) ->~"             --without-babeltrace\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (388) ->~\"             --without-intel-pt\\n\"\r\n"},"seq":72}
1: (388) ->~"             --without-intel-pt\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (388) ->~\"             --with-mpfr\\n\"\r\n"},"seq":74}
1: (388) ->~"             --with-mpfr\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (388) ->~\"             --without-xxhash\\n\"\r\n"},"seq":76}
1: (388) ->~"             --without-xxhash\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (389) ->~\"             --with-python=/usr (relocatable)\\n\"\r\n"},"seq":78}
1: (389) ->~"             --with-python=/usr (relocatable)\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (389) ->~\"             --with-python-libdir=/usr/lib (relocatable)\\n\"\r\n"},"seq":80}
1: (389) ->~"             --with-python-libdir=/usr/lib (relocatable)\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (389) ->~\"             --without-debuginfod\\n\"\r\n"},"seq":82}
1: (389) ->~"             --without-debuginfod\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (389) ->~\"             --without-guile\\n\"\r\n"},"seq":84}
1: (389) ->~"             --without-guile\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (389) ->~\"             --enable-source-highlight\\n\"\r\n"},"seq":86}
1: (389) ->~"             --enable-source-highlight\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (389) ->~\"             --with-separate-debug-dir=/usr/lib/debug (relocatable)\\n\"\r\n"},"seq":88}
1: (389) ->~"             --with-separate-debug-dir=/usr/lib/debug (relocatable)\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (389) ->~\"\\n(\\\"Relocatable\\\" means the directory can be moved with the GDB installation\\ntree, and GDB will still find it.)\\n\"\r\n"},"seq":90}
1: (389) ->~"\n(\"Relocatable\" means the directory can be moved with the GDB installation\ntree, and GDB will still find it.)\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (389) ->1002^done\r\n"},"seq":92}
1: (389) ->1002^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (389) ->(gdb)\r\n"},"seq":94}
1: (389) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (389) ->&\"\\n\"\r\n"},"seq":96}
1: (389) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (389) 1002: elapsed time 18\r\n"},"seq":98}
1: (389) 1002: elapsed time 18
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (389) ->^done\r\n"},"seq":100}
1: (389) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (389) ->(gdb)\r\n"},"seq":102}
1: (389) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"telemetry","output":"VS/Diagnostics/Debugger/MIEngine/WindowsRuntime","data":{"VS.Diagnostics.Debugger.MIEngine.WindowsRuntime":"Cygwin"}},"seq":104}
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (575) <-1003-enable-pretty-printing\r\n"},"seq":106}
1: (575) <-1003-enable-pretty-printing
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (588) ->1003^done\r\n"},"seq":108}
1: (588) ->1003^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (589) ->(gdb)\r\n"},"seq":110}
1: (589) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (589) 1003: elapsed time 14\r\n"},"seq":112}
1: (589) 1003: elapsed time 14
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (590) <-1004-gdb-set disassembly-flavor intel\r\n"},"seq":114}
1: (590) <-1004-gdb-set disassembly-flavor intel
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (589) ->&\"\\n\"\r\n"},"seq":116}
1: (589) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (590) ->^done\r\n"},"seq":118}
1: (590) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (590) ->(gdb)\r\n"},"seq":120}
1: (590) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (603) ->1004^done\r\n"},"seq":122}
1: (603) ->1004^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (603) ->(gdb)\r\n"},"seq":124}
1: (603) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (603) 1004: elapsed time 13\r\n"},"seq":126}
1: (603) 1004: elapsed time 13
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (604) <-1005-interpreter-exec console \"set pagination off\"\r\n"},"seq":128}
1: (604) <-1005-interpreter-exec console "set pagination off"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (603) ->&\"\\n\"\r\n"},"seq":130}
1: (603) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (604) ->^done\r\n"},"seq":132}
1: (604) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (604) ->(gdb)\r\n"},"seq":134}
1: (604) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (619) ->=cmd-param-changed,param=\"pagination\",value=\"off\"\r\n"},"seq":136}
1: (619) ->=cmd-param-changed,param="pagination",value="off"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (619) ->1005^done\r\n"},"seq":138}
1: (619) ->1005^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (619) ->(gdb)\r\n"},"seq":140}
1: (619) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (619) 1005: elapsed time 15\r\n"},"seq":142}
1: (619) 1005: elapsed time 15
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (619) ->&\"\\n\"\r\n"},"seq":144}
1: (619) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (620) ->^done\r\n"},"seq":146}
1: (620) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (620) ->(gdb)\r\n"},"seq":148}
1: (620) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (619) <-1006-gdb-set auto-solib-add on\r\n"},"seq":150}
1: (619) <-1006-gdb-set auto-solib-add on
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (632) ->1006^done\r\n"},"seq":152}
1: (632) ->1006^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (632) ->(gdb)\r\n"},"seq":154}
1: (632) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (632) 1006: elapsed time 13\r\n"},"seq":156}
1: (632) 1006: elapsed time 13
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (633) <-1007-gdb-set solib-search-path /cygdrive/c/Users/tommy/Desktop/MyProjects/C_CPP:\r\n"},"seq":158}
1: (633) <-1007-gdb-set solib-search-path /cygdrive/c/Users/tommy/Desktop/MyProjects/C_CPP:
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (633) ->&\"\\n\"\r\n"},"seq":160}
1: (633) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (633) ->^done\r\n"},"seq":162}
1: (633) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (633) ->(gdb)\r\n"},"seq":164}
1: (633) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (655) ->1007^done\r\n"},"seq":166}
1: (655) ->1007^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (655) ->(gdb)\r\n"},"seq":168}
1: (655) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (655) 1007: elapsed time 22\r\n"},"seq":170}
1: (655) 1007: elapsed time 22
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (656) ->&\"\\n\"\r\n"},"seq":172}
1: (656) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (656) ->^done\r\n"},"seq":174}
1: (656) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (656) <-1008-environment-cd /cygdrive/c/Users/tommy/Desktop/MyProjects/C_CPP\r\n"},"seq":176}
1: (656) <-1008-environment-cd /cygdrive/c/Users/tommy/Desktop/MyProjects/C_CPP
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (656) ->(gdb)\r\n"},"seq":178}
1: (656) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (670) ->1008^done\r\n"},"seq":180}
1: (670) ->1008^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (670) ->(gdb)\r\n"},"seq":182}
1: (670) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (670) 1008: elapsed time 14\r\n"},"seq":184}
1: (670) 1008: elapsed time 14
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (670) <-1009-gdb-set new-console on\r\n"},"seq":186}
1: (670) <-1009-gdb-set new-console on
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (670) ->&\"\\n\"\r\n"},"seq":188}
1: (670) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (670) ->^done\r\n"},"seq":190}
1: (670) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (670) ->(gdb)\r\n"},"seq":192}
1: (670) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (686) ->1009^done\r\n"},"seq":194}
1: (686) ->1009^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (686) ->(gdb)\r\n"},"seq":196}
1: (686) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (686) 1009: elapsed time 15\r\n"},"seq":198}
1: (686) 1009: elapsed time 15
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (686) ->&\"\\n\"\r\n"},"seq":200}
1: (686) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (686) ->^done\r\n"},"seq":202}
1: (686) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (686) <-1010-file-exec-and-symbols /cygdrive/c/Users/tommy/Desktop/MyProjects/C_CPP/hello.exe\r\n"},"seq":204}
1: (686) <-1010-file-exec-and-symbols /cygdrive/c/Users/tommy/Desktop/MyProjects/C_CPP/hello.exe
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (686) ->(gdb)\r\n"},"seq":206}
1: (686) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (713) ->1010^done\r\n"},"seq":208}
1: (713) ->1010^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (713) ->(gdb)\r\n"},"seq":210}
1: (713) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (713) 1010: elapsed time 26\r\n"},"seq":212}
1: (713) 1010: elapsed time 26
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (713) ->&\"\\n\"\r\n"},"seq":214}
1: (713) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (713) ->^done\r\n"},"seq":216}
1: (713) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (713) ->(gdb)\r\n"},"seq":218}
1: (713) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (713) <-1011-interpreter-exec console \"show architecture\"\r\n"},"seq":220}
1: (713) <-1011-interpreter-exec console "show architecture"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (717) ->~\"The target architecture is set to \\\"auto\\\" (currently \\\"i386:x86-64\\\").\\n\"\r\n"},"seq":222}
1: (717) ->~"The target architecture is set to \"auto\" (currently \"i386:x86-64\").\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (717) ->1011^done\r\n"},"seq":224}
1: (717) ->1011^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (717) ->(gdb)\r\n"},"seq":226}
1: (717) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (717) ->&\"\\n\"\r\n"},"seq":228}
1: (717) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (717) ->^done\r\n"},"seq":230}
1: (717) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (717) ->(gdb)\r\n"},"seq":232}
1: (717) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (717) 1011: elapsed time 4\r\n"},"seq":234}
1: (717) 1011: elapsed time 4
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (718) <-1012-break-insert -f main\r\n"},"seq":236}
1: (718) <-1012-break-insert -f main
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (735) ->1012^done,bkpt={number=\"1\",type=\"breakpoint\",disp=\"keep\",enabled=\"y\",addr=\"0x000000010040108d\",func=\"main()\",file=\"C:\\\\Users\\\\tommy\\\\Desktop\\\\MyProjects\\\\C_CPP\\\\hello.cpp\",fullname=\"/cygdrive/c/Users/tommy/Desktop/MyProjects/C_CPP/C:\\\\Users\\\\tommy\\\\Desktop\\\\MyProjects\\\\C_CPP\\\\hello.cpp\",line=\"7\",thread-groups=[\"i1\"],times=\"0\",original-location=\"main\"}\r\n"},"seq":238}
1: (735) ->1012^done,bkpt={number="1",type="breakpoint",disp="keep",enabled="y",addr="0x000000010040108d",func="main()",file="C:\\Users\\tommy\\Desktop\\MyProjects\\C_CPP\\hello.cpp",fullname="/cygdrive/c/Users/tommy/Desktop/MyProjects/C_CPP/C:\\Users\\tommy\\Desktop\\MyProjects\\C_CPP\\hello.cpp",line="7",thread-groups=["i1"],times="0",original-location="main"}
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (736) ->(gdb)\r\n"},"seq":240}
1: (736) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (736) ->&\"\\n\"\r\n"},"seq":242}
1: (736) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (736) ->^done\r\n"},"seq":244}
1: (736) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (736) ->(gdb)\r\n"},"seq":246}
1: (736) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (741) 1012: elapsed time 23\r\n"},"seq":248}
1: (741) 1012: elapsed time 23
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (746) Send Event AD7EngineCreateEvent\r\n"},"seq":250}
1: (746) Send Event AD7EngineCreateEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (748) Send Event AD7ProgramCreateEvent\r\n"},"seq":252}
1: (748) Send Event AD7ProgramCreateEvent
--> E (output): {"type":"event","event":"output","body":{"category":"telemetry","output":"VS/Diagnostics/Debugger/Launch","data":{"VS.Diagnostics.Debugger.ImplementationName":"Microsoft.MIDebugEngine","VS.Diagnostics.Debugger.EngineVersion":"17.1.20405.1","VS.Diagnostics.Debugger.HostVersion":"17.1.20405.1","VS.Diagnostics.Debugger.AdapterId":"cppdbg","VS.Diagnostics.Debugger.Launch.Duration":675,"VS.Diagnostics.Debugger.MIMode":"gdb","VS.Diagnostics.Debugger.FrameworkVersion":"6.0.322.12309"}},"seq":254}
--> R (launch-2): {"type":"response","request_seq":2,"success":true,"command":"launch","body":{},"seq":256}
--> E (initialized): {"type":"event","event":"initialized","body":{},"seq":258}
<--   C (setBreakpoints-3): {"command":"setBreakpoints","arguments":{"source":{"name":"hello.cpp","path":"c:\\Users\\tommy\\Desktop\\MyProjects\\C_CPP\\hello.cpp"},"lines":[7],"breakpoints":[{"line":7}],"sourceModified":false},"type":"request","seq":3}
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (821) <-1013-break-insert -f hello.cpp:7\r\n"},"seq":261}
1: (821) <-1013-break-insert -f hello.cpp:7
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (827) ->&\"No source file named hello.cpp.\\n\"\r\n"},"seq":263}
1: (827) ->&"No source file named hello.cpp.\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (827) ->1013^done,bkpt={number=\"2\",type=\"breakpoint\",disp=\"keep\",enabled=\"y\",addr=\"<PENDING>\",pending=\"hello.cpp:7\",times=\"0\",original-location=\"hello.cpp:7\"}\r\n"},"seq":265}
1: (827) ->1013^done,bkpt={number="2",type="breakpoint",disp="keep",enabled="y",addr="<PENDING>",pending="hello.cpp:7",times="0",original-location="hello.cpp:7"}
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (827) ->(gdb)\r\n"},"seq":267}
1: (827) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (828) ->&\"\\n\"\r\n"},"seq":269}
1: (828) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (828) 1013: elapsed time 7\r\n"},"seq":271}
1: (828) 1013: elapsed time 7
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (828) ->^done\r\n"},"seq":273}
1: (828) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (828) ->(gdb)\r\n"},"seq":275}
1: (828) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (835) Send Event AD7BreakpointErrorEvent\r\n"},"seq":277}
1: (835) Send Event AD7BreakpointErrorEvent
--> R (setBreakpoints-3): {"type":"response","request_seq":3,"success":true,"command":"setBreakpoints","body":{"breakpoints":[{"id":1,"verified":true,"line":7,"BoundBreakpoints":[]}]},"seq":279}
--> E (breakpoint): {"type":"event","event":"breakpoint","body":{"reason":"changed","breakpoint":{"id":1,"verified":false,"message":"Module containing this breakpoint has not yet loaded or the breakpoint address could not be obtained.","line":7,"BoundBreakpoints":[]}},"seq":281}
<--   C (setFunctionBreakpoints-4): {"command":"setFunctionBreakpoints","arguments":{"breakpoints":[]},"type":"request","seq":4}
--> R (setFunctionBreakpoints-4): {"type":"response","request_seq":4,"success":true,"command":"setFunctionBreakpoints","body":{"breakpoints":[]},"seq":284}
<--   C (setDataBreakpoints-5): {"command":"setDataBreakpoints","arguments":{"breakpoints":[]},"type":"request","seq":5}
--> R (setDataBreakpoints-5): {"type":"response","request_seq":5,"success":true,"command":"setDataBreakpoints","body":{"breakpoints":[]},"seq":287}
<--   C (setInstructionBreakpoints-6): {"command":"setInstructionBreakpoints","arguments":{"breakpoints":[]},"type":"request","seq":6}
--> R (setInstructionBreakpoints-6): {"type":"response","request_seq":6,"success":true,"command":"setInstructionBreakpoints","body":{"breakpoints":[]},"seq":290}
<--   C (setExceptionBreakpoints-7): {"command":"setExceptionBreakpoints","arguments":{"filters":[],"filterOptions":[{"filterId":"all"}]},"type":"request","seq":7}
--> R (setExceptionBreakpoints-7): {"type":"response","request_seq":7,"success":true,"command":"setExceptionBreakpoints","body":{},"seq":293}
<--   C (configurationDone-8): {"command":"configurationDone","type":"request","seq":8}
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1011) Send Event AD7LoadCompleteEvent\r\n"},"seq":297}
1: (1011) Send Event AD7LoadCompleteEvent
--> R (configurationDone-8): {"type":"response","request_seq":8,"success":true,"command":"configurationDone","body":{},"seq":296}
--> E (output): {"type":"event","event":"output","body":{"category":"stdout","output":"=thread-group-added,id=\"i1\"\nGNU gdb (GDB) (Cygwin 10.2-1) 10.2\nCopyright (C) 2021 Free Software Foundation, Inc.\nLicense GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\nThis is free software: you are free to change and redistribute it.\nThere is NO WARRANTY, to the extent permitted by law.\nType \"show copying\" and \"show warranty\" for details.\nThis GDB was configured as \"x86_64-pc-cygwin\".\nType \"show configuration\" for configuration details.\nFor bug reporting instructions, please see:\n<https://www.gnu.org/software/gdb/bugs/>.\nFind the GDB manual and other documentation resources online at:\n    <http://www.gnu.org/software/gdb/documentation/>.\n\nFor help, type \"help\".\nType \"apropos word\" to search for commands related to \"word\".\n=cmd-param-changed,param=\"pagination\",value=\"off\"\n"},"seq":300}
=thread-group-added,id="i1"
GNU gdb (GDB) (Cygwin 10.2-1) 10.2
Copyright (C) 2021 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "x86_64-pc-cygwin".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<https://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
    <http://www.gnu.org/software/gdb/documentation/>.

For help, type "help".
Type "apropos word" to search for commands related to "word".
=cmd-param-changed,param="pagination",value="off"
<--   C (threads-9): {"command":"threads","type":"request","seq":9}
--> R (threads-9): {"type":"response","request_seq":9,"success":true,"command":"threads","body":{"threads":[]},"seq":303}
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1028) <-1014-catch-throw\r\n"},"seq":305}
1: (1028) <-1014-catch-throw
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1031) ->1014^done,bkpt={number=\"3\",type=\"catchpoint\",disp=\"keep\",enabled=\"y\",what=\"exception throw\",catch-type=\"throw\",times=\"0\"}\r\n"},"seq":307}
1: (1031) ->1014^done,bkpt={number="3",type="catchpoint",disp="keep",enabled="y",what="exception throw",catch-type="throw",times="0"}
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1031) ->(gdb)\r\n"},"seq":309}
1: (1031) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1031) ->&\"\\n\"\r\n"},"seq":311}
1: (1031) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1031) 1014: elapsed time 3\r\n"},"seq":313}
1: (1031) 1014: elapsed time 3
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1031) ->^done\r\n"},"seq":315}
1: (1031) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1031) ->(gdb)\r\n"},"seq":317}
1: (1031) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1039) <-1015-exec-run\r\n"},"seq":319}
1: (1039) <-1015-exec-run
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1057) ->=thread-group-started,id=\"i1\",pid=\"12440\"\r\n"},"seq":321}
1: (1057) ->=thread-group-started,id="i1",pid="12440"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1074) ->=thread-created,id=\"1\",group-id=\"i1\"\r\n"},"seq":323}
1: (1074) ->=thread-created,id="1",group-id="i1"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1090) <-1016-thread-info 1\r\n"},"seq":325}
1: (1090) <-1016-thread-info 1
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1189) ->=thread-created,id=\"2\",group-id=\"i1\"\r\n"},"seq":327}
1: (1189) ->=thread-created,id="2",group-id="i1"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1189) <-1017-thread-info 2\r\n"},"seq":329}
1: (1189) <-1017-thread-info 2
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1190) ->~\"[New Thread 12440.0x47e8]\\n\"\r\n"},"seq":331}
1: (1190) ->~"[New Thread 12440.0x47e8]\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1191) ->=thread-created,id=\"3\",group-id=\"i1\"\r\n"},"seq":334}
1: (1191) ->=thread-created,id="3",group-id="i1"
--> E (output): {"type":"event","event":"output","body":{"category":"stdout","output":"[New Thread 12440.0x47e8]\n"},"seq":333}
[New Thread 12440.0x47e8]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1191) ->~\"[New Thread 12440.0x5308]\\n\"\r\n"},"seq":337}
1: (1191) ->~"[New Thread 12440.0x5308]\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1192) <-1018-thread-info 3\r\n"},"seq":339}
1: (1192) <-1018-thread-info 3
--> E (output): {"type":"event","event":"output","body":{"category":"stdout","output":"[New Thread 12440.0x5308]\n"},"seq":341}
[New Thread 12440.0x5308]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1192) ->=thread-created,id=\"4\",group-id=\"i1\"\r\n"},"seq":343}
1: (1192) ->=thread-created,id="4",group-id="i1"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1192) <-1019-thread-info 4\r\n"},"seq":345}
1: (1192) <-1019-thread-info 4
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1192) ->~\"[New Thread 12440.0x4be8]\\n\"\r\n"},"seq":347}
1: (1192) ->~"[New Thread 12440.0x4be8]\n"
--> E (output): {"type":"event","event":"output","body":{"category":"stdout","output":"[New Thread 12440.0x4be8]\n"},"seq":349}
[New Thread 12440.0x4be8]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1206) ->=library-loaded,id=\"/cygdrive/c/windows/SYSTEM32/ntdll.dll\",target-name=\"/cygdrive/c/windows/SYSTEM32/ntdll.dll\",host-name=\"/cygdrive/c/windows/SYSTEM32/ntdll.dll\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe87a31000\",to=\"0x00007ffe87c24544\"}]\r\n"},"seq":351}
1: (1206) ->=library-loaded,id="/cygdrive/c/windows/SYSTEM32/ntdll.dll",target-name="/cygdrive/c/windows/SYSTEM32/ntdll.dll",host-name="/cygdrive/c/windows/SYSTEM32/ntdll.dll",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe87a31000",to="0x00007ffe87c24544"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1207) ->=library-loaded,id=\"/cygdrive/c/windows/System32/KERNEL32.DLL\",target-name=\"/cygdrive/c/windows/System32/KERNEL32.DLL\",host-name=\"/cygdrive/c/windows/System32/KERNEL32.DLL\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe87461000\",to=\"0x00007ffe8751d30c\"}]\r\n"},"seq":353}
1: (1207) ->=library-loaded,id="/cygdrive/c/windows/System32/KERNEL32.DLL",target-name="/cygdrive/c/windows/System32/KERNEL32.DLL",host-name="/cygdrive/c/windows/System32/KERNEL32.DLL",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe87461000",to="0x00007ffe8751d30c"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1208) ->=library-loaded,id=\"/cygdrive/c/windows/System32/KERNELBASE.dll\",target-name=\"/cygdrive/c/windows/System32/KERNELBASE.dll\",host-name=\"/cygdrive/c/windows/System32/KERNELBASE.dll\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe85611000\",to=\"0x00007ffe858d7ab4\"}]\r\n"},"seq":355}
1: (1208) ->=library-loaded,id="/cygdrive/c/windows/System32/KERNELBASE.dll",target-name="/cygdrive/c/windows/System32/KERNELBASE.dll",host-name="/cygdrive/c/windows/System32/KERNELBASE.dll",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe85611000",to="0x00007ffe858d7ab4"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1209) ->=library-loaded,id=\"/usr/bin/cygwin1.dll\",target-name=\"/usr/bin/cygwin1.dll\",host-name=\"/usr/bin/cygwin1.dll\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x0000000180041000\",to=\"0x0000000180650000\"}]\r\n"},"seq":357}
1: (1209) ->=library-loaded,id="/usr/bin/cygwin1.dll",target-name="/usr/bin/cygwin1.dll",host-name="/usr/bin/cygwin1.dll",symbols-loaded="0",thread-group="i1",ranges=[{from="0x0000000180041000",to="0x0000000180650000"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1209) ->=library-loaded,id=\"/usr/bin/cygstdc++-6.dll\",target-name=\"/usr/bin/cygstdc++-6.dll\",host-name=\"/usr/bin/cygstdc++-6.dll\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00000003fb361000\",to=\"0x00000003fb537e98\"}]\r\n"},"seq":359}
1: (1209) ->=library-loaded,id="/usr/bin/cygstdc++-6.dll",target-name="/usr/bin/cygstdc++-6.dll",host-name="/usr/bin/cygstdc++-6.dll",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00000003fb361000",to="0x00000003fb537e98"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (1210) ->=library-loaded,id=\"/usr/bin/cyggcc_s-seh-1.dll\",target-name=\"/usr/bin/cyggcc_s-seh-1.dll\",host-name=\"/usr/bin/cyggcc_s-seh-1.dll\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00000003ff361000\",to=\"0x00000003ff378018\"}]\r\n"},"seq":361}
1: (1210) ->=library-loaded,id="/usr/bin/cyggcc_s-seh-1.dll",target-name="/usr/bin/cyggcc_s-seh-1.dll",host-name="/usr/bin/cyggcc_s-seh-1.dll",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00000003ff361000",to="0x00000003ff378018"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (2871) ->=breakpoint-modified,bkpt={number=\"3\",type=\"catchpoint\",disp=\"keep\",enabled=\"y\",what=\"exception throw\",catch-type=\"throw\",thread-groups=[\"i1\"],times=\"0\"}\r\n"},"seq":363}
1: (2871) ->=breakpoint-modified,bkpt={number="3",type="catchpoint",disp="keep",enabled="y",what="exception throw",catch-type="throw",thread-groups=["i1"],times="0"}
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (3084) ->1015^running\r\n"},"seq":365}
1: (3084) ->1015^running
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (3084) ->*running,thread-id=\"all\"\r\n"},"seq":367}
1: (3084) ->*running,thread-id="all"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (3085) ->(gdb)\r\n"},"seq":369}
1: (3085) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (3085) 1015: elapsed time 2045\r\n"},"seq":371}
1: (3085) 1015: elapsed time 2045
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (3089) ->=library-loaded,id=\"/cygdrive/c/windows/System32/advapi32.dll\",target-name=\"/cygdrive/c/windows/System32/advapi32.dll\",host-name=\"/cygdrive/c/windows/System32/advapi32.dll\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe85be1000\",to=\"0x00007ffe85c8d8f4\"}]\r\n"},"seq":373}
1: (3089) ->=library-loaded,id="/cygdrive/c/windows/System32/advapi32.dll",target-name="/cygdrive/c/windows/System32/advapi32.dll",host-name="/cygdrive/c/windows/System32/advapi32.dll",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe85be1000",to="0x00007ffe85c8d8f4"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (3349) ->=library-loaded,id=\"/cygdrive/c/windows/System32/msvcrt.dll\",target-name=\"/cygdrive/c/windows/System32/msvcrt.dll\",host-name=\"/cygdrive/c/windows/System32/msvcrt.dll\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe85a91000\",to=\"0x00007ffe85b2d4a8\"}]\r\n"},"seq":375}
1: (3349) ->=library-loaded,id="/cygdrive/c/windows/System32/msvcrt.dll",target-name="/cygdrive/c/windows/System32/msvcrt.dll",host-name="/cygdrive/c/windows/System32/msvcrt.dll",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe85a91000",to="0x00007ffe85b2d4a8"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (3617) ->=library-loaded,id=\"/cygdrive/c/windows/System32/sechost.dll\",target-name=\"/cygdrive/c/windows/System32/sechost.dll\",host-name=\"/cygdrive/c/windows/System32/sechost.dll\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe86cd1000\",to=\"0x00007ffe86d6b464\"}]\r\n"},"seq":377}
1: (3617) ->=library-loaded,id="/cygdrive/c/windows/System32/sechost.dll",target-name="/cygdrive/c/windows/System32/sechost.dll",host-name="/cygdrive/c/windows/System32/sechost.dll",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe86cd1000",to="0x00007ffe86d6b464"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (3840) ->=library-loaded,id=\"/cygdrive/c/windows/System32/RPCRT4.dll\",target-name=\"/cygdrive/c/windows/System32/RPCRT4.dll\",host-name=\"/cygdrive/c/windows/System32/RPCRT4.dll\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe87011000\",to=\"0x00007ffe871347bc\"}]\r\n"},"seq":379}
1: (3840) ->=library-loaded,id="/cygdrive/c/windows/System32/RPCRT4.dll",target-name="/cygdrive/c/windows/System32/RPCRT4.dll",host-name="/cygdrive/c/windows/System32/RPCRT4.dll",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe87011000",to="0x00007ffe871347bc"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (4083) ->=library-loaded,id=\"/cygdrive/c/windows/SYSTEM32/CRYPTBASE.DLL\",target-name=\"/cygdrive/c/windows/SYSTEM32/CRYPTBASE.DLL\",host-name=\"/cygdrive/c/windows/SYSTEM32/CRYPTBASE.DLL\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe84b11000\",to=\"0x00007ffe84b1b038\"}]\r\n"},"seq":381}
1: (4083) ->=library-loaded,id="/cygdrive/c/windows/SYSTEM32/CRYPTBASE.DLL",target-name="/cygdrive/c/windows/SYSTEM32/CRYPTBASE.DLL",host-name="/cygdrive/c/windows/SYSTEM32/CRYPTBASE.DLL",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe84b11000",to="0x00007ffe84b1b038"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (4287) ->=library-loaded,id=\"/cygdrive/c/windows/System32/bcryptPrimitives.dll\",target-name=\"/cygdrive/c/windows/System32/bcryptPrimitives.dll\",host-name=\"/cygdrive/c/windows/System32/bcryptPrimitives.dll\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe85271000\",to=\"0x00007ffe852f1498\"}]\r\n"},"seq":383}
1: (4287) ->=library-loaded,id="/cygdrive/c/windows/System32/bcryptPrimitives.dll",target-name="/cygdrive/c/windows/System32/bcryptPrimitives.dll",host-name="/cygdrive/c/windows/System32/bcryptPrimitives.dll",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe85271000",to="0x00007ffe852f1498"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (4492) ->=library-loaded,id=\"/cygdrive/c/windows/System32/umppc15005.dll\",target-name=\"/cygdrive/c/windows/System32/umppc15005.dll\",host-name=\"/cygdrive/c/windows/System32/umppc15005.dll\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x0000000000cd1000\",to=\"0x0000000000ce310c\"}]\r\n"},"seq":385}
1: (4492) ->=library-loaded,id="/cygdrive/c/windows/System32/umppc15005.dll",target-name="/cygdrive/c/windows/System32/umppc15005.dll",host-name="/cygdrive/c/windows/System32/umppc15005.dll",symbols-loaded="0",thread-group="i1",ranges=[{from="0x0000000000cd1000",to="0x0000000000ce310c"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (4696) ->=library-unloaded,id=\"/cygdrive/c/windows/System32/umppc15005.dll\",target-name=\"/cygdrive/c/windows/System32/umppc15005.dll\",host-name=\"/cygdrive/c/windows/System32/umppc15005.dll\",thread-group=\"i1\"\r\n"},"seq":387}
1: (4696) ->=library-unloaded,id="/cygdrive/c/windows/System32/umppc15005.dll",target-name="/cygdrive/c/windows/System32/umppc15005.dll",host-name="/cygdrive/c/windows/System32/umppc15005.dll",thread-group="i1"
--> E (output): {"type":"event","event":"output","body":{"category":"stdout","output":"=library-unloaded,id=\"/cygdrive/c/windows/System32/umppc15005.dll\",target-name=\"/cygdrive/c/windows/System32/umppc15005.dll\",host-name=\"/cygdrive/c/windows/System32/umppc15005.dll\",thread-group=\"i1\"\n"},"seq":389}
=library-unloaded,id="/cygdrive/c/windows/System32/umppc15005.dll",target-name="/cygdrive/c/windows/System32/umppc15005.dll",host-name="/cygdrive/c/windows/System32/umppc15005.dll",thread-group="i1"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (4699) ->=library-loaded,id=\"/cygdrive/c/windows/System32/umppc15005.dll\",target-name=\"/cygdrive/c/windows/System32/umppc15005.dll\",host-name=\"/cygdrive/c/windows/System32/umppc15005.dll\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x0000000000cd1000\",to=\"0x0000000000ce310c\"}]\r\n"},"seq":391}
1: (4699) ->=library-loaded,id="/cygdrive/c/windows/System32/umppc15005.dll",target-name="/cygdrive/c/windows/System32/umppc15005.dll",host-name="/cygdrive/c/windows/System32/umppc15005.dll",symbols-loaded="0",thread-group="i1",ranges=[{from="0x0000000000cd1000",to="0x0000000000ce310c"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (4902) ->=thread-created,id=\"5\",group-id=\"i1\"\r\n"},"seq":393}
1: (4902) ->=thread-created,id="5",group-id="i1"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (4902) ->~\"[New Thread 12440.0x4c38]\\n\"\r\n"},"seq":395}
1: (4902) ->~"[New Thread 12440.0x4c38]\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (4902) <-1020-thread-info 5\r\n"},"seq":397}
1: (4902) <-1020-thread-info 5
--> E (output): {"type":"event","event":"output","body":{"category":"stdout","output":"[New Thread 12440.0x4c38]\n"},"seq":399}
[New Thread 12440.0x4c38]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (4908) ->=library-loaded,id=\"/cygdrive/c/windows/system32/netapi32.dll\",target-name=\"/cygdrive/c/windows/system32/netapi32.dll\",host-name=\"/cygdrive/c/windows/system32/netapi32.dll\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe73721000\",to=\"0x00007ffe7373905c\"}]\r\n"},"seq":401}
1: (4908) ->=library-loaded,id="/cygdrive/c/windows/system32/netapi32.dll",target-name="/cygdrive/c/windows/system32/netapi32.dll",host-name="/cygdrive/c/windows/system32/netapi32.dll",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe73721000",to="0x00007ffe7373905c"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (5121) ->=library-loaded,id=\"/cygdrive/c/windows/SYSTEM32/LOGONCLI.DLL\",target-name=\"/cygdrive/c/windows/SYSTEM32/LOGONCLI.DLL\",host-name=\"/cygdrive/c/windows/SYSTEM32/LOGONCLI.DLL\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe846c1000\",to=\"0x00007ffe84703a84\"}]\r\n"},"seq":403}
1: (5121) ->=library-loaded,id="/cygdrive/c/windows/SYSTEM32/LOGONCLI.DLL",target-name="/cygdrive/c/windows/SYSTEM32/LOGONCLI.DLL",host-name="/cygdrive/c/windows/SYSTEM32/LOGONCLI.DLL",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe846c1000",to="0x00007ffe84703a84"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (5330) ->=library-loaded,id=\"/cygdrive/c/windows/System32/ucrtbase.dll\",target-name=\"/cygdrive/c/windows/System32/ucrtbase.dll\",host-name=\"/cygdrive/c/windows/System32/ucrtbase.dll\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe85991000\",to=\"0x00007ffe85a8faf8\"}]\r\n"},"seq":405}
1: (5330) ->=library-loaded,id="/cygdrive/c/windows/System32/ucrtbase.dll",target-name="/cygdrive/c/windows/System32/ucrtbase.dll",host-name="/cygdrive/c/windows/System32/ucrtbase.dll",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe85991000",to="0x00007ffe85a8faf8"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (5646) ->=library-loaded,id=\"/cygdrive/c/windows/SYSTEM32/NETUTILS.DLL\",target-name=\"/cygdrive/c/windows/SYSTEM32/NETUTILS.DLL\",host-name=\"/cygdrive/c/windows/SYSTEM32/NETUTILS.DLL\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe846b1000\",to=\"0x00007ffe846bb02c\"}]\r\n"},"seq":407}
1: (5646) ->=library-loaded,id="/cygdrive/c/windows/SYSTEM32/NETUTILS.DLL",target-name="/cygdrive/c/windows/SYSTEM32/NETUTILS.DLL",host-name="/cygdrive/c/windows/SYSTEM32/NETUTILS.DLL",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe846b1000",to="0x00007ffe846bb02c"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (5859) ->=library-loaded,id=\"/cygdrive/c/windows/SYSTEM32/SAMCLI.DLL\",target-name=\"/cygdrive/c/windows/SYSTEM32/SAMCLI.DLL\",host-name=\"/cygdrive/c/windows/SYSTEM32/SAMCLI.DLL\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe7adb1000\",to=\"0x00007ffe7adc80ac\"}]\r\n"},"seq":409}
1: (5859) ->=library-loaded,id="/cygdrive/c/windows/SYSTEM32/SAMCLI.DLL",target-name="/cygdrive/c/windows/SYSTEM32/SAMCLI.DLL",host-name="/cygdrive/c/windows/SYSTEM32/SAMCLI.DLL",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe7adb1000",to="0x00007ffe7adc80ac"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (6072) ->=library-loaded,id=\"/cygdrive/c/windows/SYSTEM32/SAMLIB.dll\",target-name=\"/cygdrive/c/windows/SYSTEM32/SAMLIB.dll\",host-name=\"/cygdrive/c/windows/SYSTEM32/SAMLIB.dll\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe76eb1000\",to=\"0x00007ffe76ed6680\"}]\r\n"},"seq":411}
1: (6072) ->=library-loaded,id="/cygdrive/c/windows/SYSTEM32/SAMLIB.dll",target-name="/cygdrive/c/windows/SYSTEM32/SAMLIB.dll",host-name="/cygdrive/c/windows/SYSTEM32/SAMLIB.dll",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe76eb1000",to="0x00007ffe76ed6680"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (6288) ->=thread-created,id=\"6\",group-id=\"i1\"\r\n"},"seq":413}
1: (6288) ->=thread-created,id="6",group-id="i1"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (6288) ->~\"[New Thread 12440.0x528c]\\n\"\r\n"},"seq":415}
1: (6288) ->~"[New Thread 12440.0x528c]\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (6288) <-1021-thread-info 6\r\n"},"seq":417}
1: (6288) <-1021-thread-info 6
--> E (output): {"type":"event","event":"output","body":{"category":"stdout","output":"[New Thread 12440.0x528c]\n"},"seq":419}
[New Thread 12440.0x528c]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (6291) ->=library-loaded,id=\"/cygdrive/c/windows/System32/wldap32.dll\",target-name=\"/cygdrive/c/windows/System32/wldap32.dll\",host-name=\"/cygdrive/c/windows/System32/wldap32.dll\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe87521000\",to=\"0x00007ffe87575078\"}]\r\n"},"seq":421}
1: (6291) ->=library-loaded,id="/cygdrive/c/windows/System32/wldap32.dll",target-name="/cygdrive/c/windows/System32/wldap32.dll",host-name="/cygdrive/c/windows/System32/wldap32.dll",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe87521000",to="0x00007ffe87575078"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (6513) ->=library-loaded,id=\"/cygdrive/c/windows/System32/WS2_32.DLL\",target-name=\"/cygdrive/c/windows/System32/WS2_32.DLL\",host-name=\"/cygdrive/c/windows/System32/WS2_32.DLL\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe86f11000\",to=\"0x00007ffe86f7a150\"}]\r\n"},"seq":423}
1: (6513) ->=library-loaded,id="/cygdrive/c/windows/System32/WS2_32.DLL",target-name="/cygdrive/c/windows/System32/WS2_32.DLL",host-name="/cygdrive/c/windows/System32/WS2_32.DLL",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe86f11000",to="0x00007ffe86f7a150"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (6732) ->=library-loaded,id=\"/cygdrive/c/windows/system32/mswsock.dll\",target-name=\"/cygdrive/c/windows/system32/mswsock.dll\",host-name=\"/cygdrive/c/windows/system32/mswsock.dll\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe848b1000\",to=\"0x00007ffe84919100\"}]\r\n"},"seq":425}
1: (6732) ->=library-loaded,id="/cygdrive/c/windows/system32/mswsock.dll",target-name="/cygdrive/c/windows/system32/mswsock.dll",host-name="/cygdrive/c/windows/system32/mswsock.dll",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe848b1000",to="0x00007ffe84919100"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (6948) ->=library-loaded,id=\"/cygdrive/c/windows/SYSTEM32/SspiCli.dll\",target-name=\"/cygdrive/c/windows/SYSTEM32/SspiCli.dll\",host-name=\"/cygdrive/c/windows/SYSTEM32/SspiCli.dll\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe85011000\",to=\"0x00007ffe850413ec\"}]\r\n"},"seq":427}
1: (6948) ->=library-loaded,id="/cygdrive/c/windows/SYSTEM32/SspiCli.dll",target-name="/cygdrive/c/windows/SYSTEM32/SspiCli.dll",host-name="/cygdrive/c/windows/SYSTEM32/SspiCli.dll",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe85011000",to="0x00007ffe850413ec"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (7166) ->=library-loaded,id=\"/cygdrive/c/windows/System32/user32.dll\",target-name=\"/cygdrive/c/windows/System32/user32.dll\",host-name=\"/cygdrive/c/windows/System32/user32.dll\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe86af1000\",to=\"0x00007ffe86c8f42c\"}]\r\n"},"seq":429}
1: (7166) ->=library-loaded,id="/cygdrive/c/windows/System32/user32.dll",target-name="/cygdrive/c/windows/System32/user32.dll",host-name="/cygdrive/c/windows/System32/user32.dll",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe86af1000",to="0x00007ffe86c8f42c"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (7436) ->=library-loaded,id=\"/cygdrive/c/windows/System32/win32u.dll\",target-name=\"/cygdrive/c/windows/System32/win32u.dll\",host-name=\"/cygdrive/c/windows/System32/win32u.dll\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe85151000\",to=\"0x00007ffe85171014\"}]\r\n"},"seq":431}
1: (7436) ->=library-loaded,id="/cygdrive/c/windows/System32/win32u.dll",target-name="/cygdrive/c/windows/System32/win32u.dll",host-name="/cygdrive/c/windows/System32/win32u.dll",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe85151000",to="0x00007ffe85171014"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (7721) ->=library-loaded,id=\"/cygdrive/c/windows/System32/GDI32.dll\",target-name=\"/cygdrive/c/windows/System32/GDI32.dll\",host-name=\"/cygdrive/c/windows/System32/GDI32.dll\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe87301000\",to=\"0x00007ffe8732949c\"}]\r\n"},"seq":433}
1: (7721) ->=library-loaded,id="/cygdrive/c/windows/System32/GDI32.dll",target-name="/cygdrive/c/windows/System32/GDI32.dll",host-name="/cygdrive/c/windows/System32/GDI32.dll",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe87301000",to="0x00007ffe8732949c"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (7996) ->=library-loaded,id=\"/cygdrive/c/windows/System32/gdi32full.dll\",target-name=\"/cygdrive/c/windows/System32/gdi32full.dll\",host-name=\"/cygdrive/c/windows/System32/gdi32full.dll\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe85371000\",to=\"0x00007ffe8547a478\"}]\r\n"},"seq":435}
1: (7996) ->=library-loaded,id="/cygdrive/c/windows/System32/gdi32full.dll",target-name="/cygdrive/c/windows/System32/gdi32full.dll",host-name="/cygdrive/c/windows/System32/gdi32full.dll",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe85371000",to="0x00007ffe8547a478"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8262) ->=library-loaded,id=\"/cygdrive/c/windows/System32/msvcp_win.dll\",target-name=\"/cygdrive/c/windows/System32/msvcp_win.dll\",host-name=\"/cygdrive/c/windows/System32/msvcp_win.dll\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe85181000\",to=\"0x00007ffe8521c7e4\"}]\r\n"},"seq":437}
1: (8262) ->=library-loaded,id="/cygdrive/c/windows/System32/msvcp_win.dll",target-name="/cygdrive/c/windows/System32/msvcp_win.dll",host-name="/cygdrive/c/windows/System32/msvcp_win.dll",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe85181000",to="0x00007ffe8521c7e4"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8539) ->=library-loaded,id=\"/cygdrive/c/windows/System32/IMM32.DLL\",target-name=\"/cygdrive/c/windows/System32/IMM32.DLL\",host-name=\"/cygdrive/c/windows/System32/IMM32.DLL\",symbols-loaded=\"0\",thread-group=\"i1\",ranges=[{from=\"0x00007ffe86c91000\",to=\"0x00007ffe86cbf0d8\"}]\r\n"},"seq":439}
1: (8539) ->=library-loaded,id="/cygdrive/c/windows/System32/IMM32.DLL",target-name="/cygdrive/c/windows/System32/IMM32.DLL",host-name="/cygdrive/c/windows/System32/IMM32.DLL",symbols-loaded="0",thread-group="i1",ranges=[{from="0x00007ffe86c91000",to="0x00007ffe86cbf0d8"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8762) ->=breakpoint-modified,bkpt={number=\"1\",type=\"breakpoint\",disp=\"keep\",enabled=\"y\",addr=\"0x000000010040108d\",func=\"main()\",file=\"C:\\\\Users\\\\tommy\\\\Desktop\\\\MyProjects\\\\C_CPP\\\\hello.cpp\",fullname=\"/cygdrive/c/Users/tommy/Desktop/MyProjects/C_CPP/C:\\\\Users\\\\tommy\\\\Desktop\\\\MyProjects\\\\C_CPP\\\\hello.cpp\",line=\"7\",thread-groups=[\"i1\"],times=\"1\",original-location=\"main\"}\r\n"},"seq":441}
1: (8762) ->=breakpoint-modified,bkpt={number="1",type="breakpoint",disp="keep",enabled="y",addr="0x000000010040108d",func="main()",file="C:\\Users\\tommy\\Desktop\\MyProjects\\C_CPP\\hello.cpp",fullname="/cygdrive/c/Users/tommy/Desktop/MyProjects/C_CPP/C:\\Users\\tommy\\Desktop\\MyProjects\\C_CPP\\hello.cpp",line="7",thread-groups=["i1"],times="1",original-location="main"}
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8772) ->~\"\\n\"\r\n"},"seq":443}
1: (8772) ->~"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"stdout","output":"\n"},"seq":445}

--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8772) ->~\"Thread 1 \\\"hello\\\" hit Breakpoint 1, main () at C:\\\\Users\\\\tommy\\\\Desktop\\\\MyProjects\\\\C_CPP\\\\hello.cpp:7\\n\"\r\n"},"seq":446}
1: (8772) ->~"Thread 1 \"hello\" hit Breakpoint 1, main () at C:\\Users\\tommy\\Desktop\\MyProjects\\C_CPP\\hello.cpp:7\n"
--> E (output): {"type":"event","event":"output","body":{"category":"stdout","output":"Thread 1 \"hello\" hit Breakpoint 1, main () at C:\\Users\\tommy\\Desktop\\MyProjects\\C_CPP\\hello.cpp:7\n"},"seq":449}
Thread 1 "hello" hit Breakpoint 1, main () at C:\Users\tommy\Desktop\MyProjects\C_CPP\hello.cpp:7
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8774) ->&\"7\\tC:\\\\Users\\\\tommy\\\\Desktop\\\\MyProjects\\\\C_CPP\\\\hello.cpp: No such file or directory.\\n\"\r\n"},"seq":451}
1: (8774) ->&"7\tC:\\Users\\tommy\\Desktop\\MyProjects\\C_CPP\\hello.cpp: No such file or directory.\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8774) ->*stopped,reason=\"breakpoint-hit\",disp=\"keep\",bkptno=\"1\",frame={addr=\"0x000000010040108d\",func=\"main\",args=[],file=\"C:\\\\Users\\\\tommy\\\\Desktop\\\\MyProjects\\\\C_CPP\\\\hello.cpp\",fullname=\"/cygdrive/c/Users/tommy/Desktop/MyProjects/C_CPP/C:\\\\Users\\\\tommy\\\\Desktop\\\\MyProjects\\\\C_CPP\\\\hello.cpp\",line=\"7\",arch=\"i386:x86-64\"},thread-id=\"1\",stopped-threads=\"all\"\r\n"},"seq":453}
1: (8774) ->*stopped,reason="breakpoint-hit",disp="keep",bkptno="1",frame={addr="0x000000010040108d",func="main",args=[],file="C:\\Users\\tommy\\Desktop\\MyProjects\\C_CPP\\hello.cpp",fullname="/cygdrive/c/Users/tommy/Desktop/MyProjects/C_CPP/C:\\Users\\tommy\\Desktop\\MyProjects\\C_CPP\\hello.cpp",line="7",arch="i386:x86-64"},thread-id="1",stopped-threads="all"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8774) ->(gdb)\r\n"},"seq":455}
1: (8774) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8774) ->&\"\\n\"\r\n"},"seq":457}
1: (8774) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8774) ->^done\r\n"},"seq":459}
1: (8774) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8774) ->(gdb)\r\n"},"seq":461}
1: (8774) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8775) ->1016^done,threads=[{id=\"1\",target-id=\"Thread 12440.0x1d10\",name=\"hello\",frame={level=\"0\",addr=\"0x000000010040108d\",func=\"main\",args=[],file=\"C:\\\\Users\\\\tommy\\\\Desktop\\\\MyProjects\\\\C_CPP\\\\hello.cpp\",fullname=\"/cygdrive/c/Users/tommy/Desktop/MyProjects/C_CPP/C:\\\\Users\\\\tommy\\\\Desktop\\\\MyProjects\\\\C_CPP\\\\hello.cpp\",line=\"7\",arch=\"i386:x86-64\"},state=\"stopped\"}]\r\n"},"seq":463}
1: (8775) ->1016^done,threads=[{id="1",target-id="Thread 12440.0x1d10",name="hello",frame={level="0",addr="0x000000010040108d",func="main",args=[],file="C:\\Users\\tommy\\Desktop\\MyProjects\\C_CPP\\hello.cpp",fullname="/cygdrive/c/Users/tommy/Desktop/MyProjects/C_CPP/C:\\Users\\tommy\\Desktop\\MyProjects\\C_CPP\\hello.cpp",line="7",arch="i386:x86-64"},state="stopped"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8775) ->(gdb)\r\n"},"seq":465}
1: (8775) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8775) ->&\"\\n\"\r\n"},"seq":467}
1: (8775) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8776) ->^done\r\n"},"seq":469}
1: (8776) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8776) ->(gdb)\r\n"},"seq":471}
1: (8776) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8777) ->1017^done,threads=[{id=\"2\",target-id=\"Thread 12440.0x47e8\",frame={level=\"0\",addr=\"0x00007ffe87ad07c4\",func=\"ntdll!ZwWaitForWorkViaWorkerFactory\",args=[],from=\"/cygdrive/c/windows/SYSTEM32/ntdll.dll\",arch=\"i386:x86-64\"},state=\"stopped\"}]\r\n"},"seq":473}
1: (8777) ->1017^done,threads=[{id="2",target-id="Thread 12440.0x47e8",frame={level="0",addr="0x00007ffe87ad07c4",func="ntdll!ZwWaitForWorkViaWorkerFactory",args=[],from="/cygdrive/c/windows/SYSTEM32/ntdll.dll",arch="i386:x86-64"},state="stopped"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8777) ->(gdb)\r\n"},"seq":475}
1: (8777) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8777) ->&\"\\n\"\r\n"},"seq":477}
1: (8777) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8777) ->^done\r\n"},"seq":479}
1: (8777) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8777) ->(gdb)\r\n"},"seq":481}
1: (8777) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8778) ->1018^done,threads=[{id=\"3\",target-id=\"Thread 12440.0x5308\",frame={level=\"0\",addr=\"0x00007ffe87ad07c4\",func=\"ntdll!ZwWaitForWorkViaWorkerFactory\",args=[],from=\"/cygdrive/c/windows/SYSTEM32/ntdll.dll\",arch=\"i386:x86-64\"},state=\"stopped\"}]\r\n"},"seq":483}
1: (8778) ->1018^done,threads=[{id="3",target-id="Thread 12440.0x5308",frame={level="0",addr="0x00007ffe87ad07c4",func="ntdll!ZwWaitForWorkViaWorkerFactory",args=[],from="/cygdrive/c/windows/SYSTEM32/ntdll.dll",arch="i386:x86-64"},state="stopped"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8778) ->(gdb)\r\n"},"seq":485}
1: (8778) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8778) ->&\"\\n\"\r\n"},"seq":487}
1: (8778) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8778) ->^done\r\n"},"seq":489}
1: (8778) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8778) ->(gdb)\r\n"},"seq":491}
1: (8778) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8779) ->1019^done,threads=[{id=\"4\",target-id=\"Thread 12440.0x4be8\",frame={level=\"0\",addr=\"0x00007ffe87ad07c4\",func=\"ntdll!ZwWaitForWorkViaWorkerFactory\",args=[],from=\"/cygdrive/c/windows/SYSTEM32/ntdll.dll\",arch=\"i386:x86-64\"},state=\"stopped\"}]\r\n"},"seq":493}
1: (8779) ->1019^done,threads=[{id="4",target-id="Thread 12440.0x4be8",frame={level="0",addr="0x00007ffe87ad07c4",func="ntdll!ZwWaitForWorkViaWorkerFactory",args=[],from="/cygdrive/c/windows/SYSTEM32/ntdll.dll",arch="i386:x86-64"},state="stopped"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8779) ->(gdb)\r\n"},"seq":495}
1: (8779) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8779) ->&\"\\n\"\r\n"},"seq":497}
1: (8779) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8779) ->^done\r\n"},"seq":499}
1: (8779) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8779) ->(gdb)\r\n"},"seq":501}
1: (8779) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8781) ->1020^done,threads=[{id=\"5\",target-id=\"Thread 12440.0x4c38\",name=\"sig\",frame={level=\"0\",addr=\"0x00007ffe87acce34\",func=\"ntdll!ZwReadFile\",args=[],from=\"/cygdrive/c/windows/SYSTEM32/ntdll.dll\",arch=\"i386:x86-64\"},state=\"stopped\"}]\r\n"},"seq":503}
1: (8781) ->1020^done,threads=[{id="5",target-id="Thread 12440.0x4c38",name="sig",frame={level="0",addr="0x00007ffe87acce34",func="ntdll!ZwReadFile",args=[],from="/cygdrive/c/windows/SYSTEM32/ntdll.dll",arch="i386:x86-64"},state="stopped"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8781) ->(gdb)\r\n"},"seq":505}
1: (8781) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8781) ->&\"\\n\"\r\n"},"seq":507}
1: (8781) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8781) ->^done\r\n"},"seq":509}
1: (8781) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8781) ->(gdb)\r\n"},"seq":511}
1: (8781) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8782) ->1021^done,threads=[{id=\"6\",target-id=\"Thread 12440.0x528c\",name=\"consm\",frame={level=\"0\",addr=\"0x00007ffe87acd8c4\",func=\"ntdll!ZwWaitForMultipleObjects\",args=[],from=\"/cygdrive/c/windows/SYSTEM32/ntdll.dll\",arch=\"i386:x86-64\"},state=\"stopped\"}]\r\n"},"seq":513}
1: (8782) ->1021^done,threads=[{id="6",target-id="Thread 12440.0x528c",name="consm",frame={level="0",addr="0x00007ffe87acd8c4",func="ntdll!ZwWaitForMultipleObjects",args=[],from="/cygdrive/c/windows/SYSTEM32/ntdll.dll",arch="i386:x86-64"},state="stopped"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8782) ->(gdb)\r\n"},"seq":515}
1: (8782) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8782) ->&\"\\n\"\r\n"},"seq":517}
1: (8782) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8782) ->^done\r\n"},"seq":519}
1: (8782) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8782) ->(gdb)\r\n"},"seq":521}
1: (8782) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8796) <-1022-thread-info\r\n"},"seq":523}
1: (8796) <-1022-thread-info
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8798) 1016: elapsed time 7707\r\n"},"seq":525}
1: (8798) 1016: elapsed time 7707
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8801) Send Event AD7ProcessInfoUpdatedEvent\r\n"},"seq":527}
1: (8801) Send Event AD7ProcessInfoUpdatedEvent
--> E (process): {"type":"event","event":"process","body":{"startMethod":"launch","name":"C:\\Users\\tommy\\Desktop\\MyProjects\\C_CPP/hello.exe","systemProcessId":12440,"pointerSize":64},"seq":529}
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8807) Send Event AD7ThreadCreateEvent\r\n"},"seq":531}
1: (8807) Send Event AD7ThreadCreateEvent
--> E (thread): {"type":"event","event":"thread","body":{"reason":"started","threadId":1},"seq":533}
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8812) ->1022^done,threads=[{id=\"1\",target-id=\"Thread 12440.0x1d10\",name=\"hello\",frame={level=\"0\",addr=\"0x000000010040108d\",func=\"main\",args=[],file=\"C:\\\\Users\\\\tommy\\\\Desktop\\\\MyProjects\\\\C_CPP\\\\hello.cpp\",fullname=\"/cygdrive/c/Users/tommy/Desktop/MyProjects/C_CPP/C:\\\\Users\\\\tommy\\\\Desktop\\\\MyProjects\\\\C_CPP\\\\hello.cpp\",line=\"7\",arch=\"i386:x86-64\"},state=\"stopped\"},{id=\"2\",target-id=\"Thread 12440.0x47e8\",frame={level=\"0\",addr=\"0x00007ffe87ad07c4\",func=\"ntdll!ZwWaitForWorkViaWorkerFactory\",args=[],from=\"/cygdrive/c/windows/SYSTEM32/ntdll.dll\",arch=\"i386:x86-64\"},state=\"stopped\"},{id=\"3\",target-id=\"Thread 12440.0x5308\",frame={level=\"0\",addr=\"0x00007ffe87ad07c4\",func=\"ntdll!ZwWaitForWorkViaWorkerFactory\",args=[],from=\"/cygdrive/c/windows/SYSTEM32/ntdll.dll\",arch=\"i386:x86-64\"},state=\"stopped\"},{id=\"4\",target-id=\"Thread 12440.0x4be8\",frame={level=\"0\",addr=\"0x00007ffe87ad07c4\",func=\"ntdll!ZwWaitForWorkViaWorkerFactory\",args=[],from=\"/cygdrive/c/windows/SYSTEM32/ntdll.dll\",arch=\"i386:x86-64\"},state=\"stopped\"},{id=\"5\",target-id=\"Thread 12440.0x4c38\",name=\"sig\",frame={level=\"0\",addr=\"0x00007ffe87acce34\",func=\"ntdll!ZwReadFile\",args=[],from=\"/cygdrive/c/windows/SYSTEM32/ntdll.dll\",arch=\"i386:x86-64\"},state=\"stopped\"},{id=\"6\",target-id=\"Thread 12440.0x528c\",name=\"consm\",frame={level=\"0\",addr=\"0x00007ffe87acd8c4\",func=\"ntdll!ZwWaitForMultipleObjects\",args=[],from=\"/cygdrive/c/windows/SYSTEM32/ntdll.dll\",arch=\"i386:x86-64\"},state=\"stopped\"}],current-thread-id=\"1\"\r\n"},"seq":535}
1: (8812) ->1022^done,threads=[{id="1",target-id="Thread 12440.0x1d10",name="hello",frame={level="0",addr="0x000000010040108d",func="main",args=[],file="C:\\Users\\tommy\\Desktop\\MyProjects\\C_CPP\\hello.cpp",fullname="/cygdrive/c/Users/tommy/Desktop/MyProjects/C_CPP/C:\\Users\\tommy\\Desktop\\MyProjects\\C_CPP\\hello.cpp",line="7",arch="i386:x86-64"},state="stopped"},{id="2",target-id="Thread 12440.0x47e8",frame={level="0",addr="0x00007ffe87ad07c4",func="ntdll!ZwWaitForWorkViaWorkerFactory",args=[],from="/cygdrive/c/windows/SYSTEM32/ntdll.dll",arch="i386:x86-64"},state="stopped"},{id="3",target-id="Thread 12440.0x5308",frame={level="0",addr="0x00007ffe87ad07c4",func="ntdll!ZwWaitForWorkViaWorkerFactory",args=[],from="/cygdrive/c/windows/SYSTEM32/ntdll.dll",arch="i386:x86-64"},state="stopped"},{id="4",target-id="Thread 12440.0x4be8",frame={level="0",addr="0x00007ffe87ad07c4",func="ntdll!ZwWaitForWorkViaWorkerFactory",args=[],from="/cygdrive/c/windows/SYSTEM32/ntdll.dll",arch="i386:x86-64"},state="stopped"},{id="5",target-id="Thread 12440.0x4c38",name="sig",frame={level="0",addr="0x00007ffe87acce34",func="ntdll!ZwReadFile",args=[],from="/cygdrive/c/windows/SYSTEM32/ntdll.dll",arch="i386:x86-64"},state="stopped"},{id="6",target-id="Thread 12440.0x528c",name="consm",frame={level="0",addr="0x00007ffe87acd8c4",func="ntdll!ZwWaitForMultipleObjects",args=[],from="/cygdrive/c/windows/SYSTEM32/ntdll.dll",arch="i386:x86-64"},state="stopped"}],current-thread-id="1"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8812) ->(gdb)\r\n"},"seq":537}
1: (8812) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8812) ->&\"\\n\"\r\n"},"seq":539}
1: (8812) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8812) ->^done\r\n"},"seq":541}
1: (8812) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8812) ->(gdb)\r\n"},"seq":543}
1: (8812) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8813) 1017: elapsed time 7623\r\n"},"seq":545}
1: (8813) 1017: elapsed time 7623
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8813) Send Event AD7ThreadCreateEvent\r\n"},"seq":547}
1: (8813) Send Event AD7ThreadCreateEvent
--> E (thread): {"type":"event","event":"thread","body":{"reason":"started","threadId":2},"seq":549}
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8813) 1018: elapsed time 7622\r\n"},"seq":551}
1: (8813) 1018: elapsed time 7622
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8813) Send Event AD7ThreadCreateEvent\r\n"},"seq":553}
1: (8813) Send Event AD7ThreadCreateEvent
--> E (thread): {"type":"event","event":"thread","body":{"reason":"started","threadId":3},"seq":555}
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8813) 1019: elapsed time 7620\r\n"},"seq":557}
1: (8813) 1019: elapsed time 7620
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8813) Send Event AD7ThreadCreateEvent\r\n"},"seq":559}
1: (8813) Send Event AD7ThreadCreateEvent
--> E (thread): {"type":"event","event":"thread","body":{"reason":"started","threadId":4},"seq":561}
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8813) 1020: elapsed time 3911\r\n"},"seq":563}
1: (8813) 1020: elapsed time 3911
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8813) Send Event AD7ThreadCreateEvent\r\n"},"seq":565}
1: (8813) Send Event AD7ThreadCreateEvent
--> E (thread): {"type":"event","event":"thread","body":{"reason":"started","threadId":5},"seq":567}
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8813) 1021: elapsed time 2525\r\n"},"seq":569}
1: (8813) 1021: elapsed time 2525
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8813) Send Event AD7ThreadCreateEvent\r\n"},"seq":571}
1: (8813) Send Event AD7ThreadCreateEvent
--> E (thread): {"type":"event","event":"thread","body":{"reason":"started","threadId":6},"seq":573}
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8813) 1022: elapsed time 16\r\n"},"seq":575}
1: (8813) 1022: elapsed time 16
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8881) <-1023-break-info 2\r\n"},"seq":577}
1: (8881) <-1023-break-info 2
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8886) ->1023^done,BreakpointTable={nr_rows=\"1\",nr_cols=\"6\",hdr=[{width=\"7\",alignment=\"-1\",col_name=\"number\",colhdr=\"Num\"},{width=\"14\",alignment=\"-1\",col_name=\"type\",colhdr=\"Type\"},{width=\"4\",alignment=\"-1\",col_name=\"disp\",colhdr=\"Disp\"},{width=\"3\",alignment=\"-1\",col_name=\"enabled\",colhdr=\"Enb\"},{width=\"10\",alignment=\"-1\",col_name=\"addr\",colhdr=\"Address\"},{width=\"40\",alignment=\"2\",col_name=\"what\",colhdr=\"What\"}],body=[bkpt={number=\"2\",type=\"breakpoint\",disp=\"keep\",enabled=\"y\",addr=\"<PENDING>\",pending=\"hello.cpp:7\",times=\"0\",original-location=\"hello.cpp:7\"}]}\r\n"},"seq":579}
1: (8886) ->1023^done,BreakpointTable={nr_rows="1",nr_cols="6",hdr=[{width="7",alignment="-1",col_name="number",colhdr="Num"},{width="14",alignment="-1",col_name="type",colhdr="Type"},{width="4",alignment="-1",col_name="disp",colhdr="Disp"},{width="3",alignment="-1",col_name="enabled",colhdr="Enb"},{width="10",alignment="-1",col_name="addr",colhdr="Address"},{width="40",alignment="2",col_name="what",colhdr="What"}],body=[bkpt={number="2",type="breakpoint",disp="keep",enabled="y",addr="<PENDING>",pending="hello.cpp:7",times="0",original-location="hello.cpp:7"}]}
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8886) ->(gdb)\r\n"},"seq":581}
1: (8886) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8886) ->&\"\\n\"\r\n"},"seq":583}
1: (8886) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8886) ->^done\r\n"},"seq":585}
1: (8886) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8886) ->(gdb)\r\n"},"seq":587}
1: (8886) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8886) 1023: elapsed time 5\r\n"},"seq":589}
1: (8886) 1023: elapsed time 5
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8892) <-1024-interpreter-exec console \"info sharedlibrary\"\r\n"},"seq":591}
1: (8892) <-1024-interpreter-exec console "info sharedlibrary"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8903) ->~\"From                To                  Syms Read   Shared Object Library\\n\"\r\n"},"seq":593}
1: (8903) ->~"From                To                  Syms Read   Shared Object Library\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8903) ->~\"0x00007ffe87a31000  0x00007ffe87c24544  Yes         /cygdrive/c/windows/SYSTEM32/ntdll.dll\\n\"\r\n"},"seq":595}
1: (8903) ->~"0x00007ffe87a31000  0x00007ffe87c24544  Yes         /cygdrive/c/windows/SYSTEM32/ntdll.dll\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8903) ->~\"0x00007ffe87461000  0x00007ffe8751d30c  Yes         /cygdrive/c/windows/System32/KERNEL32.DLL\\n\"\r\n"},"seq":597}
1: (8903) ->~"0x00007ffe87461000  0x00007ffe8751d30c  Yes         /cygdrive/c/windows/System32/KERNEL32.DLL\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8903) ->~\"0x00007ffe85611000  0x00007ffe858d7ab4  Yes         /cygdrive/c/windows/System32/KERNELBASE.dll\\n\"\r\n"},"seq":599}
1: (8903) ->~"0x00007ffe85611000  0x00007ffe858d7ab4  Yes         /cygdrive/c/windows/System32/KERNELBASE.dll\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8903) ->~\"0x0000000180041000  0x0000000180650000  Yes         /usr/bin/cygwin1.dll\\n\"\r\n"},"seq":601}
1: (8903) ->~"0x0000000180041000  0x0000000180650000  Yes         /usr/bin/cygwin1.dll\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8903) ->~\"0x00000003fb361000  0x00000003fb537e98  Yes         /usr/bin/cygstdc++-6.dll\\n\"\r\n"},"seq":603}
1: (8903) ->~"0x00000003fb361000  0x00000003fb537e98  Yes         /usr/bin/cygstdc++-6.dll\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8903) ->~\"0x00000003ff361000  0x00000003ff378018  Yes         /usr/bin/cyggcc_s-seh-1.dll\\n\"\r\n"},"seq":605}
1: (8903) ->~"0x00000003ff361000  0x00000003ff378018  Yes         /usr/bin/cyggcc_s-seh-1.dll\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8903) ->~\"0x00007ffe85be1000  0x00007ffe85c8d8f4  Yes         /cygdrive/c/windows/System32/advapi32.dll\\n\"\r\n"},"seq":607}
1: (8903) ->~"0x00007ffe85be1000  0x00007ffe85c8d8f4  Yes         /cygdrive/c/windows/System32/advapi32.dll\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8903) ->~\"0x00007ffe85a91000  0x00007ffe85b2d4a8  Yes         /cygdrive/c/windows/System32/msvcrt.dll\\n\"\r\n"},"seq":609}
1: (8903) ->~"0x00007ffe85a91000  0x00007ffe85b2d4a8  Yes         /cygdrive/c/windows/System32/msvcrt.dll\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8903) ->~\"0x00007ffe86cd1000  0x00007ffe86d6b464  Yes         /cygdrive/c/windows/System32/sechost.dll\\n\"\r\n"},"seq":611}
1: (8903) ->~"0x00007ffe86cd1000  0x00007ffe86d6b464  Yes         /cygdrive/c/windows/System32/sechost.dll\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8903) ->~\"0x00007ffe87011000  0x00007ffe871347bc  Yes         /cygdrive/c/windows/System32/RPCRT4.dll\\n\"\r\n"},"seq":613}
1: (8903) ->~"0x00007ffe87011000  0x00007ffe871347bc  Yes         /cygdrive/c/windows/System32/RPCRT4.dll\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8903) ->~\"0x00007ffe84b11000  0x00007ffe84b1b038  Yes         /cygdrive/c/windows/SYSTEM32/CRYPTBASE.DLL\\n\"\r\n"},"seq":615}
1: (8903) ->~"0x00007ffe84b11000  0x00007ffe84b1b038  Yes         /cygdrive/c/windows/SYSTEM32/CRYPTBASE.DLL\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8903) ->~\"0x00007ffe85271000  0x00007ffe852f1498  Yes         /cygdrive/c/windows/System32/bcryptPrimitives.dll\\n\"\r\n"},"seq":617}
1: (8903) ->~"0x00007ffe85271000  0x00007ffe852f1498  Yes         /cygdrive/c/windows/System32/bcryptPrimitives.dll\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8903) ->~\"0x0000000000cd1000  0x0000000000ce310c  Yes         /cygdrive/c/windows/System32/umppc15005.dll\\n\"\r\n"},"seq":619}
1: (8903) ->~"0x0000000000cd1000  0x0000000000ce310c  Yes         /cygdrive/c/windows/System32/umppc15005.dll\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8903) ->~\"0x00007ffe73721000  0x00007ffe7373905c  Yes         /cygdrive/c/windows/system32/netapi32.dll\\n\"\r\n"},"seq":621}
1: (8903) ->~"0x00007ffe73721000  0x00007ffe7373905c  Yes         /cygdrive/c/windows/system32/netapi32.dll\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8903) ->~\"0x00007ffe846c1000  0x00007ffe84703a84  Yes         /cygdrive/c/windows/SYSTEM32/LOGONCLI.DLL\\n\"\r\n"},"seq":623}
1: (8903) ->~"0x00007ffe846c1000  0x00007ffe84703a84  Yes         /cygdrive/c/windows/SYSTEM32/LOGONCLI.DLL\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8903) ->~\"0x00007ffe85991000  0x00007ffe85a8faf8  Yes         /cygdrive/c/windows/System32/ucrtbase.dll\\n\"\r\n"},"seq":625}
1: (8903) ->~"0x00007ffe85991000  0x00007ffe85a8faf8  Yes         /cygdrive/c/windows/System32/ucrtbase.dll\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8904) ->~\"0x00007ffe846b1000  0x00007ffe846bb02c  Yes         /cygdrive/c/windows/SYSTEM32/NETUTILS.DLL\\n\"\r\n"},"seq":627}
1: (8904) ->~"0x00007ffe846b1000  0x00007ffe846bb02c  Yes         /cygdrive/c/windows/SYSTEM32/NETUTILS.DLL\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8904) ->~\"0x00007ffe7adb1000  0x00007ffe7adc80ac  Yes         /cygdrive/c/windows/SYSTEM32/SAMCLI.DLL\\n\"\r\n"},"seq":629}
1: (8904) ->~"0x00007ffe7adb1000  0x00007ffe7adc80ac  Yes         /cygdrive/c/windows/SYSTEM32/SAMCLI.DLL\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8904) ->~\"0x00007ffe76eb1000  0x00007ffe76ed6680  Yes         /cygdrive/c/windows/SYSTEM32/SAMLIB.dll\\n\"\r\n"},"seq":631}
1: (8904) ->~"0x00007ffe76eb1000  0x00007ffe76ed6680  Yes         /cygdrive/c/windows/SYSTEM32/SAMLIB.dll\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8904) ->~\"0x00007ffe87521000  0x00007ffe87575078  Yes         /cygdrive/c/windows/System32/wldap32.dll\\n\"\r\n"},"seq":633}
1: (8904) ->~"0x00007ffe87521000  0x00007ffe87575078  Yes         /cygdrive/c/windows/System32/wldap32.dll\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8904) ->~\"0x00007ffe86f11000  0x00007ffe86f7a150  Yes         /cygdrive/c/windows/System32/WS2_32.DLL\\n\"\r\n"},"seq":635}
1: (8904) ->~"0x00007ffe86f11000  0x00007ffe86f7a150  Yes         /cygdrive/c/windows/System32/WS2_32.DLL\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8904) ->~\"0x00007ffe848b1000  0x00007ffe84919100  Yes         /cygdrive/c/windows/system32/mswsock.dll\\n\"\r\n"},"seq":637}
1: (8904) ->~"0x00007ffe848b1000  0x00007ffe84919100  Yes         /cygdrive/c/windows/system32/mswsock.dll\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8904) ->~\"0x00007ffe85011000  0x00007ffe850413ec  Yes         /cygdrive/c/windows/SYSTEM32/SspiCli.dll\\n\"\r\n"},"seq":639}
1: (8904) ->~"0x00007ffe85011000  0x00007ffe850413ec  Yes         /cygdrive/c/windows/SYSTEM32/SspiCli.dll\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8904) ->~\"0x00007ffe86af1000  0x00007ffe86c8f42c  Yes         /cygdrive/c/windows/System32/user32.dll\\n\"\r\n"},"seq":641}
1: (8904) ->~"0x00007ffe86af1000  0x00007ffe86c8f42c  Yes         /cygdrive/c/windows/System32/user32.dll\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8904) ->~\"0x00007ffe85151000  0x00007ffe85171014  Yes         /cygdrive/c/windows/System32/win32u.dll\\n\"\r\n"},"seq":643}
1: (8904) ->~"0x00007ffe85151000  0x00007ffe85171014  Yes         /cygdrive/c/windows/System32/win32u.dll\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8904) ->~\"0x00007ffe87301000  0x00007ffe8732949c  Yes         /cygdrive/c/windows/System32/GDI32.dll\\n\"\r\n"},"seq":645}
1: (8904) ->~"0x00007ffe87301000  0x00007ffe8732949c  Yes         /cygdrive/c/windows/System32/GDI32.dll\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8904) ->~\"0x00007ffe85371000  0x00007ffe8547a478  Yes         /cygdrive/c/windows/System32/gdi32full.dll\\n\"\r\n"},"seq":647}
1: (8904) ->~"0x00007ffe85371000  0x00007ffe8547a478  Yes         /cygdrive/c/windows/System32/gdi32full.dll\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8904) ->~\"0x00007ffe85181000  0x00007ffe8521c7e4  Yes         /cygdrive/c/windows/System32/msvcp_win.dll\\n\"\r\n"},"seq":649}
1: (8904) ->~"0x00007ffe85181000  0x00007ffe8521c7e4  Yes         /cygdrive/c/windows/System32/msvcp_win.dll\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8904) ->~\"0x00007ffe86c91000  0x00007ffe86cbf0d8  Yes         /cygdrive/c/windows/System32/IMM32.DLL\\n\"\r\n"},"seq":651}
1: (8904) ->~"0x00007ffe86c91000  0x00007ffe86cbf0d8  Yes         /cygdrive/c/windows/System32/IMM32.DLL\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8904) ->1024^done\r\n"},"seq":653}
1: (8904) ->1024^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8904) ->(gdb)\r\n"},"seq":655}
1: (8904) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8904) ->&\"\\n\"\r\n"},"seq":657}
1: (8904) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8904) ->^done\r\n"},"seq":659}
1: (8904) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8904) ->(gdb)\r\n"},"seq":661}
1: (8904) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8904) 1024: elapsed time 11\r\n"},"seq":663}
1: (8904) 1024: elapsed time 11
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8907) Send Event AD7ModuleLoadEvent\r\n"},"seq":665}
1: (8907) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/SYSTEM32/ntdll.dll'. Symbols loaded.\r\n"},"seq":667}
Loaded '/cygdrive/c/windows/SYSTEM32/ntdll.dll'. Symbols loaded.
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":1,"name":"ntdll.dll","path":"/cygdrive/c/windows/SYSTEM32/ntdll.dll","symbolFilePath":"/cygdrive/c/windows/SYSTEM32/ntdll.dll","vsLoadAddress":"140731174031360","vsPreferredLoadAddress":"140731174031360","vsModuleSize":2045252,"vsLoadOrder":0,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":669}
<--   C (threads-10): {"command":"threads","type":"request","seq":10}
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8927) Send Event AD7ModuleLoadEvent\r\n"},"seq":672}
1: (8927) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/System32/KERNEL32.DLL'. Symbols loaded.\r\n"},"seq":675}
Loaded '/cygdrive/c/windows/System32/KERNEL32.DLL'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8927) Send Event AD7ModuleLoadEvent\r\n"},"seq":677}
1: (8927) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/System32/KERNELBASE.dll'. Symbols loaded.\r\n"},"seq":679}
Loaded '/cygdrive/c/windows/System32/KERNELBASE.dll'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8928) Send Event AD7ModuleLoadEvent\r\n"},"seq":681}
1: (8928) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/usr/bin/cygwin1.dll'. Symbols loaded.\r\n"},"seq":683}
Loaded '/usr/bin/cygwin1.dll'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8928) Send Event AD7ModuleLoadEvent\r\n"},"seq":685}
1: (8928) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/usr/bin/cygstdc++-6.dll'. Symbols loaded.\r\n"},"seq":687}
Loaded '/usr/bin/cygstdc++-6.dll'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8928) Send Event AD7ModuleLoadEvent\r\n"},"seq":689}
1: (8928) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/usr/bin/cyggcc_s-seh-1.dll'. Symbols loaded.\r\n"},"seq":691}
Loaded '/usr/bin/cyggcc_s-seh-1.dll'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8928) Send Event AD7ModuleLoadEvent\r\n"},"seq":693}
1: (8928) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/System32/advapi32.dll'. Symbols loaded.\r\n"},"seq":695}
Loaded '/cygdrive/c/windows/System32/advapi32.dll'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8928) Send Event AD7ModuleLoadEvent\r\n"},"seq":697}
1: (8928) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/System32/msvcrt.dll'. Symbols loaded.\r\n"},"seq":699}
Loaded '/cygdrive/c/windows/System32/msvcrt.dll'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8928) Send Event AD7ModuleLoadEvent\r\n"},"seq":701}
1: (8928) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/System32/sechost.dll'. Symbols loaded.\r\n"},"seq":703}
Loaded '/cygdrive/c/windows/System32/sechost.dll'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8928) Send Event AD7ModuleLoadEvent\r\n"},"seq":705}
1: (8928) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/System32/RPCRT4.dll'. Symbols loaded.\r\n"},"seq":707}
Loaded '/cygdrive/c/windows/System32/RPCRT4.dll'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8928) Send Event AD7ModuleLoadEvent\r\n"},"seq":709}
1: (8928) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/SYSTEM32/CRYPTBASE.DLL'. Symbols loaded.\r\n"},"seq":711}
Loaded '/cygdrive/c/windows/SYSTEM32/CRYPTBASE.DLL'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8928) Send Event AD7ModuleLoadEvent\r\n"},"seq":713}
1: (8928) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/System32/bcryptPrimitives.dll'. Symbols loaded.\r\n"},"seq":715}
Loaded '/cygdrive/c/windows/System32/bcryptPrimitives.dll'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8928) Send Event AD7ModuleLoadEvent\r\n"},"seq":717}
1: (8928) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/System32/umppc15005.dll'. Symbols loaded.\r\n"},"seq":719}
Loaded '/cygdrive/c/windows/System32/umppc15005.dll'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8929) Send Event AD7ModuleLoadEvent\r\n"},"seq":721}
1: (8929) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/system32/netapi32.dll'. Symbols loaded.\r\n"},"seq":723}
Loaded '/cygdrive/c/windows/system32/netapi32.dll'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8929) Send Event AD7ModuleLoadEvent\r\n"},"seq":725}
1: (8929) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/SYSTEM32/LOGONCLI.DLL'. Symbols loaded.\r\n"},"seq":727}
Loaded '/cygdrive/c/windows/SYSTEM32/LOGONCLI.DLL'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8929) Send Event AD7ModuleLoadEvent\r\n"},"seq":729}
1: (8929) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/System32/ucrtbase.dll'. Symbols loaded.\r\n"},"seq":731}
Loaded '/cygdrive/c/windows/System32/ucrtbase.dll'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8929) Send Event AD7ModuleLoadEvent\r\n"},"seq":733}
1: (8929) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/SYSTEM32/NETUTILS.DLL'. Symbols loaded.\r\n"},"seq":735}
Loaded '/cygdrive/c/windows/SYSTEM32/NETUTILS.DLL'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8929) Send Event AD7ModuleLoadEvent\r\n"},"seq":737}
1: (8929) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/SYSTEM32/SAMCLI.DLL'. Symbols loaded.\r\n"},"seq":739}
Loaded '/cygdrive/c/windows/SYSTEM32/SAMCLI.DLL'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8929) Send Event AD7ModuleLoadEvent\r\n"},"seq":741}
1: (8929) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/SYSTEM32/SAMLIB.dll'. Symbols loaded.\r\n"},"seq":743}
Loaded '/cygdrive/c/windows/SYSTEM32/SAMLIB.dll'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8929) Send Event AD7ModuleLoadEvent\r\n"},"seq":745}
1: (8929) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/System32/wldap32.dll'. Symbols loaded.\r\n"},"seq":747}
Loaded '/cygdrive/c/windows/System32/wldap32.dll'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8929) Send Event AD7ModuleLoadEvent\r\n"},"seq":749}
1: (8929) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/System32/WS2_32.DLL'. Symbols loaded.\r\n"},"seq":751}
Loaded '/cygdrive/c/windows/System32/WS2_32.DLL'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8929) Send Event AD7ModuleLoadEvent\r\n"},"seq":753}
1: (8929) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/system32/mswsock.dll'. Symbols loaded.\r\n"},"seq":755}
Loaded '/cygdrive/c/windows/system32/mswsock.dll'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8929) Send Event AD7ModuleLoadEvent\r\n"},"seq":757}
1: (8929) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/SYSTEM32/SspiCli.dll'. Symbols loaded.\r\n"},"seq":759}
Loaded '/cygdrive/c/windows/SYSTEM32/SspiCli.dll'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8930) Send Event AD7ModuleLoadEvent\r\n"},"seq":761}
1: (8930) Send Event AD7ModuleLoadEvent
--> R (threads-10): {"type":"response","request_seq":10,"success":true,"command":"threads","body":{"threads":[{"id":1,"name":"hello [1]"},{"id":2,"name":" [2]"},{"id":3,"name":" [3]"},{"id":4,"name":" [4]"},{"id":5,"name":"sig [5]"},{"id":6,"name":"consm [6]"}]},"seq":674}
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/System32/user32.dll'. Symbols loaded.\r\n"},"seq":764}
Loaded '/cygdrive/c/windows/System32/user32.dll'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8930) Send Event AD7ModuleLoadEvent\r\n"},"seq":766}
1: (8930) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/System32/win32u.dll'. Symbols loaded.\r\n"},"seq":768}
Loaded '/cygdrive/c/windows/System32/win32u.dll'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8930) Send Event AD7ModuleLoadEvent\r\n"},"seq":770}
1: (8930) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/System32/GDI32.dll'. Symbols loaded.\r\n"},"seq":772}
Loaded '/cygdrive/c/windows/System32/GDI32.dll'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8930) Send Event AD7ModuleLoadEvent\r\n"},"seq":774}
1: (8930) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/System32/gdi32full.dll'. Symbols loaded.\r\n"},"seq":776}
Loaded '/cygdrive/c/windows/System32/gdi32full.dll'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8930) Send Event AD7ModuleLoadEvent\r\n"},"seq":778}
1: (8930) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/System32/msvcp_win.dll'. Symbols loaded.\r\n"},"seq":780}
Loaded '/cygdrive/c/windows/System32/msvcp_win.dll'. Symbols loaded.
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8930) Send Event AD7ModuleLoadEvent\r\n"},"seq":782}
1: (8930) Send Event AD7ModuleLoadEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"Loaded '/cygdrive/c/windows/System32/IMM32.DLL'. Symbols loaded.\r\n"},"seq":784}
Loaded '/cygdrive/c/windows/System32/IMM32.DLL'. Symbols loaded.
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":2,"name":"KERNEL32.DLL","path":"/cygdrive/c/windows/System32/KERNEL32.DLL","symbolFilePath":"/cygdrive/c/windows/System32/KERNEL32.DLL","vsLoadAddress":"140731167936512","vsPreferredLoadAddress":"140731167936512","vsModuleSize":770828,"vsLoadOrder":1,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":786}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":3,"name":"KERNELBASE.dll","path":"/cygdrive/c/windows/System32/KERNELBASE.dll","symbolFilePath":"/cygdrive/c/windows/System32/KERNELBASE.dll","vsLoadAddress":"140731136151552","vsPreferredLoadAddress":"140731136151552","vsModuleSize":2910900,"vsLoadOrder":2,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":788}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":4,"name":"cygwin1.dll","path":"/usr/bin/cygwin1.dll","symbolFilePath":"/usr/bin/cygwin1.dll","vsLoadAddress":"6442717184","vsPreferredLoadAddress":"6442717184","vsModuleSize":6352896,"vsLoadOrder":3,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":790}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":5,"name":"cygstdc++-6.dll","path":"/usr/bin/cygstdc++-6.dll","symbolFilePath":"/usr/bin/cygstdc++-6.dll","vsLoadAddress":"17099526144","vsPreferredLoadAddress":"17099526144","vsModuleSize":1928856,"vsLoadOrder":4,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":792}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":6,"name":"cyggcc_s-seh-1.dll","path":"/usr/bin/cyggcc_s-seh-1.dll","symbolFilePath":"/usr/bin/cyggcc_s-seh-1.dll","vsLoadAddress":"17166635008","vsPreferredLoadAddress":"17166635008","vsModuleSize":94232,"vsLoadOrder":5,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":794}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":7,"name":"advapi32.dll","path":"/cygdrive/c/windows/System32/advapi32.dll","symbolFilePath":"/cygdrive/c/windows/System32/advapi32.dll","vsLoadAddress":"140731142246400","vsPreferredLoadAddress":"140731142246400","vsModuleSize":706804,"vsLoadOrder":6,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":796}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":8,"name":"msvcrt.dll","path":"/cygdrive/c/windows/System32/msvcrt.dll","symbolFilePath":"/cygdrive/c/windows/System32/msvcrt.dll","vsLoadAddress":"140731140870144","vsPreferredLoadAddress":"140731140870144","vsModuleSize":640168,"vsLoadOrder":7,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":798}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":9,"name":"sechost.dll","path":"/cygdrive/c/windows/System32/sechost.dll","symbolFilePath":"/cygdrive/c/windows/System32/sechost.dll","vsLoadAddress":"140731160006656","vsPreferredLoadAddress":"140731160006656","vsModuleSize":631908,"vsLoadOrder":8,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":800}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":10,"name":"RPCRT4.dll","path":"/cygdrive/c/windows/System32/RPCRT4.dll","symbolFilePath":"/cygdrive/c/windows/System32/RPCRT4.dll","vsLoadAddress":"140731163414528","vsPreferredLoadAddress":"140731163414528","vsModuleSize":1193916,"vsLoadOrder":9,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":802}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":11,"name":"CRYPTBASE.DLL","path":"/cygdrive/c/windows/SYSTEM32/CRYPTBASE.DLL","symbolFilePath":"/cygdrive/c/windows/SYSTEM32/CRYPTBASE.DLL","vsLoadAddress":"140731124617216","vsPreferredLoadAddress":"140731124617216","vsModuleSize":41016,"vsLoadOrder":10,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":804}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":12,"name":"bcryptPrimitives.dll","path":"/cygdrive/c/windows/System32/bcryptPrimitives.dll","symbolFilePath":"/cygdrive/c/windows/System32/bcryptPrimitives.dll","vsLoadAddress":"140731132350464","vsPreferredLoadAddress":"140731132350464","vsModuleSize":525464,"vsLoadOrder":11,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":806}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":13,"name":"umppc15005.dll","path":"/cygdrive/c/windows/System32/umppc15005.dll","symbolFilePath":"/cygdrive/c/windows/System32/umppc15005.dll","vsLoadAddress":"13438976","vsPreferredLoadAddress":"13438976","vsModuleSize":73996,"vsLoadOrder":12,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":808}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":14,"name":"netapi32.dll","path":"/cygdrive/c/windows/system32/netapi32.dll","symbolFilePath":"/cygdrive/c/windows/system32/netapi32.dll","vsLoadAddress":"140730835275776","vsPreferredLoadAddress":"140730835275776","vsModuleSize":98396,"vsLoadOrder":13,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":810}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":15,"name":"LOGONCLI.DLL","path":"/cygdrive/c/windows/SYSTEM32/LOGONCLI.DLL","symbolFilePath":"/cygdrive/c/windows/SYSTEM32/LOGONCLI.DLL","vsLoadAddress":"140731120095232","vsPreferredLoadAddress":"140731120095232","vsModuleSize":273028,"vsLoadOrder":14,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":812}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":16,"name":"ucrtbase.dll","path":"/cygdrive/c/windows/System32/ucrtbase.dll","symbolFilePath":"/cygdrive/c/windows/System32/ucrtbase.dll","vsLoadAddress":"140731139821568","vsPreferredLoadAddress":"140731139821568","vsModuleSize":1043192,"vsLoadOrder":15,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":814}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":17,"name":"NETUTILS.DLL","path":"/cygdrive/c/windows/SYSTEM32/NETUTILS.DLL","symbolFilePath":"/cygdrive/c/windows/SYSTEM32/NETUTILS.DLL","vsLoadAddress":"140731120029696","vsPreferredLoadAddress":"140731120029696","vsModuleSize":41004,"vsLoadOrder":16,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":816}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":18,"name":"SAMCLI.DLL","path":"/cygdrive/c/windows/SYSTEM32/SAMCLI.DLL","symbolFilePath":"/cygdrive/c/windows/SYSTEM32/SAMCLI.DLL","vsLoadAddress":"140730959597568","vsPreferredLoadAddress":"140730959597568","vsModuleSize":94380,"vsLoadOrder":17,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":818}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":19,"name":"SAMLIB.dll","path":"/cygdrive/c/windows/SYSTEM32/SAMLIB.dll","symbolFilePath":"/cygdrive/c/windows/SYSTEM32/SAMLIB.dll","vsLoadAddress":"140730893537280","vsPreferredLoadAddress":"140730893537280","vsModuleSize":153216,"vsLoadOrder":18,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":820}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":20,"name":"wldap32.dll","path":"/cygdrive/c/windows/System32/wldap32.dll","symbolFilePath":"/cygdrive/c/windows/System32/wldap32.dll","vsLoadAddress":"140731168722944","vsPreferredLoadAddress":"140731168722944","vsModuleSize":344184,"vsLoadOrder":19,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":822}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":21,"name":"WS2_32.DLL","path":"/cygdrive/c/windows/System32/WS2_32.DLL","symbolFilePath":"/cygdrive/c/windows/System32/WS2_32.DLL","vsLoadAddress":"140731162365952","vsPreferredLoadAddress":"140731162365952","vsModuleSize":430416,"vsLoadOrder":20,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":824}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":22,"name":"mswsock.dll","path":"/cygdrive/c/windows/system32/mswsock.dll","symbolFilePath":"/cygdrive/c/windows/system32/mswsock.dll","vsLoadAddress":"140731122126848","vsPreferredLoadAddress":"140731122126848","vsModuleSize":426240,"vsLoadOrder":21,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":826}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":23,"name":"SspiCli.dll","path":"/cygdrive/c/windows/SYSTEM32/SspiCli.dll","symbolFilePath":"/cygdrive/c/windows/SYSTEM32/SspiCli.dll","vsLoadAddress":"140731129860096","vsPreferredLoadAddress":"140731129860096","vsModuleSize":197612,"vsLoadOrder":22,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":828}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":24,"name":"user32.dll","path":"/cygdrive/c/windows/System32/user32.dll","symbolFilePath":"/cygdrive/c/windows/System32/user32.dll","vsLoadAddress":"140731158040576","vsPreferredLoadAddress":"140731158040576","vsModuleSize":1696812,"vsLoadOrder":23,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":830}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":25,"name":"win32u.dll","path":"/cygdrive/c/windows/System32/win32u.dll","symbolFilePath":"/cygdrive/c/windows/System32/win32u.dll","vsLoadAddress":"140731131170816","vsPreferredLoadAddress":"140731131170816","vsModuleSize":131092,"vsLoadOrder":24,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":832}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":26,"name":"GDI32.dll","path":"/cygdrive/c/windows/System32/GDI32.dll","symbolFilePath":"/cygdrive/c/windows/System32/GDI32.dll","vsLoadAddress":"140731166494720","vsPreferredLoadAddress":"140731166494720","vsModuleSize":165020,"vsLoadOrder":25,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":834}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":27,"name":"gdi32full.dll","path":"/cygdrive/c/windows/System32/gdi32full.dll","symbolFilePath":"/cygdrive/c/windows/System32/gdi32full.dll","vsLoadAddress":"140731133399040","vsPreferredLoadAddress":"140731133399040","vsModuleSize":1086584,"vsLoadOrder":26,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":836}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":28,"name":"msvcp_win.dll","path":"/cygdrive/c/windows/System32/msvcp_win.dll","symbolFilePath":"/cygdrive/c/windows/System32/msvcp_win.dll","vsLoadAddress":"140731131367424","vsPreferredLoadAddress":"140731131367424","vsModuleSize":636900,"vsLoadOrder":27,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":838}
--> E (module): {"type":"event","event":"module","body":{"reason":"new","module":{"id":29,"name":"IMM32.DLL","path":"/cygdrive/c/windows/System32/IMM32.DLL","symbolFilePath":"/cygdrive/c/windows/System32/IMM32.DLL","vsLoadAddress":"140731159744512","vsPreferredLoadAddress":"140731159744512","vsModuleSize":188632,"vsLoadOrder":28,"vsTimestampUTC":"-11644473600","vsIs64Bit":true}},"seq":840}
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8935) <-1025-stack-list-frames 0 1000\r\n"},"seq":842}
1: (8935) <-1025-stack-list-frames 0 1000
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8946) ->1025^done,stack=[frame={level=\"0\",addr=\"0x000000010040108d\",func=\"main\",file=\"C:\\\\Users\\\\tommy\\\\Desktop\\\\MyProjects\\\\C_CPP\\\\hello.cpp\",fullname=\"/cygdrive/c/Users/tommy/Desktop/MyProjects/C_CPP/C:\\\\Users\\\\tommy\\\\Desktop\\\\MyProjects\\\\C_CPP\\\\hello.cpp\",line=\"7\",arch=\"i386:x86-64\"}]\r\n"},"seq":844}
1: (8946) ->1025^done,stack=[frame={level="0",addr="0x000000010040108d",func="main",file="C:\\Users\\tommy\\Desktop\\MyProjects\\C_CPP\\hello.cpp",fullname="/cygdrive/c/Users/tommy/Desktop/MyProjects/C_CPP/C:\\Users\\tommy\\Desktop\\MyProjects\\C_CPP\\hello.cpp",line="7",arch="i386:x86-64"}]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8946) ->(gdb)\r\n"},"seq":846}
1: (8946) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8946) 1025: elapsed time 11\r\n"},"seq":848}
1: (8946) 1025: elapsed time 11
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8947) ->&\"\\n\"\r\n"},"seq":850}
1: (8947) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8947) ->^done\r\n"},"seq":852}
1: (8947) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8947) ->(gdb)\r\n"},"seq":854}
1: (8947) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8956) <-1026-break-delete 1\r\n"},"seq":856}
1: (8956) <-1026-break-delete 1
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8961) ->1026^done\r\n"},"seq":858}
1: (8961) ->1026^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8961) ->(gdb)\r\n"},"seq":860}
1: (8961) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8961) 1026: elapsed time 4\r\n"},"seq":862}
1: (8961) 1026: elapsed time 4
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8961) ->&\"\\n\"\r\n"},"seq":864}
1: (8961) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8961) ->^done\r\n"},"seq":866}
1: (8961) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8961) ->(gdb)\r\n"},"seq":868}
1: (8961) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8962) Send Event AD7EntryPointEvent\r\n"},"seq":870}
1: (8962) Send Event AD7EntryPointEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8964) <--exec-continue\r\n"},"seq":872}
1: (8964) <--exec-continue
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8976) ->^running\r\n"},"seq":874}
1: (8976) ->^running
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8976) ->*running,thread-id=\"all\"\r\n"},"seq":876}
1: (8976) ->*running,thread-id="all"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (8977) ->(gdb)\r\n"},"seq":878}
1: (8977) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9045) ->~\"[Thread 12440.0x5308 exited with code 0]\\n\"\r\n"},"seq":880}
1: (9045) ->~"[Thread 12440.0x5308 exited with code 0]\n"
--> E (output): {"type":"event","event":"output","body":{"category":"stdout","output":"[Thread 12440.0x5308 exited with code 0]\n"},"seq":883}
[Thread 12440.0x5308 exited with code 0]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9045) ->=thread-exited,id=\"3\",group-id=\"i1\"\r\n"},"seq":882}
1: (9045) ->=thread-exited,id="3",group-id="i1"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9045) ->~\"[Thread 12440.0x4c38 exited with code 0]\\n\"\r\n"},"seq":886}
1: (9045) ->~"[Thread 12440.0x4c38 exited with code 0]\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9045) ->=thread-exited,id=\"5\",group-id=\"i1\"\r\n"},"seq":888}
1: (9045) ->=thread-exited,id="5",group-id="i1"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9045) ->~\"[Thread 12440.0x47e8 exited with code 0]\\n\"\r\n"},"seq":890}
1: (9045) ->~"[Thread 12440.0x47e8 exited with code 0]\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9045) ->=thread-exited,id=\"2\",group-id=\"i1\"\r\n"},"seq":892}
1: (9045) ->=thread-exited,id="2",group-id="i1"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9045) ->~\"[Thread 12440.0x1d10 exited with code 0]\\n\"\r\n"},"seq":894}
1: (9045) ->~"[Thread 12440.0x1d10 exited with code 0]\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9045) ->=thread-exited,id=\"1\",group-id=\"i1\"\r\n"},"seq":896}
1: (9045) ->=thread-exited,id="1",group-id="i1"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9045) ->~\"[Thread 12440.0x528c exited with code 0]\\n\"\r\n"},"seq":898}
1: (9045) ->~"[Thread 12440.0x528c exited with code 0]\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9045) ->=thread-exited,id=\"6\",group-id=\"i1\"\r\n"},"seq":900}
1: (9045) ->=thread-exited,id="6",group-id="i1"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9045) ->=thread-exited,id=\"4\",group-id=\"i1\"\r\n"},"seq":902}
1: (9045) ->=thread-exited,id="4",group-id="i1"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9045) ->~\"[Inferior 1 (process 12440) exited normally]\\n\"\r\n"},"seq":904}
1: (9045) ->~"[Inferior 1 (process 12440) exited normally]\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9045) ->=thread-group-exited,id=\"i1\",exit-code=\"0\"\r\n"},"seq":906}
1: (9045) ->=thread-group-exited,id="i1",exit-code="0"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9046) ->*stopped,reason=\"exited-normally\"\r\n"},"seq":908}
1: (9046) ->*stopped,reason="exited-normally"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9046) ->(gdb)\r\n"},"seq":910}
1: (9046) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9046) ->&\"\\n\"\r\n"},"seq":912}
1: (9046) ->&"\n"
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9046) ->^done\r\n"},"seq":914}
1: (9046) ->^done
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9046) ->(gdb)\r\n"},"seq":916}
1: (9046) ->(gdb)
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9047) Send Event AD7ThreadDestroyEvent\r\n"},"seq":918}
1: (9047) Send Event AD7ThreadDestroyEvent
--> E (thread): {"type":"event","event":"thread","body":{"reason":"exited","threadId":3},"seq":920}
--> E (output): {"type":"event","event":"output","body":{"category":"stdout","output":"[Thread 12440.0x4c38 exited with code 0]\n"},"seq":922}
[Thread 12440.0x4c38 exited with code 0]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9047) Send Event AD7ThreadDestroyEvent\r\n"},"seq":924}
1: (9047) Send Event AD7ThreadDestroyEvent
--> E (thread): {"type":"event","event":"thread","body":{"reason":"exited","threadId":5},"seq":926}
--> E (output): {"type":"event","event":"output","body":{"category":"stdout","output":"[Thread 12440.0x47e8 exited with code 0]\n"},"seq":928}
[Thread 12440.0x47e8 exited with code 0]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9047) Send Event AD7ThreadDestroyEvent\r\n"},"seq":930}
1: (9047) Send Event AD7ThreadDestroyEvent
--> E (thread): {"type":"event","event":"thread","body":{"reason":"exited","threadId":2},"seq":932}
--> E (output): {"type":"event","event":"output","body":{"category":"stdout","output":"[Thread 12440.0x1d10 exited with code 0]\n"},"seq":934}
[Thread 12440.0x1d10 exited with code 0]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9047) Send Event AD7ThreadDestroyEvent\r\n"},"seq":936}
1: (9047) Send Event AD7ThreadDestroyEvent
--> E (thread): {"type":"event","event":"thread","body":{"reason":"exited","threadId":1},"seq":938}
--> E (output): {"type":"event","event":"output","body":{"category":"stdout","output":"[Thread 12440.0x528c exited with code 0]\n"},"seq":940}
[Thread 12440.0x528c exited with code 0]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9047) Send Event AD7ThreadDestroyEvent\r\n"},"seq":942}
1: (9047) Send Event AD7ThreadDestroyEvent
--> E (thread): {"type":"event","event":"thread","body":{"reason":"exited","threadId":6},"seq":944}
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9047) Send Event AD7ThreadDestroyEvent\r\n"},"seq":946}
1: (9047) Send Event AD7ThreadDestroyEvent
--> E (thread): {"type":"event","event":"thread","body":{"reason":"exited","threadId":4},"seq":948}
--> E (output): {"type":"event","event":"output","body":{"category":"stdout","output":"[Inferior 1 (process 12440) exited normally]\n"},"seq":950}
[Inferior 1 (process 12440) exited normally]
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9052) <-logout\r\n"},"seq":952}
1: (9052) <-logout
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9053) Send Event AD7ProgramDestroyEvent\r\n"},"seq":954}
1: (9053) Send Event AD7ProgramDestroyEvent
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"The program 'C:\\Users\\tommy\\Desktop\\MyProjects\\C_CPP/hello.exe' has exited with code 0 (0x00000000).\r\n\r\n"},"seq":956}
The program 'C:\Users\tommy\Desktop\MyProjects\C_CPP/hello.exe' has exited with code 0 (0x00000000).
--> E (exited): {"type":"event","event":"exited","body":{"exitCode":0},"seq":958}
--> E (terminated): {"type":"event","event":"terminated","body":{},"seq":960}
--> E (output): {"type":"event","event":"output","body":{"category":"telemetry","output":"VS/Diagnostics/Debugger/DebugCompleted","data":{"VS.Diagnostics.Debugger.ImplementationName":"Microsoft.MIDebugEngine","VS.Diagnostics.Debugger.EngineVersion":"17.1.20405.1","VS.Diagnostics.Debugger.HostVersion":"17.1.20405.1","VS.Diagnostics.Debugger.AdapterId":"cppdbg","VS.Diagnostics.Debugger.DebugCompleted.BreakCounter":0}},"seq":962}
--> E (output): {"type":"event","event":"output","body":{"category":"console","output":"1: (9075) <--gdb-exit\r\n"},"seq":964}
1: (9075) <--gdb-exit
<--   C (disconnect-11): {"command":"disconnect","arguments":{"restart":false},"type":"request","seq":11}
--> R (disconnect-11): {"type":"response","request_seq":11,"success":true,"command":"disconnect","body":{},"seq":967}