diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/compat/ndis/subr_ntoskrnl.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/compat/ndis/subr_ntoskrnl.c b/sys/compat/ndis/subr_ntoskrnl.c index 02c6f52..a7a08fc 100644 --- a/sys/compat/ndis/subr_ntoskrnl.c +++ b/sys/compat/ndis/subr_ntoskrnl.c @@ -44,6 +44,7 @@ __FBSDID("$FreeBSD$"); #include <sys/mutex.h> #include <sys/callout.h> +#include <sys/kdb.h> #include <sys/kernel.h> #include <sys/proc.h> #include <sys/kthread.h> @@ -1632,8 +1633,8 @@ ntoskrnl_dbgprint(char *fmt, ...) __stdcall static void ntoskrnl_debugger(void) { - Debugger("ntoskrnl_debugger(): breakpoint"); - return; + + kdb_enter("ntoskrnl_debugger(): breakpoint"); } static void |