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

Function db_clear_breakpoints

freebsd/ddb/db_break.c:191–205  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

189}
190
191void
192db_clear_breakpoints(void)
193{
194 register db_breakpoint_t bkpt;
195
196 if (db_breakpoints_inserted) {
197 for (bkpt = db_breakpoint_list;
198 bkpt != 0;
199 bkpt = bkpt->link)
200 if (db_map_current(bkpt->map)) {
201 BKPT_CLEAR(bkpt->address, &bkpt->bkpt_inst);
202 }
203 db_breakpoints_inserted = false;
204 }
205}
206
207#ifdef SOFTWARE_SSTEP
208/*

Callers 1

db_stop_at_pcFunction · 0.85

Calls 1

db_map_currentFunction · 0.85

Tested by

no test coverage detected