Module Name:    src
Committed By:   reinoud
Date:           Fri Sep 16 16:25:44 UTC 2011

Modified Files:
        src/sys/arch/usermode/usermode: intr.c

Log Message:
Allthough in normal practice at most two are queued, with all the debug info
spounting outi, a lot can get queued in the first phase of kernel startup.
especially the clock.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/usermode/usermode/intr.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/usermode/usermode/intr.c
diff -u src/sys/arch/usermode/usermode/intr.c:1.7 src/sys/arch/usermode/usermode/intr.c:1.8
--- src/sys/arch/usermode/usermode/intr.c:1.7	Thu Sep 15 12:25:25 2011
+++ src/sys/arch/usermode/usermode/intr.c	Fri Sep 16 16:25:44 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: intr.c,v 1.7 2011/09/15 12:25:25 reinoud Exp $ */
+/* $NetBSD: intr.c,v 1.8 2011/09/16 16:25:44 reinoud Exp $ */
 
 /*-
  * Copyright (c) 2011 Jared D. McNeill <jmcne...@invisible.ca>
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.7 2011/09/15 12:25:25 reinoud Exp $");
+__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.8 2011/09/16 16:25:44 reinoud Exp $");
 
 #include <sys/types.h>
 
@@ -36,7 +36,7 @@
 
 //#define INTR_USE_SIGPROCMASK
 
-#define MAX_QUEUED_EVENTS 64
+#define MAX_QUEUED_EVENTS 128
 
 static int usermode_x = IPL_NONE;
 

Reply via email to