mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-15 07:56:36 +00:00
a8238d9d4d
- 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>
16 lines
276 B
C
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();
|