gdb_finish
Execute until the current function returns in a GDB debugging session. Simplify debugging by automatically stepping through code to the end of the function without manual intervention.
Instructions
Execute until the current function returns
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| sessionId | Yes | GDB session ID | 
Input Schema (JSON Schema)
{
  "properties": {
    "sessionId": {
      "description": "GDB session ID",
      "type": "string"
    }
  },
  "required": [
    "sessionId"
  ],
  "type": "object"
}