edb_set_watchpoint
Set a watchpoint to monitor memory access, stopping execution on write, read, or both.
Instructions
Set a watchpoint to monitor memory access. Three modes:
'write': stops when value changes (default)
'read': stops when value is read
'access': stops on both read and write
Args: params (WatchpointInput): Watchpoint configuration - expression (str): E.g., 'x', '*0x7fff0000', 'my_global' - watch_type (str): 'write', 'read', or 'access' (default: 'write')
Returns: str: Watchpoint details
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |