Source-Changes-HG archive

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

[src/trunk]: src/sys/net Process STRIP software interrupts.



details:   https://anonhg.NetBSD.org/src/rev/d051fc87f07f
branches:  trunk
changeset: 502116:d051fc87f07f
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Thu Jan 11 22:32:21 2001 +0000

description:
Process STRIP software interrupts.

diffstat:

 sys/net/netisr.h          |  5 ++++-
 sys/net/netisr_dispatch.h |  5 ++++-
 2 files changed, 8 insertions(+), 2 deletions(-)

diffs (38 lines):

diff -r 7d02f287a683 -r d051fc87f07f sys/net/netisr.h
--- a/sys/net/netisr.h  Thu Jan 11 22:31:49 2001 +0000
+++ b/sys/net/netisr.h  Thu Jan 11 22:32:21 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: netisr.h,v 1.25 2001/01/09 20:20:13 thorpej Exp $ */
+/* $NetBSD: netisr.h,v 1.26 2001/01/11 22:32:21 thorpej Exp $ */
 
 /*
  * Copyright (c) 1980, 1986, 1989, 1993
@@ -109,6 +109,9 @@
 #if NSL > 0
 extern void slintr(void);      /* XXX XXX XXX */
 #endif
+#if NSTRIP > 0
+extern void stripintr(void);   /* XXX XXX XXX */
+#endif
 #if NPPP > 0
 #include <net/ppp_defs.h>
 #include <net/if_ppp.h>
diff -r 7d02f287a683 -r d051fc87f07f sys/net/netisr_dispatch.h
--- a/sys/net/netisr_dispatch.h Thu Jan 11 22:31:49 2001 +0000
+++ b/sys/net/netisr_dispatch.h Thu Jan 11 22:32:21 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: netisr_dispatch.h,v 1.3 2001/01/09 05:04:23 thorpej Exp $ */
+/* $NetBSD: netisr_dispatch.h,v 1.4 2001/01/11 22:32:21 thorpej Exp $ */
 
 /*
  * netisr_dispatch: This file is included by the 
@@ -51,6 +51,9 @@
 #if NSL > 0
        DONETISR(NETISR_SLIP,slintr);
 #endif
+#if NSTRIP > 0
+       DONETISR(NETISR_STRIP,stripintr);
+#endif
 #if NPPP > 0
        DONETISR(NETISR_PPP,pppintr);
 #endif



Home | Main Index | Thread Index | Old Index