diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-01-03 01:48:08 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-01-03 01:48:08 +0000 |
commit | 838e3dfa00ca36dde3261d397f1893c404f38933 (patch) | |
tree | a7b790b5016c54a50792606c451fb0c03711daf5 /sys/arch | |
parent | e98319aec8d52fc63e97ff29b585d402140fbf2c (diff) |
netintr() doesn't exist anymore
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/sun3/include/machdep.h | 4 | ||||
-rw-r--r-- | sys/arch/sun3/include/psl.h | 4 |
2 files changed, 3 insertions, 5 deletions
diff --git a/sys/arch/sun3/include/machdep.h b/sys/arch/sun3/include/machdep.h index b4fda3ac2e9..a643dd8e7ec 100644 --- a/sys/arch/sun3/include/machdep.h +++ b/sys/arch/sun3/include/machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.h,v 1.10 2000/07/14 14:26:18 miod Exp $ */ +/* $OpenBSD: machdep.h,v 1.11 2001/01/03 01:48:07 miod Exp $ */ /* * Copyright (c) 1994 Gordon W. Ross @@ -117,8 +117,6 @@ void isr_config __P((void)); void m68881_save __P((struct fpframe *)); void m68881_restore __P((struct fpframe *)); -void netintr __P((void)); - void proc_do_uret __P((void)); void proc_trampoline __P((void)); diff --git a/sys/arch/sun3/include/psl.h b/sys/arch/sun3/include/psl.h index 9b3ab051df4..2c5199f2e9a 100644 --- a/sys/arch/sun3/include/psl.h +++ b/sys/arch/sun3/include/psl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: psl.h,v 1.8 2000/07/14 14:24:54 miod Exp $ */ +/* $OpenBSD: psl.h,v 1.9 2001/01/03 01:48:07 miod Exp $ */ /* $NetBSD: psl.h,v 1.14 1998/11/24 17:07:54 kleink Exp $ */ /*- @@ -124,7 +124,7 @@ _splraise(int new) #define spl7() _spl(PSL_S|PSL_IPL7) #define splx(x) _spl(x) -/* IPL used by soft interrupts: netintr(), softclock() */ +/* IPL used by soft interrupts: netisr, softclock() */ #define spllowersoftclock() spl1() #define splsoftclock() spl1() #define splsoftnet() spl1() |