Loading .vscode/launch.json +28 −0 Original line number Diff line number Diff line Loading @@ -4,6 +4,34 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "gekkofs benchmark", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/build/src/daemon/gkfs_daemon", "args": [ "--benchmark", "randomslicing", "--host-count", "800" ], "stopAtEntry": false, "cwd": "${workspaceFolder}", "externalConsole": false, "MIMode": "gdb", "setupCommands": [ { "description": "Enable pretty-printing for gdb", "text": "-enable-pretty-printing", "ignoreFailures": true }, { "description": "Enable all-exceptions", "text": "catch throw", "ignoreFailures": true } ] }, { "name": "gekkofs daemon", "type": "cppdbg", Loading Loading
.vscode/launch.json +28 −0 Original line number Diff line number Diff line Loading @@ -4,6 +4,34 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "gekkofs benchmark", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/build/src/daemon/gkfs_daemon", "args": [ "--benchmark", "randomslicing", "--host-count", "800" ], "stopAtEntry": false, "cwd": "${workspaceFolder}", "externalConsole": false, "MIMode": "gdb", "setupCommands": [ { "description": "Enable pretty-printing for gdb", "text": "-enable-pretty-printing", "ignoreFailures": true }, { "description": "Enable all-exceptions", "text": "catch throw", "ignoreFailures": true } ] }, { "name": "gekkofs daemon", "type": "cppdbg", Loading