lldb_backtrace
Analyze program crashes by retrieving stack traces showing function calls, source locations, and frame details for debugging C/C++ applications.
Instructions
Get a stack backtrace showing the call chain.
The backtrace shows:
- Frame numbers (0 is current frame)
- Function names and addresses
- Source file and line numbers (if available)
- Module/library names
Args:
params: BacktraceInput with executable and stopping point
Returns:
str: Stack backtrace with frame informationInput Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |