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

Function db_pc_is_singlestep

freebsd/ddb/db_run.c:84–93  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

82#endif
83#ifndef db_pc_is_singlestep
84static bool
85db_pc_is_singlestep(db_addr_t pc)
86{
87#ifdef SOFTWARE_SSTEP
88 if ((db_not_taken_bkpt != 0 && pc == db_not_taken_bkpt->address)
89 || (db_taken_bkpt != 0 && pc == db_taken_bkpt->address))
90 return (true);
91#endif
92 return (false);
93}
94#endif
95
96bool

Callers 1

db_stop_at_pcFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected