gdb_attach
Attach to a running process using session ID and process ID to enable debugging with GDB commands, facilitating real-time analysis and troubleshooting.
Instructions
Attach to a running process
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pid | Yes | Process ID to attach to | |
sessionId | Yes | GDB session ID |
Input Schema (JSON Schema)
{
"properties": {
"pid": {
"description": "Process ID to attach to",
"type": "number"
},
"sessionId": {
"description": "GDB session ID",
"type": "string"
}
},
"required": [
"sessionId",
"pid"
],
"type": "object"
}