aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Murphey <rich@FreeBSD.org>1994-02-01 15:09:10 +0000
committerRich Murphey <rich@FreeBSD.org>1994-02-01 15:09:10 +0000
commit20fabfa95d5152170f928d41252cfee8934a4112 (patch)
treece8e56a1cb23a103917024035b9ae307c8ebe2ea
parent7745b4472a6b85da14dbb6df8ffe8a5ae8d6ee2f (diff)
downloadsrc-20fabfa95d5152170f928d41252cfee8934a4112.tar.gz
src-20fabfa95d5152170f928d41252cfee8934a4112.zip
Add missing arg to Debugger() call.
Add missing close paren in sgetc() definition.
Notes
Notes: svn path=/head/; revision=1070
-rw-r--r--sys/dev/syscons/syscons.c6
-rw-r--r--sys/i386/isa/syscons.c6
-rw-r--r--sys/isa/syscons.c6
3 files changed, 9 insertions, 9 deletions
diff --git a/sys/dev/syscons/syscons.c b/sys/dev/syscons/syscons.c
index 71325887f3df..889be4dcec2d 100644
--- a/sys/dev/syscons/syscons.c
+++ b/sys/dev/syscons/syscons.c
@@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from:@(#)syscons.c 1.3 940129
- * $Id: syscons.c,v 1.29 1994/02/01 10:43:02 ache Exp $
+ * $Id: syscons.c,v 1.30 1994/02/01 11:13:49 ache Exp $
*
*/
@@ -2303,7 +2303,7 @@ next_code:
if (cur_console->smode.mode == VT_AUTO &&
console[0].smode.mode == VT_AUTO)
switch_scr(0);
- Debugger();
+ Debugger("manual escape to debugger");
return(NOKEY);
#else
printf("No debugger in kernel\n");
@@ -2389,7 +2389,7 @@ int getchar(void)
u_int sgetc(int noblock)
{
- return (scgetc(noblock & 0xff);
+ return (scgetc(noblock & 0xff));
}
int pcmmap(dev_t dev, int offset, int nprot)
diff --git a/sys/i386/isa/syscons.c b/sys/i386/isa/syscons.c
index 71325887f3df..889be4dcec2d 100644
--- a/sys/i386/isa/syscons.c
+++ b/sys/i386/isa/syscons.c
@@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from:@(#)syscons.c 1.3 940129
- * $Id: syscons.c,v 1.29 1994/02/01 10:43:02 ache Exp $
+ * $Id: syscons.c,v 1.30 1994/02/01 11:13:49 ache Exp $
*
*/
@@ -2303,7 +2303,7 @@ next_code:
if (cur_console->smode.mode == VT_AUTO &&
console[0].smode.mode == VT_AUTO)
switch_scr(0);
- Debugger();
+ Debugger("manual escape to debugger");
return(NOKEY);
#else
printf("No debugger in kernel\n");
@@ -2389,7 +2389,7 @@ int getchar(void)
u_int sgetc(int noblock)
{
- return (scgetc(noblock & 0xff);
+ return (scgetc(noblock & 0xff));
}
int pcmmap(dev_t dev, int offset, int nprot)
diff --git a/sys/isa/syscons.c b/sys/isa/syscons.c
index 71325887f3df..889be4dcec2d 100644
--- a/sys/isa/syscons.c
+++ b/sys/isa/syscons.c
@@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from:@(#)syscons.c 1.3 940129
- * $Id: syscons.c,v 1.29 1994/02/01 10:43:02 ache Exp $
+ * $Id: syscons.c,v 1.30 1994/02/01 11:13:49 ache Exp $
*
*/
@@ -2303,7 +2303,7 @@ next_code:
if (cur_console->smode.mode == VT_AUTO &&
console[0].smode.mode == VT_AUTO)
switch_scr(0);
- Debugger();
+ Debugger("manual escape to debugger");
return(NOKEY);
#else
printf("No debugger in kernel\n");
@@ -2389,7 +2389,7 @@ int getchar(void)
u_int sgetc(int noblock)
{
- return (scgetc(noblock & 0xff);
+ return (scgetc(noblock & 0xff));
}
int pcmmap(dev_t dev, int offset, int nprot)