diff options
author | 2003-11-06 21:23:52 +0000 | |
---|---|---|
committer | 2003-11-06 21:23:52 +0000 | |
commit | 1e1cebd7e77e26872e159cc592f76274dc838688 (patch) | |
tree | 03026b5b0594e47bf6578b0116602c6485a69254 | |
parent | move netisr definition into md code to allow arch provide suitable allocation; tested on most archs (diff) | |
download | wireguard-openbsd-1e1cebd7e77e26872e159cc592f76274dc838688.tar.xz wireguard-openbsd-1e1cebd7e77e26872e159cc592f76274dc838688.zip |
move netisr definition into md code to allow arch provide suitable allocation;
tested on most archs, mickey missed pegasos.
-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. */ |