aboutsummaryrefslogtreecommitdiff
path: root/sys/isa/sio.c
diff options
context:
space:
mode:
authorKazutaka YOKOTA <yokota@FreeBSD.org>2000-01-11 14:54:01 +0000
committerKazutaka YOKOTA <yokota@FreeBSD.org>2000-01-11 14:54:01 +0000
commit35e61cbd71f82f4d81f75d39a54c90e52d1bd056 (patch)
tree571b01b68ca2a971bee51816a2fc6b3cb4bf2d21 /sys/isa/sio.c
parent3c47fb79228ffdb32ee27e5c00f55deb2419da55 (diff)
downloadsrc-35e61cbd71f82f4d81f75d39a54c90e52d1bd056.tar.gz
src-35e61cbd71f82f4d81f75d39a54c90e52d1bd056.zip
Add a new mechanism, cndbctl(), to tell the console driver that
ddb is entered. Don't refer to `in_Debugger' to see if we are in the debugger. (The variable used to be static in Debugger() and wasn't updated if ddb is entered via traps and panic anyway.) - Don't refer to `in_Debugger'. - Add `db_active' to i386/i386/db_interface.d (as in alpha/alpha/db_interface.c). - Remove cnpollc() stub from ddb/db_input.c. - Add the dbctl function to syscons, pcvt, and sio. (The function for pcvt and sio is noop at the moment.) Jointly developed by: bde and me (The final version was tweaked by me and not reviewed by bde. Thus, if there is any error in this commit, that is entirely of mine, not his.) Some changes were obtained from: NetBSD
Notes
Notes: svn path=/head/; revision=55823
Diffstat (limited to 'sys/isa/sio.c')
-rw-r--r--sys/isa/sio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/isa/sio.c b/sys/isa/sio.c
index 81dd1d7be8cc..476c967143ae 100644
--- a/sys/isa/sio.c
+++ b/sys/isa/sio.c
@@ -2682,8 +2682,8 @@ static cn_getc_t siocngetc;
static cn_putc_t siocnputc;
#ifdef __i386__
-CONS_DRIVER(sio, siocnprobe, siocninit, NULL, siocngetc, siocncheckc, siocnputc);
-
+CONS_DRIVER(sio, siocnprobe, siocninit, NULL, siocngetc, siocncheckc,
+ siocnputc, NULL);
#endif
/* To get the GDB related variables */