diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-11-06 21:09:36 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-11-06 21:09:36 +0000 |
commit | 309b4115ecf709320a009b5d9688b01d94cebad8 (patch) | |
tree | a6e2bebcdef5e5b6587aa82f9b167e3120d78352 /sys/arch/hp300 | |
parent | 98fd84149f579f54527a8d3cab80987ba2a03c52 (diff) |
move netisr definition into md code to allow arch provide suitable allocation; tested on most archs
Diffstat (limited to 'sys/arch/hp300')
-rw-r--r-- | sys/arch/hp300/hp300/intr.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/hp300/hp300/intr.c b/sys/arch/hp300/hp300/intr.c index de231a2fb47..0060f4e8def 100644 --- a/sys/arch/hp300/hp300/intr.c +++ b/sys/arch/hp300/hp300/intr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.c,v 1.11 2002/04/28 15:15:32 miod Exp $ */ +/* $OpenBSD: intr.c,v 1.12 2003/11/06 21:09:34 mickey Exp $ */ /* $NetBSD: intr.c,v 1.5 1998/02/16 20:58:30 thorpej Exp $ */ /*- @@ -283,6 +283,8 @@ intr_dispatch(evec) printf("intr_dispatch: stray level %d interrupt\n", ipl); } +int netisr; + void netintr() { |