1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-15 07:56:36 +00:00
freebsd-ports/sysutils/xosview/files/patch-kernel.h
Cheng-Lung Sung a8238d9d4d - Update to 1.8.2
- Fix (hopefully) the IRQ reporting on 5.x, before, xosview was simply exiting/crashing

PR:		79338
Submitted by:	Ulrich Spoerlein <q AT uni dot de>
2005-07-13 03:48:32 +00:00

16 lines
276 B
C

--- bsd/kernel.h.orig Fri May 29 14:21:36 1998
+++ bsd/kernel.h Tue Aug 21 10:50:17 2001
@@ -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();