mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Replace breakpoint() with kdb_enter().
This commit is contained in:
parent
599741f908
commit
c8dde64562
1 changed files with 2 additions and 2 deletions
|
|
@ -207,11 +207,11 @@ dcons_check_break(struct dcons_softc *dc, int c)
|
|||
#ifdef GDB
|
||||
if (gdb_cur == &dcons_gdb_dbgport) {
|
||||
kdb_dbbe_select("gdb");
|
||||
breakpoint();
|
||||
kdb_enter("Break sequence on dcons gdb port");
|
||||
}
|
||||
#endif
|
||||
} else
|
||||
breakpoint();
|
||||
kdb_enter("Break sequence on dcons console port");
|
||||
}
|
||||
#else
|
||||
switch (dc->brk_state) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue