mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-10 01:27:29 +00:00
VScode config to debug processes (#2552)
Co-authored-by: Roman Nozdrin <rnozdrin@mariadb.com>
This commit is contained in:
73
.vscode/launch.json
vendored
Normal file
73
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
{
|
||||||
|
// 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": "controllernode",
|
||||||
|
"type": "cppdbg",
|
||||||
|
"request": "attach",
|
||||||
|
"processId": "${command:pickProcess}",
|
||||||
|
"program": "/usr/bin/controllernode",
|
||||||
|
"cwd": "${workspaceFolder}",
|
||||||
|
"additionalSOLibSearchPath": "${workspaceFolder}/lib/",
|
||||||
|
"symbolLoadInfo": {
|
||||||
|
"loadAll": true,
|
||||||
|
"exceptionList": ""
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "DDLProc",
|
||||||
|
"type": "cppdbg",
|
||||||
|
"request": "attach",
|
||||||
|
"processId": "${command:pickProcess}",
|
||||||
|
"program": "/usr/bin/DDLProc",
|
||||||
|
"cwd": "${workspaceFolder}",
|
||||||
|
"additionalSOLibSearchPath": "${workspaceFolder}/lib/",
|
||||||
|
"symbolLoadInfo": {
|
||||||
|
"loadAll": true,
|
||||||
|
"exceptionList": ""
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "DMLProc",
|
||||||
|
"type": "cppdbg",
|
||||||
|
"request": "attach",
|
||||||
|
"processId": "${command:pickProcess}",
|
||||||
|
"program": "/usr/bin/DMLProc",
|
||||||
|
"cwd": "${workspaceFolder}",
|
||||||
|
"additionalSOLibSearchPath": "${workspaceFolder}/lib/",
|
||||||
|
"symbolLoadInfo": {
|
||||||
|
"loadAll": true,
|
||||||
|
"exceptionList": ""
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "PrimProc",
|
||||||
|
"type": "cppdbg",
|
||||||
|
"request": "attach",
|
||||||
|
"processId": "${command:pickProcess}",
|
||||||
|
"program": "/usr/bin/PrimProc",
|
||||||
|
"cwd": "${workspaceFolder}",
|
||||||
|
"additionalSOLibSearchPath": "${workspaceFolder}/lib/",
|
||||||
|
"symbolLoadInfo": {
|
||||||
|
"loadAll": true,
|
||||||
|
"exceptionList": ""
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "WriteEngineServer",
|
||||||
|
"type": "cppdbg",
|
||||||
|
"request": "attach",
|
||||||
|
"processId": "${command:pickProcess}",
|
||||||
|
"program": "/usr/bin/WriteEngineServer",
|
||||||
|
"cwd": "${workspaceFolder}",
|
||||||
|
"additionalSOLibSearchPath": "${workspaceFolder}/lib/",
|
||||||
|
"symbolLoadInfo": {
|
||||||
|
"loadAll": true,
|
||||||
|
"exceptionList": ""
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]
|
||||||
|
}
|
Reference in New Issue
Block a user