Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-4]: src/sys/arch/mac68k/dev Pull up revision 1.8 (requested by ...



details:   https://anonhg.NetBSD.org/src/rev/9686fcd82540
branches:  netbsd-1-4
changeset: 469726:9686fcd82540
user:      he <he%NetBSD.org@localhost>
date:      Sun Nov 21 15:04:05 1999 +0000

description:
Pull up revision 1.8 (requested by sr):
  Clean up the ADB driver, and eliminate duplicate keystrokes under
  heavy load, fixing PR#7870.

diffstat:

 sys/arch/mac68k/dev/aed.c |  9 ++-------
 1 files changed, 2 insertions(+), 7 deletions(-)

diffs (30 lines):

diff -r 004532875ddb -r 9686fcd82540 sys/arch/mac68k/dev/aed.c
--- a/sys/arch/mac68k/dev/aed.c Sun Nov 21 15:03:41 1999 +0000
+++ b/sys/arch/mac68k/dev/aed.c Sun Nov 21 15:04:05 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: aed.c,v 1.7 1999/02/16 01:08:16 ender Exp $    */
+/*     $NetBSD: aed.c,v 1.7.4.1 1999/11/21 15:04:05 he Exp $   */
 
 /*
  * Copyright (C) 1994  Bradley A. Grantham
@@ -63,11 +63,6 @@
 static void    aed_enqevent __P((adb_event_t *event));
 
 /*
- * Global variables.
- */
-extern int ite_polling;                        /* Are we polling?  (Debugger mode) */
-
-/*
  * Local variables.
  */
 static struct aed_softc *aed_sc = NULL;
@@ -365,7 +360,7 @@
 aed_handoff(event)
        adb_event_t *event;
 {
-       if (aed_sc->sc_open && !ite_polling)
+       if (aed_sc->sc_open && !adb_polling)
                aed_enqevent(event);
        else {
                if (event->def_addr == 2)



Home | Main Index | Thread Index | Old Index