microsoft / microsoft/MIEngine
When debugging multiple inferiors with gdb, if one inferior exits the full debug session stops
Nobody has claimed this yet.
- Dominant language
- C#
- Stars
- 859
- Forks
- 233
- Avg merge
- 1d 6h
- Merged PRs (30d)
- 3
Description
Environment
- OS and version: Arch Linux with gdb 16.3
- VS Code: 1.103.1
- C/C++ extension: 1.26.3
- OS and version of remote machine (if applicable): n/a
- GDB / LLDB version: 16.3
Bug Summary and Steps to Reproduce
Bug Summary:
When debugging multiple inferiors in gdb, if one inferior exits the vscode debug session ends.
Steps to reproduce:
- git clone this repo: https://github.com/lostgoat/multiinferior-repro
- Set a breakpoint on the "parent exiting" line
- Start the "(gdb) Launch" debug task
When running gdb with the same configuration via commandline everything works correctly. Execution pauses after the child exits, and then one can use inferior <id> to switch back to the parent and keep debugging.
Debugger Configurations
{
"name": "(gdb) Launch",
"type": "cppdbg",
"preLaunchTask": "build test app",
"request": "launch",
"program": "${workspaceFolder}/test.out",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Keep both sides of fork",
"text": "set detach-on-fork off"
},
{
"description": "Allow multiple inferiors to run",
"text": "set schedule-multiple on"
}
],
"logging": { "engineLogging": true, "trace": true, "traceResponse": true }
},
Debugger Logs
Output window:
Starting test
parent running
waiting for child: 965664
parent waitpid returned: 0 - 0
child started
child looping: 0
child looping: 1
child looping: 2
child looping: 3
parent waitpid returned: 0 - 0
child looping: 4
child looping: 5
child looping: 6
child looping: 7
parent waitpid returned: 0 - 0
child looping: 8
child looping: 9
child exiting
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Run the linked multiinferior-repro with the shown “(gdb) Launch” configuration and enable the listed engine, trace, and traceResponse logging. Trace how the debug session handles the child inferior’s exit, then verify that the parent remains selectable with inferior <id> and that the session stays active after the child exits.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- cpp, csharp, vscode
- Domain
- developer-experience, tooling
- Issue type
- Bug
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Quiet
- Clarity
- Mostly clear
- Newbie friendliness
- 52/100