Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/usermode/usermode increase the max # of sigio handlers



details:   https://anonhg.NetBSD.org/src/rev/01bed026911a
branches:  trunk
changeset: 772533:01bed026911a
user:      jmcneill <jmcneill%NetBSD.org@localhost>
date:      Sat Jan 07 18:07:57 2012 +0000

description:
increase the max # of sigio handlers

diffstat:

 sys/arch/usermode/usermode/intr.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r bad201dd0c2a -r 01bed026911a sys/arch/usermode/usermode/intr.c
--- a/sys/arch/usermode/usermode/intr.c Sat Jan 07 16:47:42 2012 +0000
+++ b/sys/arch/usermode/usermode/intr.c Sat Jan 07 18:07:57 2012 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: intr.c,v 1.12 2011/12/30 11:04:50 jmcneill Exp $ */
+/* $NetBSD: intr.c,v 1.13 2012/01/07 18:07:57 jmcneill Exp $ */
 
 /*-
  * Copyright (c) 2011 Jared D. McNeill <jmcneill%invisible.ca@localhost>
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.12 2011/12/30 11:04:50 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.13 2012/01/07 18:07:57 jmcneill Exp $");
 
 #include <sys/types.h>
 
@@ -39,7 +39,7 @@
        void *arg;
 };
 
-#define SIGIO_MAX_HANDLERS     4
+#define SIGIO_MAX_HANDLERS     8
 
 static struct intr_handler sigio_intr_handler[SIGIO_MAX_HANDLERS];
 



Home | Main Index | Thread Index | Old Index