microsoft / microsoft/vscode-cpptools

Unable to debug on Windows 10 with `"externalConsole": false`

Open
#3,140 15 comments 2 reactions 1 assignee View on GitHub

@pieandcakes is already working on this.

Since Feb 7, 2019.

debugger
Dominant language
TypeScript
Stars
6.2k
Forks
1.7k
Avg merge
14h 46m
Merged PRs (30d)
61

Description

Type: Debugger

  • OS and Version: Windows 10

  • VS Code Version:

  • Version: 1.30.2 (system setup)

  • Commit: 61122f88f0bf01e2ac16bdb9e1bc4571755f5bd8

  • Date: 2019-01-07T22:53:57.820Z

  • Electron: 2.0.12

  • Chrome: 61.0.3163.100

  • Node.js: 8.9.3

  • V8: 6.1.534.41

  • OS: Windows_NT ia32 10.0.17763

  • C/C++ Extension Version: 0.21.1

  • Other extensions you installed (and if the issue persists after disabling them): Python, Git History Diff. Disabling had no effect.

Similar situation. Same error:

"Unable to start debugging. Unable to establish a connection to GDB. Debug output may contain more information"

If i set "externalConsole": true then the debugger works and the DEBUG CONSOLE outputs. If it's false neither work.

Additional context

launch.json:

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "(gdb) Launch",
            "type": "cppdbg",
            "request": "launch",
            "program": "${fileDirname}/${fileBasenameNoExtension}.exe",
            "args": [],
            "stopAtEntry": false,
            "cwd": "${fileDirname}",
            "environment": [],
            "externalConsole": true,
            "MIMode": "gdb",
            "miDebuggerPath": "gdb.exe",
            "preLaunchTask": "gpp_build",
            "setupCommands": [
                {
                    "description": "Enable pretty-printing for gdb",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                }
            ],
            "logging": {
                "trace": true,
                "traceResponse": true,
                "engineLogging": true
            }
        }
    ]
}

tasks.json:

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "gpp_build",
            "type": "shell",
            "command": "g++",
            "args": ["-g", "${file}", "-o", "${fileBasenameNoExtension}.exe"],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ]
}

c_cpp_properties.json:

{
    "configurations": [
        {
            "name": "MinGW",
            "intelliSenseMode": "gcc-x64",
            "compilerPath": "C:/mingw/bin/g++.exe",
            "includePath": [
                "${workspaceFolder}"
            ],
            "defines": [],
            "cStandard": "c11",
            "cppStandard": "c++17"
        }
    ],
    "version": 4
}

DEBUG CONSOLE:

--> E (output): {"event":"output","body":{"category":"console","output":"1: (556) LaunchOptions<LocalLaunchOptions xmlns='http://schemas.microsoft.com/vstudio/MDDDebuggerOptions/2014'\r\n"},"seq":2,"type":"event"}

1: (556) LaunchOptions<LocalLaunchOptions xmlns='http://schemas.microsoft.com/vstudio/MDDDebuggerOptions/2014'

--> E (output): {"event":"output","body":{"category":"console","output":"1: (604) LaunchOptions  ExePath='c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001\\a1_1.exe'\r\n"},"seq":4,"type":"event"}

1: (604) LaunchOptions  ExePath='c:\Personal\Responsibilities\School\CS110B\Assignment 001\a1_1.exe'

--> E (output): {"event":"output","body":{"category":"console","output":"1: (606) LaunchOptions  WorkingDirectory='c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001'\r\n"},"seq":6,"type":"event"}

1: (606) LaunchOptions  WorkingDirectory='c:\Personal\Responsibilities\School\CS110B\Assignment 001'

--> E (output): {"event":"output","body":{"category":"console","output":"1: (608) LaunchOptions  ExeArguments=''\r\n"},"seq":8,"type":"event"}

1: (608) LaunchOptions  ExeArguments=''

--> E (output): {"event":"output","body":{"category":"console","output":"1: (609) LaunchOptions  MIMode='gdb'\r\n"},"seq":10,"type":"event"}

1: (609) LaunchOptions  MIMode='gdb'

--> E (output): {"event":"output","body":{"category":"console","output":"1: (613) LaunchOptions  MIDebuggerPath='gdb.exe'\r\n"},"seq":12,"type":"event"}

1: (613) LaunchOptions  MIDebuggerPath='gdb.exe'

--> E (output): {"event":"output","body":{"category":"console","output":"1: (615) LaunchOptions  WaitDynamicLibLoad='false'\r\n"},"seq":14,"type":"event"}

1: (615) LaunchOptions  WaitDynamicLibLoad='false'

--> E (output): {"event":"output","body":{"category":"console","output":"1: (617) LaunchOptions  ExternalConsole='true'\r\n"},"seq":16,"type":"event"}

1: (617) LaunchOptions  ExternalConsole='true'

--> E (output): {"event":"output","body":{"category":"console","output":"1: (619) LaunchOptions>\r\n"},"seq":18,"type":"event"}

1: (619) LaunchOptions>

--> E (output): {"event":"output","body":{"category":"console","output":"1: (621) LaunchOptions    <SetupCommands>\r\n"},"seq":20,"type":"event"}

1: (621) LaunchOptions    <SetupCommands>

--> E (output): {"event":"output","body":{"category":"console","output":"1: (622) LaunchOptions        <Command IgnoreFailures='true' Description='Enable pretty-printing for gdb'>-enable-pretty-printing</Command>\r\n"},"seq":22,"type":"event"}

1: (622) LaunchOptions        <Command IgnoreFailures='true' Description='Enable pretty-printing for gdb'>-enable-pretty-printing</Command>

--> E (output): {"event":"output","body":{"category":"console","output":"1: (624) LaunchOptions    </SetupCommands>\r\n"},"seq":24,"type":"event"}

1: (624) LaunchOptions    </SetupCommands>

--> E (output): {"event":"output","body":{"category":"console","output":"1: (625) LaunchOptions</LocalLaunchOptions>\r\n"},"seq":26,"type":"event"}

1: (625) LaunchOptions</LocalLaunchOptions>

--> E (output): {"event":"output","body":{"category":"console","output":"1: (1511) Starting: \"C:\\MinGW\\bin\\gdb.exe\" --interpreter=mi\r\n"},"seq":28,"type":"event"}

1: (1511) Starting: "C:\MinGW\bin\gdb.exe" --interpreter=mi

--> E (output): {"event":"output","body":{"category":"console","output":"1: (1608) DebuggerPid=6104\r\n"},"seq":30,"type":"event"}

1: (1608) DebuggerPid=6104

--> E (output): {"event":"output","body":{"category":"console","output":"1: (1978) ->=thread-group-added,id=\"i1\"\r\n"},"seq":32,"type":"event"}

1: (1978) ->=thread-group-added,id="i1"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (1985) ->~\"GNU gdb (GDB) 7.6.1\\n\"\r\n"},"seq":34,"type":"event"}

1: (1985) ->~"GNU gdb (GDB) 7.6.1\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (1987) ->~\"Copyright (C) 2013 Free Software Foundation, Inc.\\n\"\r\n"},"seq":36,"type":"event"}

1: (1987) ->~"Copyright (C) 2013 Free Software Foundation, Inc.\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (1988) ->~\"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.  Type \\\"show copying\\\"\\nand \\\"show warranty\\\" for details.\\n\"\r\n"},"seq":38,"type":"event"}

1: (1988) ->~"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.  Type \"show copying\"\nand \"show warranty\" for details.\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (1990) ->~\"This GDB was configured as \\\"mingw32\\\".\\nFor bug reporting instructions, please see:\\n\"\r\n"},"seq":40,"type":"event"}

