From 193607a47cf544b5dc75faa5601d76ba23f5ba7b Mon Sep 17 00:00:00 2001 From: simokawa Date: Fri, 8 Jun 2007 03:05:57 +0000 Subject: Replace breakpoint() with kdb_enter(). --- sys/dev/dcons/dcons_os.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/dcons/dcons_os.c b/sys/dev/dcons/dcons_os.c index 83e9885..fb626b4 100644 --- a/sys/dev/dcons/dcons_os.c +++ b/sys/dev/dcons/dcons_os.c @@ -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) { -- cgit v1.1