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 Allthough in normal practice at m...



details:   https://anonhg.NetBSD.org/src/rev/209b156141a4
branches:  trunk
changeset: 769632:209b156141a4
user:      reinoud <reinoud%NetBSD.org@localhost>
date:      Fri Sep 16 16:25:44 2011 +0000

description:
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.

diffstat:

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

diffs (27 lines):

diff -r ff00393a1cb7 -r 209b156141a4 sys/arch/usermode/usermode/intr.c
--- a/sys/arch/usermode/usermode/intr.c Fri Sep 16 16:24:01 2011 +0000
+++ b/sys/arch/usermode/usermode/intr.c Fri Sep 16 16:25:44 2011 +0000
@@ -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 <jmcneill%invisible.ca@localhost>
@@ -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;
 



Home | Main Index | Thread Index | Old Index