From ddccffcc36310e5aac686854d7942550f20c5e19 Mon Sep 17 00:00:00 2001 From: Bill Joy Date: Sun, 31 Oct 1982 22:57:46 -0800 Subject: [PATCH] #if sun stuff SCCS-vsn: sys/net/netisr.h 4.2 --- usr/src/sys/net/netisr.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/usr/src/sys/net/netisr.h b/usr/src/sys/net/netisr.h index 4bb506278c..123c164736 100644 --- a/usr/src/sys/net/netisr.h +++ b/usr/src/sys/net/netisr.h @@ -1,4 +1,4 @@ -/* netisr.h 4.1 82/10/09 */ +/* netisr.h 4.2 82/10/31 */ /* * The networking code runs off software interrupts. @@ -8,7 +8,13 @@ * level for the clock (so you can enter the network in routines called * at timeout time). */ +#if sun +#include "../sun/sir.h" +#define setsoftnet() siron(SIR_NET) +#else +/* #include "../vax/mtpr.h" */ #define setsoftnet() mtpr(SIRR, 12) +#endif /* * Each ``pup-level-1'' input queue has a bit in a ``netisr'' status -- 2.20.1