diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2003-11-06 21:23:53 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2003-11-06 21:23:53 +0000 |
commit | 22bc4f4c7ddd6ce5775b6b9c36dcb36521655a0a (patch) | |
tree | 7b55bd7dc1418f2970c4d34f422c20d81bf97806 /sys/arch | |
parent | 309b4115ecf709320a009b5d9688b01d94cebad8 (diff) |
move netisr definition into md code to allow arch provide suitable allocation;
tested on most archs, mickey missed pegasos.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/pegasos/pegasos/machdep.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/pegasos/pegasos/machdep.c b/sys/arch/pegasos/pegasos/machdep.c index 27a44a8d238..0cf94c81b1a 100644 --- a/sys/arch/pegasos/pegasos/machdep.c +++ b/sys/arch/pegasos/pegasos/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.1 2003/10/31 03:54:33 drahn Exp $ */ +/* $OpenBSD: machdep.c,v 1.2 2003/11/06 21:23:52 drahn Exp $ */ /* $NetBSD: machdep.c,v 1.4 1996/10/16 19:33:11 ws Exp $ */ /* @@ -793,6 +793,8 @@ softtty() { } +int netisr; + /* * Soft networking interrupts. */ |