MCPcopy Create free account
hub / github.com/F-Stack/f-stack / db_breakpoint_cmd

Function db_breakpoint_cmd

freebsd/ddb/db_break.c:277–284  ·  view source on GitHub ↗

Set breakpoint with skip count */ ARGSUSED*/

Source from the content-addressed store, hash-verified

275/* Set breakpoint with skip count */
276/*ARGSUSED*/
277void
278db_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 */
287void

Callers

nothing calls this directly

Calls 2

db_set_breakpointFunction · 0.85
db_map_addrFunction · 0.85

Tested by

no test coverage detected