freebsd-ports/sysutils/xosview/files/patch-kernel.h
2001-08-22 22:22:06 +00:00

24 lines
432 B
C

--- bsd/kernel.h.orig Fri May 29 14:21:36 1998
+++ bsd/kernel.h Tue Aug 21 10:50:17 2001
@@ -52,7 +52,7 @@
#ifdef HAVE_SWAPCTL
void
-BSDGetSwapCtlInfo(int* total, int* free);
+BSDGetSwapCtlInfo(int64_t* total, int64_t* free);
#endif
int
@@ -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();