Skip to content

Commit 8cd3bbe

Browse files
drrtuyRoman Nozdrin
and
Roman Nozdrin
authored
VScode config to debug processes (mariadb-corporation#2552)
Co-authored-by: Roman Nozdrin <[email protected]>
1 parent 8a1b8ec commit 8cd3bbe

File tree

1 file changed

+73
-0
lines changed

1 file changed

+73
-0
lines changed

.vscode/launch.json

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "controllernode",
9+
"type": "cppdbg",
10+
"request": "attach",
11+
"processId": "${command:pickProcess}",
12+
"program": "/usr/bin/controllernode",
13+
"cwd": "${workspaceFolder}",
14+
"additionalSOLibSearchPath": "${workspaceFolder}/lib/",
15+
"symbolLoadInfo": {
16+
"loadAll": true,
17+
"exceptionList": ""
18+
},
19+
},
20+
{
21+
"name": "DDLProc",
22+
"type": "cppdbg",
23+
"request": "attach",
24+
"processId": "${command:pickProcess}",
25+
"program": "/usr/bin/DDLProc",
26+
"cwd": "${workspaceFolder}",
27+
"additionalSOLibSearchPath": "${workspaceFolder}/lib/",
28+
"symbolLoadInfo": {
29+
"loadAll": true,
30+
"exceptionList": ""
31+
},
32+
},
33+
{
34+
"name": "DMLProc",
35+
"type": "cppdbg",
36+
"request": "attach",
37+
"processId": "${command:pickProcess}",
38+
"program": "/usr/bin/DMLProc",
39+
"cwd": "${workspaceFolder}",
40+
"additionalSOLibSearchPath": "${workspaceFolder}/lib/",
41+
"symbolLoadInfo": {
42+
"loadAll": true,
43+
"exceptionList": ""
44+
},
45+
},
46+
{
47+
"name": "PrimProc",
48+
"type": "cppdbg",
49+
"request": "attach",
50+
"processId": "${command:pickProcess}",
51+
"program": "/usr/bin/PrimProc",
52+
"cwd": "${workspaceFolder}",
53+
"additionalSOLibSearchPath": "${workspaceFolder}/lib/",
54+
"symbolLoadInfo": {
55+
"loadAll": true,
56+
"exceptionList": ""
57+
},
58+
},
59+
{
60+
"name": "WriteEngineServer",
61+
"type": "cppdbg",
62+
"request": "attach",
63+
"processId": "${command:pickProcess}",
64+
"program": "/usr/bin/WriteEngineServer",
65+
"cwd": "${workspaceFolder}",
66+
"additionalSOLibSearchPath": "${workspaceFolder}/lib/",
67+
"symbolLoadInfo": {
68+
"loadAll": true,
69+
"exceptionList": ""
70+
},
71+
},
72+
]
73+
}

0 commit comments

Comments
 (0)