1: (1990) ->~"This GDB was configured as \"mingw32\".\nFor bug reporting instructions, please see:\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (1991) ->~\"<http://www.gnu.org/software/gdb/bugs/>.\\n\"\r\n"},"seq":42,"type":"event"}

1: (1991) ->~"<http://www.gnu.org/software/gdb/bugs/>.\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (1992) ->(gdb)\r\n"},"seq":44,"type":"event"}

1: (1992) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2023) <-1001-gdb-set target-async on\r\n"},"seq":46,"type":"event"}

1: (2023) <-1001-gdb-set target-async on

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2035) ->1001^done\r\n"},"seq":48,"type":"event"}

1: (2035) ->1001^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2038) ->(gdb)\r\n"},"seq":50,"type":"event"}

1: (2038) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2040) ->&\"\\n\"\r\n"},"seq":52,"type":"event"}

1: (2040) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2042) ->^done\r\n"},"seq":54,"type":"event"}

1: (2042) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2044) ->(gdb)\r\n"},"seq":56,"type":"event"}

1: (2044) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2045) 1001: elapsed time 24\r\n"},"seq":58,"type":"event"}

1: (2045) 1001: elapsed time 24

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2104) <-1002-enable-pretty-printing\r\n"},"seq":60,"type":"event"}

1: (2104) <-1002-enable-pretty-printing

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2110) ->1002^done\r\n"},"seq":62,"type":"event"}

1: (2110) ->1002^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2112) ->(gdb)\r\n"},"seq":64,"type":"event"}

1: (2112) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2113) ->&\"\\n\"\r\n"},"seq":66,"type":"event"}

1: (2113) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2115) ->^done\r\n"},"seq":68,"type":"event"}

1: (2115) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2117) ->(gdb)\r\n"},"seq":70,"type":"event"}

1: (2117) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2112) 1002: elapsed time 7\r\n"},"seq":72,"type":"event"}

1: (2112) 1002: elapsed time 7

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2123) <-1003-interpreter-exec console \"set pagination off\"\r\n"},"seq":74,"type":"event"}

1: (2123) <-1003-interpreter-exec console "set pagination off"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2132) ->=cmd-param-changed,param=\"pagination\",value=\"off\"\r\n"},"seq":76,"type":"event"}

1: (2132) ->=cmd-param-changed,param="pagination",value="off"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2134) ->1003^done\r\n"},"seq":78,"type":"event"}

1: (2134) ->1003^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2137) ->(gdb)\r\n"},"seq":80,"type":"event"}

1: (2137) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2139) ->&\"\\n\"\r\n"},"seq":82,"type":"event"}

1: (2139) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2141) ->^done\r\n"},"seq":84,"type":"event"}

1: (2141) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2142) ->(gdb)\r\n"},"seq":86,"type":"event"}

1: (2142) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2137) 1003: elapsed time 15\r\n"},"seq":88,"type":"event"}

1: (2137) 1003: elapsed time 15

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2147) <-1004-gdb-set auto-solib-add on\r\n"},"seq":90,"type":"event"}

1: (2147) <-1004-gdb-set auto-solib-add on

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2155) ->1004^done\r\n"},"seq":92,"type":"event"}

1: (2155) ->1004^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2157) ->(gdb)\r\n"},"seq":94,"type":"event"}

1: (2157) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2157) 1004: elapsed time 10\r\n"},"seq":96,"type":"event"}

1: (2157) 1004: elapsed time 10

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2160) <-1005-gdb-set solib-search-path c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001;\r\n"},"seq":98,"type":"event"}

1: (2160) <-1005-gdb-set solib-search-path c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001;

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2159) ->&\"\\n\"\r\n"},"seq":100,"type":"event"}

1: (2159) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2165) ->^done\r\n"},"seq":102,"type":"event"}

1: (2165) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2168) ->(gdb)\r\n"},"seq":104,"type":"event"}

1: (2168) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2171) ->1005^done\r\n"},"seq":106,"type":"event"}

1: (2171) ->1005^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2173) ->(gdb)\r\n"},"seq":108,"type":"event"}

1: (2173) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2174) ->&\"\\n\"\r\n"},"seq":110,"type":"event"}

1: (2174) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2176) ->^done\r\n"},"seq":112,"type":"event"}

1: (2176) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2178) ->(gdb)\r\n"},"seq":114,"type":"event"}

1: (2178) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2173) 1005: elapsed time 12\r\n"},"seq":116,"type":"event"}

1: (2173) 1005: elapsed time 12

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2181) <-1006-environment-cd \"c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\"\r\n"},"seq":118,"type":"event"}

1: (2181) <-1006-environment-cd "c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2193) ->1006^done\r\n"},"seq":120,"type":"event"}

1: (2193) ->1006^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2194) ->(gdb)\r\n"},"seq":122,"type":"event"}

1: (2194) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2196) ->&\"\\n\"\r\n"},"seq":124,"type":"event"}

1: (2196) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2198) ->^done\r\n"},"seq":126,"type":"event"}

1: (2198) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2200) ->(gdb)\r\n"},"seq":128,"type":"event"}

1: (2200) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2194) 1006: elapsed time 12\r\n"},"seq":130,"type":"event"}

1: (2194) 1006: elapsed time 12

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2203) <-1007-gdb-set new-console on\r\n"},"seq":132,"type":"event"}

1: (2203) <-1007-gdb-set new-console on

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2205) ->1007^done\r\n"},"seq":134,"type":"event"}

1: (2205) ->1007^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2206) ->(gdb)\r\n"},"seq":136,"type":"event"}

1: (2206) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2206) 1007: elapsed time 2\r\n"},"seq":138,"type":"event"}

1: (2206) 1007: elapsed time 2

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2208) ->&\"\\n\"\r\n"},"seq":140,"type":"event"}

1: (2208) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2212) ->^done\r\n"},"seq":142,"type":"event"}

1: (2212) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2214) ->(gdb)\r\n"},"seq":144,"type":"event"}

1: (2214) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2225) <-1008-interpreter-exec console \"show configuration\"\r\n"},"seq":146,"type":"event"}

1: (2225) <-1008-interpreter-exec console "show configuration"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2229) ->&\"Undefined show command: \\\"configuration\\\".  Try \\\"help show\\\".\\n\"\r\n"},"seq":148,"type":"event"}

1: (2229) ->&"Undefined show command: \"configuration\".  Try \"help show\".\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2231) ->1008^error,msg=\"Undefined show command: \\\"configuration\\\".  Try \\\"help show\\\".\"\r\n"},"seq":150,"type":"event"}

1: (2231) ->1008^error,msg="Undefined show command: \"configuration\".  Try \"help show\"."

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2233) ->(gdb)\r\n"},"seq":152,"type":"event"}

1: (2233) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2258) ->&\"\\n\"\r\n"},"seq":154,"type":"event"}

1: (2258) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2261) ->^done\r\n"},"seq":156,"type":"event"}

1: (2261) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2263) ->(gdb)\r\n"},"seq":158,"type":"event"}

1: (2263) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2271) 1008: elapsed time 46\r\n"},"seq":160,"type":"event"}

1: (2271) 1008: elapsed time 46

--> E (output): {"event":"output","body":{"category":"telemetry","output":"VS/Diagnostics/Debugger/MIEngine/WindowsRuntime","data":{"VS.Diagnostics.Debugger.MIEngine.WindowsRuntime":"MinGW"}},"seq":162,"type":"event"}

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2285) <-1009-file-exec-and-symbols \"c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\\\\a1_1.exe\"\r\n"},"seq":164,"type":"event"}

