1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00
freebsd-ports/sysutils/xosview/files/patch-kernel.h
David E. O'Brien c64282cfb2 Use the correct number of interrupts on the Alpha.
Submitted by:	Alexander Langer <alex@big.endian.de>
PR:		19064
2000-06-10 21:33:18 +00:00

16 lines
276 B
C

--- bsd/kernel.h.orig Fri May 29 14:21:36 1998
+++ bsd/kernel.h Sat Jun 10 14:18:22 2000
@@ -67,7 +67,11 @@
#endif
-#define NUM_INTR 16
+#if defined(XOSVIEW_FREEBSD) && defined(__alpha__)
+# define NUM_INTR 256
+#else
+# define NUM_INTR 16
+#endif
int
BSDIntrInit();