summaryrefslogtreecommitdiff
path: root/sys/dev/wscons
diff options
context:
space:
mode:
authorMartin Pieuchot <mpi@cvs.openbsd.org>2017-04-30 16:45:47 +0000
committerMartin Pieuchot <mpi@cvs.openbsd.org>2017-04-30 16:45:47 +0000
commite62fafe0fa1eeeb884ab8eaf16544bea713623e0 (patch)
treea8086015aa47b90f864ae82e4621f00dfa5b1fa4 /sys/dev/wscons
parentcae22d750b8ecab9026d8c9364adf6d4174e81c8 (diff)
Rename Debugger() into db_enter().
Using a name with the 'db_' prefix makes it invisible from the dynamic profiler. ok deraadt@, kettenis@, visa@
Diffstat (limited to 'sys/dev/wscons')
-rw-r--r--sys/dev/wscons/wskbd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/wscons/wskbd.c b/sys/dev/wscons/wskbd.c
index 54342e63317..252b782aaf2 100644
--- a/sys/dev/wscons/wskbd.c
+++ b/sys/dev/wscons/wskbd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: wskbd.c,v 1.85 2017/03/11 11:55:03 mpi Exp $ */
+/* $OpenBSD: wskbd.c,v 1.86 2017/04/30 16:45:46 mpi Exp $ */
/* $NetBSD: wskbd.c,v 1.80 2005/05/04 01:52:16 augustss Exp $ */
/*
@@ -1504,7 +1504,7 @@ internal_command(struct wskbd_softc *sc, u_int *type, keysym_t ksym,
#ifdef DDB
if (ksym == KS_Cmd_Debugger) {
if (sc->sc_isconsole && db_console)
- Debugger();
+ db_enter();
/* discard this key (ddb discarded command modifiers) */
*type = WSCONS_EVENT_KEY_UP;
return (1);
@@ -1542,7 +1542,7 @@ internal_command(struct wskbd_softc *sc, u_int *type, keysym_t ksym,
#ifdef DDB
case 2:
if (sc->sc_isconsole && db_console)
- Debugger();
+ db_enter();
/* discard this key (ddb discarded command modifiers) */
*type = WSCONS_EVENT_KEY_UP;
break;