1: (2285) <-1009-file-exec-and-symbols "c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001\\a1_1.exe"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2307) ->1009^done\r\n"},"seq":166,"type":"event"}

1: (2307) ->1009^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2309) ->(gdb)\r\n"},"seq":168,"type":"event"}

1: (2309) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2311) ->&\"\\n\"\r\n"},"seq":170,"type":"event"}

1: (2311) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2312) ->^done\r\n"},"seq":172,"type":"event"}

1: (2312) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2313) ->(gdb)\r\n"},"seq":174,"type":"event"}

1: (2313) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2310) 1009: elapsed time 24\r\n"},"seq":176,"type":"event"}

1: (2310) 1009: elapsed time 24

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2316) <-1010-interpreter-exec console \"show architecture\"\r\n"},"seq":178,"type":"event"}

1: (2316) <-1010-interpreter-exec console "show architecture"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2320) ->~\"The target architecture is set automatically (currently i386)\\n\"\r\n"},"seq":180,"type":"event"}

1: (2320) ->~"The target architecture is set automatically (currently i386)\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2322) ->1010^done\r\n"},"seq":182,"type":"event"}

1: (2322) ->1010^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2324) ->(gdb)\r\n"},"seq":184,"type":"event"}

1: (2324) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2324) 1010: elapsed time 7\r\n"},"seq":186,"type":"event"}

1: (2324) 1010: elapsed time 7

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2326) ->&\"\\n\"\r\n"},"seq":188,"type":"event"}

1: (2326) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2331) ->^done\r\n"},"seq":190,"type":"event"}

1: (2331) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2331) <-1011-break-insert -f main\r\n"},"seq":192,"type":"event"}

1: (2331) <-1011-break-insert -f main

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2333) ->(gdb)\r\n"},"seq":194,"type":"event"}

1: (2333) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2354) ->1011^done,bkpt={number=\"1\",type=\"breakpoint\",disp=\"keep\",enabled=\"y\",addr=\"0x00401426\",func=\"main()\",file=\"c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\\\\a1_1.cpp\",fullname=\"c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\\\\a1_1.cpp\",line=\"10\",thread-groups=[\"i1\"],times=\"0\",original-location=\"main\"}\r\n"},"seq":196,"type":"event"}

1: (2354) ->1011^done,bkpt={number="1",type="breakpoint",disp="keep",enabled="y",addr="0x00401426",func="main()",file="c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001\\a1_1.cpp",fullname="c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001\\a1_1.cpp",line="10",thread-groups=["i1"],times="0",original-location="main"}

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2356) ->(gdb)\r\n"},"seq":198,"type":"event"}

1: (2356) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2358) ->&\"\\n\"\r\n"},"seq":200,"type":"event"}

1: (2358) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2361) ->^done\r\n"},"seq":202,"type":"event"}

1: (2361) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2362) ->(gdb)\r\n"},"seq":204,"type":"event"}

1: (2362) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2372) 1011: elapsed time 40\r\n"},"seq":206,"type":"event"}

1: (2372) 1011: elapsed time 40

--> E (output): {"event":"output","body":{"category":"telemetry","output":"VS/Diagnostics/Debugger/Launch","data":{"VS.Diagnostics.Debugger.ImplementationName":"Microsoft.MIDebugEngine","VS.Diagnostics.Debugger.EngineVersion":"14.0.51217.3","VS.Diagnostics.Debugger.HostVersion":"14.0.51217.3","VS.Diagnostics.Debugger.AdapterId":"cppdbg","VS.Diagnostics.Debugger.Launch.Duration":2130,"VS.Diagnostics.Debugger.Launch.IsCoreDump":false,"VS.Diagnostics.Debugger.VisualizerFileUsed":false,"VS.Diagnostics.Debugger.SourceFileMappings":0}},"seq":208,"type":"event"}

--> R (launch-2): {"request_seq":2,"success":true,"command":"launch","body":{},"seq":210,"type":"response"}

--> E (initialized): {"event":"initialized","body":{},"seq":212,"type":"event"}

<--   C (setBreakpoints-3): {"command":"setBreakpoints","arguments":{"source":{"name":"a1_1.cpp","path":"C:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001\\a1_1.cpp"},"lines":[17],"breakpoints":[{"line":17}],"sourceModified":false},"type":"request","seq":3}

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2778) <-1012-break-insert -f a1_1.cpp:17\r\n"},"seq":215,"type":"event"}

1: (2778) <-1012-break-insert -f a1_1.cpp:17

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2797) ->1012^done,bkpt={number=\"2\",type=\"breakpoint\",disp=\"keep\",enabled=\"y\",addr=\"0x00401487\",func=\"main()\",file=\"c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\\\\a1_1.cpp\",fullname=\"c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\\\\a1_1.cpp\",line=\"17\",thread-groups=[\"i1\"],times=\"0\",original-location=\"a1_1.cpp:17\"}\r\n"},"seq":217,"type":"event"}

1: (2797) ->1012^done,bkpt={number="2",type="breakpoint",disp="keep",enabled="y",addr="0x00401487",func="main()",file="c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001\\a1_1.cpp",fullname="c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001\\a1_1.cpp",line="17",thread-groups=["i1"],times="0",original-location="a1_1.cpp:17"}

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2797) ->(gdb)\r\n"},"seq":219,"type":"event"}

1: (2797) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2797) ->&\"\\n\"\r\n"},"seq":221,"type":"event"}

1: (2797) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2797) ->^done\r\n"},"seq":223,"type":"event"}

1: (2797) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2797) ->(gdb)\r\n"},"seq":225,"type":"event"}

1: (2797) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2797) 1012: elapsed time 18\r\n"},"seq":227,"type":"event"}

1: (2797) 1012: elapsed time 18

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2859) <-1013-symbol-list-lines \"c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\\\\a1_1.cpp\"\r\n"},"seq":229,"type":"event"}

1: (2859) <-1013-symbol-list-lines "c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001\\a1_1.cpp"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2877) ->1013^done,lines=[{pc=\"0x00401410\",line=\"5\"},{pc=\"0x00401421\",line=\"5\"},{pc=\"0x00401426\",line=\"10\"},{pc=\"0x0040143a\",line=\"11\"},{pc=\"0x0040144d\",line=\"12\"},{pc=\"0x00401457\",line=\"13\"},{pc=\"0x0040146a\",line=\"14\"},{pc=\"0x00401474\",line=\"15\"},{pc=\"0x00401487\",line=\"17\"},{pc=\"0x00401490\",line=\"17\"},{pc=\"0x00401493\",line=\"17\"},{pc=\"0x00401497\",line=\"18\"},{pc=\"0x004014ab\",line=\"18\"},{pc=\"0x004014bc\",line=\"20\"},{pc=\"0x004014c9\",line=\"0\"},{pc=\"0x004014db\",line=\"20\"},{pc=\"0x004014e1\",line=\"20\"},{pc=\"0x004014f0\",line=\"0\"},{pc=\"0x00401506\",line=\"20\"},{pc=\"0x00401509\",line=\"20\"},{pc=\"0x0040150f\",line=\"20\"},{pc=\"0x00401525\",line=\"0\"}]\r\n"},"seq":231,"type":"event"}

