gdb_load_core
Analyze core dump files in GDB sessions by specifying the program executable and core dump path, enabling structured debugging and issue diagnosis.
Instructions
Load a core dump file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
corePath | Yes | Path to the core dump file | |
program | Yes | Path to the program executable | |
sessionId | Yes | GDB session ID |
Input Schema (JSON Schema)
{
"properties": {
"corePath": {
"description": "Path to the core dump file",
"type": "string"
},
"program": {
"description": "Path to the program executable",
"type": "string"
},
"sessionId": {
"description": "GDB session ID",
"type": "string"
}
},
"required": [
"sessionId",
"program",
"corePath"
],
"type": "object"
}