windbg_set_breakpoint
Halt program execution at a specified address or symbol by setting a software breakpoint. Optionally include a condition to trigger only when true.
Instructions
Set a software breakpoint at an address or symbol. Optional cdb-expression condition.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| location | Yes | Address or symbol, e.g. 'main', 'mymod!Foo+0x42', '0x7ff7`12340000' | |
| condition | No | Optional cdb expression; bp continues if false |