1: (2877) ->1013^done,lines=[{pc="0x00401410",line="5"},{pc="0x00401421",line="5"},{pc="0x00401426",line="10"},{pc="0x0040143a",line="11"},{pc="0x0040144d",line="12"},{pc="0x00401457",line="13"},{pc="0x0040146a",line="14"},{pc="0x00401474",line="15"},{pc="0x00401487",line="17"},{pc="0x00401490",line="17"},{pc="0x00401493",line="17"},{pc="0x00401497",line="18"},{pc="0x004014ab",line="18"},{pc="0x004014bc",line="20"},{pc="0x004014c9",line="0"},{pc="0x004014db",line="20"},{pc="0x004014e1",line="20"},{pc="0x004014f0",line="0"},{pc="0x00401506",line="20"},{pc="0x00401509",line="20"},{pc="0x0040150f",line="20"},{pc="0x00401525",line="0"}]

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2880) ->(gdb)\r\n"},"seq":233,"type":"event"}

1: (2880) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2881) 1013: elapsed time 21\r\n"},"seq":235,"type":"event"}

1: (2881) 1013: elapsed time 21

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2881) ->&\"\\n\"\r\n"},"seq":237,"type":"event"}

1: (2881) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2886) ->^done\r\n"},"seq":239,"type":"event"}

1: (2886) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (2887) ->(gdb)\r\n"},"seq":241,"type":"event"}

1: (2887) ->(gdb)

--> R (setBreakpoints-3): {"request_seq":3,"success":true,"command":"setBreakpoints","body":{"breakpoints":[{"id":1,"verified":true,"line":17}]},"seq":243,"type":"response"}

--> E (breakpoint): {"event":"breakpoint","body":{"reason":"changed","breakpoint":{"id":1,"verified":true,"line":17}},"seq":245,"type":"event"}

<--   C (setFunctionBreakpoints-4): {"command":"setFunctionBreakpoints","arguments":{"breakpoints":[]},"type":"request","seq":4}

--> R (setFunctionBreakpoints-4): {"request_seq":4,"success":true,"command":"setFunctionBreakpoints","body":{"breakpoints":[]},"seq":248,"type":"response"}

<--   C (setExceptionBreakpoints-5): {"command":"setExceptionBreakpoints","arguments":{"filters":[]},"type":"request","seq":5}

--> R (setExceptionBreakpoints-5): {"request_seq":5,"success":true,"command":"setExceptionBreakpoints","body":{},"seq":251,"type":"response"}

<--   C (configurationDone-6): {"command":"configurationDone","type":"request","seq":6}

--> R (configurationDone-6): {"request_seq":6,"success":true,"command":"configurationDone","body":{},"seq":254,"type":"response"}

<--   C (threads-7): {"command":"threads","type":"request","seq":7}

--> E (output): {"event":"output","body":{"category":"stdout","output":"=thread-group-added,id=\"i1\"\nGNU gdb (GDB) 7.6.1\nCopyright (C) 2013 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.  Type \"show copying\"\nand \"show warranty\" for details.\nThis GDB was configured as \"mingw32\".\nFor bug reporting instructions, please see:\n<http://www.gnu.org/software/gdb/bugs/>.\nWarning: Debuggee TargetArchitecture not detected, assuming x86_64.\n=cmd-param-changed,param=\"pagination\",value=\"off\"\n"},"seq":258,"type":"event"}

=thread-group-added,id="i1"
GNU gdb (GDB) 7.6.1
Copyright (C) 2013 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 "mingw32".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Warning: Debuggee TargetArchitecture not detected, assuming x86_64.
=cmd-param-changed,param="pagination",value="off"
--> R (threads-7): {"request_seq":7,"success":true,"command":"threads","body":{"threads":[]},"seq":257,"type":"response"}

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3117) <-1014-exec-run\r\n"},"seq":261,"type":"event"}

1: (3117) <-1014-exec-run

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3152) ->=thread-group-started,id=\"i1\",pid=\"8012\"\r\n"},"seq":263,"type":"event"}

1: (3152) ->=thread-group-started,id="i1",pid="8012"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3152) ->=thread-created,id=\"1\",group-id=\"i1\"\r\n"},"seq":265,"type":"event"}

1: (3152) ->=thread-created,id="1",group-id="i1"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3167) ->~\"[New Thread 8012.0xe4]\\n\"\r\n"},"seq":267,"type":"event"}

1: (3167) ->~"[New Thread 8012.0xe4]\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3170) ->1014^running\r\n"},"seq":269,"type":"event"}

1: (3170) ->1014^running

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3172) ->*running,thread-id=\"all\"\r\n"},"seq":271,"type":"event"}

1: (3172) ->*running,thread-id="all"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3174) ->(gdb)\r\n"},"seq":273,"type":"event"}

1: (3174) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3182) <-1015-thread-info 1\r\n"},"seq":275,"type":"event"}

1: (3182) <-1015-thread-info 1

--> E (output): {"event":"output","body":{"category":"stdout","output":"[New Thread 8012.0xe4]\n"},"seq":277,"type":"event"}

[New Thread 8012.0xe4]
--> E (output): {"event":"output","body":{"category":"console","output":"1: (3198) 1014: elapsed time 81\r\n"},"seq":279,"type":"event"}

1: (3198) 1014: elapsed time 81

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3618) ->=thread-created,id=\"2\",group-id=\"i1\"\r\n"},"seq":281,"type":"event"}

1: (3618) ->=thread-created,id="2",group-id="i1"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3621) <-1016-thread-info 2\r\n"},"seq":283,"type":"event"}

1: (3621) <-1016-thread-info 2

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3638) ->~\"[New Thread 8012.0x27b4]\\n\"\r\n"},"seq":285,"type":"event"}

1: (3638) ->~"[New Thread 8012.0x27b4]\n"

--> E (output): {"event":"output","body":{"category":"stdout","output":"[New Thread 8012.0x27b4]\n"},"seq":288,"type":"event"}

[New Thread 8012.0x27b4]
--> E (output): {"event":"output","body":{"category":"console","output":"1: (3644) ->*running,thread-id=\"all\"\r\n"},"seq":287,"type":"event"}

1: (3644) ->*running,thread-id="all"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3651) ->=library-loaded,id=\"C:\\\\WINDOWS\\\\SysWOW64\\\\kernel32.dll\",target-name=\"C:\\\\WINDOWS\\\\SysWOW64\\\\kernel32.dll\",host-name=\"C:\\\\WINDOWS\\\\SysWOW64\\\\kernel32.dll\",symbols-loaded=\"0\",thread-group=\"i1\"\r\n"},"seq":291,"type":"event"}

1: (3651) ->=library-loaded,id="C:\\WINDOWS\\SysWOW64\\kernel32.dll",target-name="C:\\WINDOWS\\SysWOW64\\kernel32.dll",host-name="C:\\WINDOWS\\SysWOW64\\kernel32.dll",symbols-loaded="0",thread-group="i1"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3654) ->=library-loaded,id=\"C:\\\\WINDOWS\\\\SysWOW64\\\\KernelBase.dll\",target-name=\"C:\\\\WINDOWS\\\\SysWOW64\\\\KernelBase.dll\",host-name=\"C:\\\\WINDOWS\\\\SysWOW64\\\\KernelBase.dll\",symbols-loaded=\"0\",thread-group=\"i1\"\r\n"},"seq":293,"type":"event"}

1: (3654) ->=library-loaded,id="C:\\WINDOWS\\SysWOW64\\KernelBase.dll",target-name="C:\\WINDOWS\\SysWOW64\\KernelBase.dll",host-name="C:\\WINDOWS\\SysWOW64\\KernelBase.dll",symbols-loaded="0",thread-group="i1"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3656) ->=library-loaded,id=\"C:\\\\WINDOWS\\\\SysWOW64\\\\msvcrt.dll\",target-name=\"C:\\\\WINDOWS\\\\SysWOW64\\\\msvcrt.dll\",host-name=\"C:\\\\WINDOWS\\\\SysWOW64\\\\msvcrt.dll\",symbols-loaded=\"0\",thread-group=\"i1\"\r\n"},"seq":295,"type":"event"}

1: (3656) ->=library-loaded,id="C:\\WINDOWS\\SysWOW64\\msvcrt.dll",target-name="C:\\WINDOWS\\SysWOW64\\msvcrt.dll",host-name="C:\\WINDOWS\\SysWOW64\\msvcrt.dll",symbols-loaded="0",thread-group="i1"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3659) ->=library-loaded,id=\"C:\\\\MinGW\\\\bin\\\\libgcc_s_dw2-1.dll\",target-name=\"C:\\\\MinGW\\\\bin\\\\libgcc_s_dw2-1.dll\",host-name=\"C:\\\\MinGW\\\\bin\\\\libgcc_s_dw2-1.dll\",symbols-loaded=\"0\",thread-group=\"i1\"\r\n"},"seq":297,"type":"event"}

1: (3659) ->=library-loaded,id="C:\\MinGW\\bin\\libgcc_s_dw2-1.dll",target-name="C:\\MinGW\\bin\\libgcc_s_dw2-1.dll",host-name="C:\\MinGW\\bin\\libgcc_s_dw2-1.dll",symbols-loaded="0",thread-group="i1"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3664) ->=library-loaded,id=\"C:\\\\MinGW\\\\bin\\\\libstdc++-6.dll\",target-name=\"C:\\\\MinGW\\\\bin\\\\libstdc++-6.dll\",host-name=\"C:\\\\MinGW\\\\bin\\\\libstdc++-6.dll\",symbols-loaded=\"0\",thread-group=\"i1\"\r\n"},"seq":299,"type":"event"}

1: (3664) ->=library-loaded,id="C:\\MinGW\\bin\\libstdc++-6.dll",target-name="C:\\MinGW\\bin\\libstdc++-6.dll",host-name="C:\\MinGW\\bin\\libstdc++-6.dll",symbols-loaded="0",thread-group="i1"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3848) ->=thread-created,id=\"3\",group-id=\"i1\"\r\n"},"seq":301,"type":"event"}

1: (3848) ->=thread-created,id="3",group-id="i1"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3850) <-1017-thread-info 3\r\n"},"seq":303,"type":"event"}

1: (3850) <-1017-thread-info 3

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3850) ->~\"[New Thread 8012.0x27c0]\\n\"\r\n"},"seq":305,"type":"event"}

1: (3850) ->~"[New Thread 8012.0x27c0]\n"

1: (3854) ->*running,thread-id="all"

--> E (output): {"event":"output","body":{"category":"stdout","output":"[New Thread 8012.0x27c0]\n"},"seq":308,"type":"event"}

[New Thread 8012.0x27c0]
--> E (output): {"event":"output","body":{"category":"console","output":"1: (3859) ->=breakpoint-modified,bkpt={number=\"1\",type=\"breakpoint\",disp=\"keep\",enabled=\"y\",addr=\"0x00401426\",func=\"main()\",file=\"c:\\\\\\\\Personal\\\\\\\\Responsibilities\\\\\\\\School\\\\\\\\CS110B\\\\\\\\Assignment 001\\\\\\\\a1_1.cpp\",fullname=\"c:\\\\\\\\Personal\\\\\\\\Responsibilities\\\\\\\\School\\\\\\\\CS110B\\\\\\\\Assignment 001\\\\\\\\a1_1.cpp\",line=\"10\",thread-groups=[\"i1\"],times=\"1\",original-location=\"main\"}\r\n"},"seq":310,"type":"event"}

1: (3859) ->=breakpoint-modified,bkpt={number="1",type="breakpoint",disp="keep",enabled="y",addr="0x00401426",func="main()",file="c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\\\\a1_1.cpp",fullname="c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\\\\a1_1.cpp",line="10",thread-groups=["i1"],times="1",original-location="main"}

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3863) ->*stopped,reason=\"breakpoint-hit\",disp=\"keep\",bkptno=\"1\",frame={addr=\"0x00401426\",func=\"main\",args=[],file=\"c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\\\\a1_1.cpp\",fullname=\"c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\\\\a1_1.cpp\",line=\"10\"},thread-id=\"1\",stopped-threads=\"all\"\r\n"},"seq":312,"type":"event"}

1: (3863) ->*stopped,reason="breakpoint-hit",disp="keep",bkptno="1",frame={addr="0x00401426",func="main",args=[],file="c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001\\a1_1.cpp",fullname="c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001\\a1_1.cpp",line="10"},thread-id="1",stopped-threads="all"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3866) ->(gdb)\r\n"},"seq":314,"type":"event"}

1: (3866) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3871) ->&\"\\n\"\r\n"},"seq":316,"type":"event"}

1: (3871) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3873) ->^done\r\n"},"seq":318,"type":"event"}

1: (3873) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3876) ->(gdb)\r\n"},"seq":320,"type":"event"}

1: (3876) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3878) ->1015^done,threads=[{id=\"1\",target-id=\"Thread 8012.0xe4\",frame={level=\"0\",addr=\"0x00401426\",func=\"main\",args=[],file=\"c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\\\\a1_1.cpp\",fullname=\"c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\\\\a1_1.cpp\",line=\"10\"},state=\"stopped\"}]\r\n"},"seq":322,"type":"event"}

1: (3878) ->1015^done,threads=[{id="1",target-id="Thread 8012.0xe4",frame={level="0",addr="0x00401426",func="main",args=[],file="c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001\\a1_1.cpp",fullname="c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001\\a1_1.cpp",line="10"},state="stopped"}]

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3881) ->(gdb)\r\n"},"seq":324,"type":"event"}

1: (3881) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3884) ->&\"\\n\"\r\n"},"seq":326,"type":"event"}

1: (3884) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3887) ->^done\r\n"},"seq":328,"type":"event"}

1: (3887) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3890) ->(gdb)\r\n"},"seq":330,"type":"event"}

1: (3890) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3891) ->1016^done,threads=[{id=\"2\",target-id=\"Thread 8012.0x27b4\",frame={level=\"0\",addr=\"0x77b1216c\",func=\"??\",args=[]},state=\"stopped\"}]\r\n"},"seq":332,"type":"event"}

1: (3891) ->1016^done,threads=[{id="2",target-id="Thread 8012.0x27b4",frame={level="0",addr="0x77b1216c",func="??",args=[]},state="stopped"}]

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3893) ->(gdb)\r\n"},"seq":334,"type":"event"}

1: (3893) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3894) ->&\"\\n\"\r\n"},"seq":336,"type":"event"}

1: (3894) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3896) ->^done\r\n"},"seq":338,"type":"event"}

1: (3896) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3897) ->(gdb)\r\n"},"seq":340,"type":"event"}

1: (3897) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3898) ->1017^done,threads=[{id=\"3\",target-id=\"Thread 8012.0x27c0\",frame={level=\"0\",addr=\"0x77b1216c\",func=\"??\",args=[]},state=\"stopped\"}]\r\n"},"seq":342,"type":"event"}

1: (3898) ->1017^done,threads=[{id="3",target-id="Thread 8012.0x27c0",frame={level="0",addr="0x77b1216c",func="??",args=[]},state="stopped"}]

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3900) ->(gdb)\r\n"},"seq":344,"type":"event"}

1: (3900) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3904) ->&\"\\n\"\r\n"},"seq":346,"type":"event"}

1: (3904) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3906) ->^done\r\n"},"seq":348,"type":"event"}

1: (3906) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3909) ->(gdb)\r\n"},"seq":350,"type":"event"}

1: (3909) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3971) <-1018-thread-info\r\n"},"seq":352,"type":"event"}

1: (3971) <-1018-thread-info

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3984) 1015: elapsed time 801\r\n"},"seq":354,"type":"event"}

1: (3984) 1015: elapsed time 801

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3985) ->1018^done,threads=[{id=\"3\",target-id=\"Thread 8012.0x27c0\",frame={level=\"0\",addr=\"0x77b1216c\",func=\"??\",args=[]},state=\"stopped\"},{id=\"2\",target-id=\"Thread 8012.0x27b4\",frame={level=\"0\",addr=\"0x77b1216c\",func=\"??\",args=[]},state=\"stopped\"},{id=\"1\",target-id=\"Thread 8012.0xe4\",frame={level=\"0\",addr=\"0x00401426\",func=\"main\",args=[],file=\"c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\\\\a1_1.cpp\",fullname=\"c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\\\\a1_1.cpp\",line=\"10\"},state=\"stopped\"}],current-thread-id=\"1\"\r\n"},"seq":356,"type":"event"}

1: (3985) ->1018^done,threads=[{id="3",target-id="Thread 8012.0x27c0",frame={level="0",addr="0x77b1216c",func="??",args=[]},state="stopped"},{id="2",target-id="Thread 8012.0x27b4",frame={level="0",addr="0x77b1216c",func="??",args=[]},state="stopped"},{id="1",target-id="Thread 8012.0xe4",frame={level="0",addr="0x00401426",func="main",args=[],file="c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001\\a1_1.cpp",fullname="c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001\\a1_1.cpp",line="10"},state="stopped"}],current-thread-id="1"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3990) ->(gdb)\r\n"},"seq":358,"type":"event"}

1: (3990) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3991) ->&\"\\n\"\r\n"},"seq":360,"type":"event"}

1: (3991) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3993) ->^done\r\n"},"seq":362,"type":"event"}

1: (3993) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (3994) ->(gdb)\r\n"},"seq":364,"type":"event"}

1: (3994) ->(gdb)

--> E (thread): {"event":"thread","body":{"reason":"started","threadId":1},"seq":366,"type":"event"}

--> E (output): {"event":"output","body":{"category":"console","output":"1: (4014) 1016: elapsed time 393\r\n"},"seq":368,"type":"event"}

1: (4014) 1016: elapsed time 393

--> E (thread): {"event":"thread","body":{"reason":"started","threadId":2},"seq":370,"type":"event"}

--> E (output): {"event":"output","body":{"category":"console","output":"1: (4018) 1017: elapsed time 167\r\n"},"seq":372,"type":"event"}

1: (4018) 1017: elapsed time 167

--> E (thread): {"event":"thread","body":{"reason":"started","threadId":3},"seq":374,"type":"event"}

--> E (output): {"event":"output","body":{"category":"console","output":"1: (4021) 1018: elapsed time 49\r\n"},"seq":376,"type":"event"}

1: (4021) 1018: elapsed time 49

--> E (output): {"event":"output","body":{"category":"console","output":"1: (4075) <-1019-stack-list-frames 0 1000\r\n"},"seq":378,"type":"event"}

1: (4075) <-1019-stack-list-frames 0 1000

--> E (output): {"event":"output","body":{"category":"console","output":"1: (4085) ->1019^done,stack=[frame={level=\"0\",addr=\"0x00401426\",func=\"main\",file=\"c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\\\\a1_1.cpp\",fullname=\"c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\\\\a1_1.cpp\",line=\"10\"}]\r\n"},"seq":380,"type":"event"}

1: (4085) ->1019^done,stack=[frame={level="0",addr="0x00401426",func="main",file="c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001\\a1_1.cpp",fullname="c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001\\a1_1.cpp",line="10"}]

--> E (output): {"event":"output","body":{"category":"console","output":"1: (4087) ->(gdb)\r\n"},"seq":382,"type":"event"}

1: (4087) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (4088) 1019: elapsed time 12\r\n"},"seq":384,"type":"event"}

1: (4088) 1019: elapsed time 12

--> E (output): {"event":"output","body":{"category":"console","output":"1: (4088) ->&\"\\n\"\r\n"},"seq":386,"type":"event"}

1: (4088) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (4091) ->^done\r\n"},"seq":388,"type":"event"}

1: (4091) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (4093) ->(gdb)\r\n"},"seq":390,"type":"event"}

1: (4093) ->(gdb)

<--   C (threads-8): {"command":"threads","type":"request","seq":8}

--> R (threads-8): {"request_seq":8,"success":true,"command":"threads","body":{"threads":[{"id":1,"name":"Thread #1"},{"id":2,"name":"Thread #2"},{"id":3,"name":"Thread #3"}]},"seq":393,"type":"response"}

--> E (output): {"event":"output","body":{"category":"console","output":"1: (4134) <-1020-break-delete 1\r\n"},"seq":395,"type":"event"}

1: (4134) <-1020-break-delete 1

--> E (output): {"event":"output","body":{"category":"console","output":"1: (4141) ->1020^done\r\n"},"seq":397,"type":"event"}

1: (4141) ->1020^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (4143) ->(gdb)\r\n"},"seq":399,"type":"event"}

1: (4143) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (4144) 1020: elapsed time 9\r\n"},"seq":401,"type":"event"}

1: (4144) 1020: elapsed time 9

--> E (output): {"event":"output","body":{"category":"console","output":"1: (4145) ->&\"\\n\"\r\n"},"seq":403,"type":"event"}

1: (4145) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (4149) ->^done\r\n"},"seq":405,"type":"event"}

1: (4149) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (4150) ->(gdb)\r\n"},"seq":407,"type":"event"}

1: (4150) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (4160) <--exec-continue\r\n"},"seq":409,"type":"event"}

1: (4160) <--exec-continue

--> E (output): {"event":"output","body":{"category":"console","output":"1: (4166) ->^running\r\n"},"seq":411,"type":"event"}

1: (4166) ->^running

--> E (output): {"event":"output","body":{"category":"console","output":"1: (4169) ->*running,thread-id=\"all\"\r\n"},"seq":413,"type":"event"}

1: (4169) ->*running,thread-id="all"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (4171) ->(gdb)\r\n"},"seq":415,"type":"event"}

1: (4171) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10597) ->=breakpoint-modified,bkpt={number=\"2\",type=\"breakpoint\",disp=\"keep\",enabled=\"y\",addr=\"0x00401487\",func=\"main()\",file=\"c:\\\\\\\\Personal\\\\\\\\Responsibilities\\\\\\\\School\\\\\\\\CS110B\\\\\\\\Assignment 001\\\\\\\\a1_1.cpp\",fullname=\"c:\\\\\\\\Personal\\\\\\\\Responsibilities\\\\\\\\School\\\\\\\\CS110B\\\\\\\\Assignment 001\\\\\\\\a1_1.cpp\",line=\"17\",thread-groups=[\"i1\"],times=\"1\",original-location=\"a1_1.cpp:17\"}\r\n"},"seq":417,"type":"event"}

1: (10597) ->=breakpoint-modified,bkpt={number="2",type="breakpoint",disp="keep",enabled="y",addr="0x00401487",func="main()",file="c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\\\\a1_1.cpp",fullname="c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\\\\a1_1.cpp",line="17",thread-groups=["i1"],times="1",original-location="a1_1.cpp:17"}

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10612) ->*stopped,reason=\"breakpoint-hit\",disp=\"keep\",bkptno=\"2\",frame={addr=\"0x00401487\",func=\"_fu5___ZSt3cin\",args=[],file=\"c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\\\\a1_1.cpp\",fullname=\"c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\\\\a1_1.cpp\",line=\"17\"},thread-id=\"1\",stopped-threads=\"all\"\r\n"},"seq":419,"type":"event"}

1: (10612) ->*stopped,reason="breakpoint-hit",disp="keep",bkptno="2",frame={addr="0x00401487",func="_fu5___ZSt3cin",args=[],file="c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001\\a1_1.cpp",fullname="c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001\\a1_1.cpp",line="17"},thread-id="1",stopped-threads="all"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10612) ->(gdb)\r\n"},"seq":421,"type":"event"}

1: (10612) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10612) ->&\"\\n\"\r\n"},"seq":423,"type":"event"}

1: (10612) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10612) ->^done\r\n"},"seq":425,"type":"event"}

1: (10612) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10612) ->(gdb)\r\n"},"seq":427,"type":"event"}

1: (10612) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10612) <-1021-symbol-list-lines \"c:\\\\\\\\Personal\\\\\\\\Responsibilities\\\\\\\\School\\\\\\\\CS110B\\\\\\\\Assignment 001\\\\\\\\a1_1.cpp\"\r\n"},"seq":429,"type":"event"}

1: (10612) <-1021-symbol-list-lines "c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\\\\a1_1.cpp"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10659) ->1021^done,lines=[{pc=\"0x00401410\",line=\"5\"},{pc=\"0x00401421\",line=\"5\"},{pc=\"0x00401426\",line=\"10\"},{pc=\"0x0040143a\",line=\"11\"},{pc=\"0x0040144d\",line=\"12\"},{pc=\"0x00401457\",line=\"13\"},{pc=\"0x0040146a\",line=\"14\"},{pc=\"0x00401474\",line=\"15\"},{pc=\"0x00401487\",line=\"17\"},{pc=\"0x00401490\",line=\"17\"},{pc=\"0x00401493\",line=\"17\"},{pc=\"0x00401497\",line=\"18\"},{pc=\"0x004014ab\",line=\"18\"},{pc=\"0x004014bc\",line=\"20\"},{pc=\"0x004014c9\",line=\"0\"},{pc=\"0x004014db\",line=\"20\"},{pc=\"0x004014e1\",line=\"20\"},{pc=\"0x004014f0\",line=\"0\"},{pc=\"0x00401506\",line=\"20\"},{pc=\"0x00401509\",line=\"20\"},{pc=\"0x0040150f\",line=\"20\"},{pc=\"0x00401525\",line=\"0\"}]\r\n"},"seq":431,"type":"event"}

1: (10659) ->1021^done,lines=[{pc="0x00401410",line="5"},{pc="0x00401421",line="5"},{pc="0x00401426",line="10"},{pc="0x0040143a",line="11"},{pc="0x0040144d",line="12"},{pc="0x00401457",line="13"},{pc="0x0040146a",line="14"},{pc="0x00401474",line="15"},{pc="0x00401487",line="17"},{pc="0x00401490",line="17"},{pc="0x00401493",line="17"},{pc="0x00401497",line="18"},{pc="0x004014ab",line="18"},{pc="0x004014bc",line="20"},{pc="0x004014c9",line="0"},{pc="0x004014db",line="20"},{pc="0x004014e1",line="20"},{pc="0x004014f0",line="0"},{pc="0x00401506",line="20"},{pc="0x00401509",line="20"},{pc="0x0040150f",line="20"},{pc="0x00401525",line="0"}]

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10659) ->(gdb)\r\n"},"seq":433,"type":"event"}

1: (10659) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10659) ->&\"\\n\"\r\n"},"seq":435,"type":"event"}

1: (10659) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10659) ->^done\r\n"},"seq":437,"type":"event"}

1: (10659) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10659) 1021: elapsed time 46\r\n"},"seq":439,"type":"event"}

1: (10659) 1021: elapsed time 46

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10659) ->(gdb)\r\n"},"seq":441,"type":"event"}

1: (10659) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10659) <-1022-stack-list-frames 0 1000\r\n"},"seq":443,"type":"event"}

1: (10659) <-1022-stack-list-frames 0 1000

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10675) ->1022^done,stack=[frame={level=\"0\",addr=\"0x00401487\",func=\"_fu5___ZSt3cin\",file=\"c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\\\\a1_1.cpp\",fullname=\"c:\\\\Personal\\\\Responsibilities\\\\School\\\\CS110B\\\\Assignment 001\\\\a1_1.cpp\",line=\"17\"}]\r\n"},"seq":445,"type":"event"}

1: (10675) ->1022^done,stack=[frame={level="0",addr="0x00401487",func="_fu5___ZSt3cin",file="c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001\\a1_1.cpp",fullname="c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001\\a1_1.cpp",line="17"}]

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10675) ->(gdb)\r\n"},"seq":447,"type":"event"}

1: (10675) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10675) 1022: elapsed time 15\r\n"},"seq":449,"type":"event"}

1: (10675) 1022: elapsed time 15

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10675) ->&\"\\n\"\r\n"},"seq":451,"type":"event"}

1: (10675) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10675) ->^done\r\n"},"seq":453,"type":"event"}

1: (10675) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10675) ->(gdb)\r\n"},"seq":455,"type":"event"}

1: (10675) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10706) <-1023-interpreter-exec console \"info sharedlibrary\"\r\n"},"seq":457,"type":"event"}

1: (10706) <-1023-interpreter-exec console "info sharedlibrary"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10722) ->~\"From        To          Syms Read   Shared Object Library\\n\"\r\n"},"seq":459,"type":"event"}

1: (10722) ->~"From        To          Syms Read   Shared Object Library\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10722) ->~\"0x754a0000  0x75564794  Yes         C:\\\\WINDOWS\\\\SysWOW64\\\\kernel32.dll\\n\"\r\n"},"seq":461,"type":"event"}

1: (10722) ->~"0x754a0000  0x75564794  Yes         C:\\WINDOWS\\SysWOW64\\kernel32.dll\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10722) ->~\"0x75131000  0x75329d7c  Yes         C:\\\\WINDOWS\\\\SysWOW64\\\\KernelBase.dll\\n\"\r\n"},"seq":463,"type":"event"}

1: (10722) ->~"0x75131000  0x75329d7c  Yes         C:\\WINDOWS\\SysWOW64\\KernelBase.dll\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10737) ->~\"0x76b91000  0x76c4f748  Yes         C:\\\\WINDOWS\\\\SysWOW64\\\\msvcrt.dll\\n\"\r\n"},"seq":465,"type":"event"}

1: (10737) ->~"0x76b91000  0x76c4f748  Yes         C:\\WINDOWS\\SysWOW64\\msvcrt.dll\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10737) ->~\"0x6eb41000  0x6eb637fc  Yes         C:\\\\MinGW\\\\bin\\\\libgcc_s_dw2-1.dll\\n\"\r\n"},"seq":467,"type":"event"}

1: (10737) ->~"0x6eb41000  0x6eb637fc  Yes         C:\\MinGW\\bin\\libgcc_s_dw2-1.dll\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10737) ->~\"0x6fe41000  0x6ffb8a68  Yes         C:\\\\MinGW\\\\bin\\\\libstdc++-6.dll\\n\"\r\n"},"seq":469,"type":"event"}

1: (10737) ->~"0x6fe41000  0x6ffb8a68  Yes         C:\\MinGW\\bin\\libstdc++-6.dll\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10737) ->1023^done\r\n"},"seq":471,"type":"event"}

1: (10737) ->1023^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10737) ->(gdb)\r\n"},"seq":473,"type":"event"}

1: (10737) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10737) ->&\"\\n\"\r\n"},"seq":475,"type":"event"}

1: (10737) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10737) ->^done\r\n"},"seq":477,"type":"event"}

1: (10737) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10737) ->(gdb)\r\n"},"seq":479,"type":"event"}

1: (10737) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10737) 1023: elapsed time 31\r\n"},"seq":481,"type":"event"}

1: (10737) 1023: elapsed time 31

--> E (output): {"event":"output","body":{"category":"console","output":"Loaded 'C:\\WINDOWS\\SysWOW64\\kernel32.dll'. Symbols loaded.\r\n"},"seq":483,"type":"event"}

Loaded 'C:\WINDOWS\SysWOW64\kernel32.dll'. Symbols loaded.

--> E (output): {"event":"output","body":{"category":"console","output":"Loaded 'C:\\WINDOWS\\SysWOW64\\KernelBase.dll'. Symbols loaded.\r\n"},"seq":485,"type":"event"}

Loaded 'C:\WINDOWS\SysWOW64\KernelBase.dll'. Symbols loaded.

--> E (output): {"event":"output","body":{"category":"console","output":"Loaded 'C:\\WINDOWS\\SysWOW64\\msvcrt.dll'. Symbols loaded.\r\n"},"seq":487,"type":"event"}

Loaded 'C:\WINDOWS\SysWOW64\msvcrt.dll'. Symbols loaded.

--> E (output): {"event":"output","body":{"category":"console","output":"Loaded 'C:\\MinGW\\bin\\libgcc_s_dw2-1.dll'. Symbols loaded.\r\n"},"seq":489,"type":"event"}

Loaded 'C:\MinGW\bin\libgcc_s_dw2-1.dll'. Symbols loaded.

--> E (output): {"event":"output","body":{"category":"console","output":"Loaded 'C:\\MinGW\\bin\\libstdc++-6.dll'. Symbols loaded.\r\n"},"seq":491,"type":"event"}

Loaded 'C:\MinGW\bin\libstdc++-6.dll'. Symbols loaded.

--> E (output): {"event":"output","body":{"category":"console","output":"Execute debugger commands using \"-exec <command>\", for example \"-exec info registers\" will list registers in use (when GDB is the debugger)\r\n"},"seq":493,"type":"event"}

Execute debugger commands using "-exec <command>", for example "-exec info registers" will list registers in use (when GDB is the debugger)

--> E (stopped): {"event":"stopped","body":{"reason":"breakpoint","threadId":1,"allThreadsStopped":true,"source":{"name":"a1_1.cpp","path":"c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001\\a1_1.cpp","sources":[],"checksums":[]},"line":17,"column":1},"seq":495,"type":"event"}

<--   C (threads-9): {"command":"threads","type":"request","seq":9}

--> R (threads-9): {"request_seq":9,"success":true,"command":"threads","body":{"threads":[{"id":1,"name":"Thread #1"},{"id":2,"name":"Thread #2"},{"id":3,"name":"Thread #3"}]},"seq":498,"type":"response"}

<--   C (stackTrace-10): {"command":"stackTrace","arguments":{"threadId":1,"startFrame":0,"levels":20},"type":"request","seq":10}

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10925) <-1024-stack-list-arguments 0 0 0\r\n"},"seq":501,"type":"event"}

1: (10925) <-1024-stack-list-arguments 0 0 0

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10932) ->1024^done,stack-args=[frame={level=\"0\",args=[]}]\r\n"},"seq":503,"type":"event"}

1: (10932) ->1024^done,stack-args=[frame={level="0",args=[]}]

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10934) ->(gdb)\r\n"},"seq":505,"type":"event"}

1: (10934) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10939) 1024: elapsed time 13\r\n"},"seq":507,"type":"event"}

1: (10939) 1024: elapsed time 13

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10940) ->&\"\\n\"\r\n"},"seq":509,"type":"event"}

1: (10940) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10943) ->^done\r\n"},"seq":511,"type":"event"}

1: (10943) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (10945) ->(gdb)\r\n"},"seq":513,"type":"event"}

1: (10945) ->(gdb)

--> R (stackTrace-10): {"request_seq":10,"success":true,"command":"stackTrace","body":{"stackFrames":[{"id":1000,"name":"_fu5___ZSt3cin()","source":{"name":"a1_1.cpp","path":"c:\\Personal\\Responsibilities\\School\\CS110B\\Assignment 001\\a1_1.cpp","sources":[],"checksums":[]},"line":17,"column":1}],"totalFrames":1},"seq":515,"type":"response"}

<--   C (scopes-11): {"command":"scopes","arguments":{"frameId":1000},"type":"request","seq":11}

--> E (output): {"event":"output","body":{"category":"console","output":"1: (11458) <-1025-stack-list-variables 0\r\n"},"seq":518,"type":"event"}

1: (11458) <-1025-stack-list-variables 0

--> E (output): {"event":"output","body":{"category":"console","output":"1: (11474) ->1025^done,variables=[{name=\"month\"},{name=\"day\"},{name=\"year\"}]\r\n"},"seq":520,"type":"event"}

1: (11474) ->1025^done,variables=[{name="month"},{name="day"},{name="year"}]

--> E (output): {"event":"output","body":{"category":"console","output":"1: (11474) ->(gdb)\r\n"},"seq":522,"type":"event"}

1: (11474) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (11474) ->&\"\\n\"\r\n"},"seq":524,"type":"event"}

1: (11474) ->&"\n"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (11474) ->^done\r\n"},"seq":526,"type":"event"}

1: (11474) ->^done

--> E (output): {"event":"output","body":{"category":"console","output":"1: (11474) ->(gdb)\r\n"},"seq":528,"type":"event"}

1: (11474) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (11474) 1025: elapsed time 15\r\n"},"seq":530,"type":"event"}

1: (11474) 1025: elapsed time 15

--> E (output): {"event":"output","body":{"category":"console","output":"1: (11533) <-1026-var-create - * \"month\"\r\n"},"seq":532,"type":"event"}

1: (11533) <-1026-var-create - * "month"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (11545) ->1026^done,name=\"var1\",numchild=\"0\",value=\"5\",type=\"int\",thread-id=\"1\",has_more=\"0\"\r\n"},"seq":534,"type":"event"}

1: (11545) ->1026^done,name="var1",numchild="0",value="5",type="int",thread-id="1",has_more="0"

--> E (output): {"event":"output","body":{"category":"console","output":"1: (11546) ->(gdb)\r\n"},"seq":536,"type":"event"}

1: (11546) ->(gdb)

--> E (output): {"event":"output","body":{"category":"console","output":"1: (11565) 1026: elapsed time 32\r\n"},"seq":538,"type":"event"}

1: (11565) 1026: elapsed time 32

--> E (output): {"event":"output","body":{"category":"console","output":"1: (11569) <-1027-var-create - * \"day\"\r\n"},"seq":540,"type":"event"}

1: (11569) <-1027-var-create - * "day"

--> E (output): {"ev

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.