Set breakpoint with skip count */ ARGSUSED*/
| 275 | /* Set breakpoint with skip count */ |
| 276 | /*ARGSUSED*/ |
| 277 | void |
| 278 | db_breakpoint_cmd(db_expr_t addr, bool have_addr, db_expr_t count, char *modif) |
| 279 | { |
| 280 | if (count == -1) |
| 281 | count = 1; |
| 282 | |
| 283 | db_set_breakpoint(db_map_addr(addr), (db_addr_t)addr, count); |
| 284 | } |
| 285 | |
| 286 | /* list breakpoints */ |
| 287 | void |
nothing calls this directly
no test coverage detected