Closed
Description
Environment
- OS and version: Ubuntu 22.04
- VS Code: 1.93.0
- C/C++ extension: v1.22.2 (pre-release)
- OS and version of remote machine (if applicable):
- GDB / LLDB version: GNU gdb (Ubuntu 12.1-0ubuntu1~22.04.2) 12.1
Bug Summary and Steps to Reproduce
Bug Summary:
On performing any form of action like replacing all the words with another word using vscode multiple cpptools-srv processes are created with use close to 0.5 GB of RAM each causing the laptop to crash. The CPU utilisation also goes up.
Steps to reproduce:
- Open any cpp project
- With default config
- Search and replace a word that is there across all files
- Check the system monitor to see multiple processes
Debugger Configurations
{
"version": "2.0.0",
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: clang-14 build active file",
"command": "/usr/bin/clang-14",
"args": [
"-fcolor-diagnostics",
"-fansi-escape-codes",
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": "build",
"detail": "compiler: /usr/bin/clang-14"
}
]
}
Debugger Logs
NIL
Other Extensions
No response
Additional Information
Before
After
Metadata
Metadata
Assignees
Type
Projects
Status
Done