From 5d23e5903e3347a1b390a704c6be90f33c10e2e3 Mon Sep 17 00:00:00 2001 From: Martin Stein Date: Tue, 15 Apr 2014 18:23:51 +0200 Subject: [PATCH] hw: raise max amount of signal contexts This is needed at least for the resource-request test since all available interrupts are provided through a signal context. fix #1123 --- base-hw/src/core/kernel/configuration.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base-hw/src/core/kernel/configuration.h b/base-hw/src/core/kernel/configuration.h index 2b6d10885..45ede24b2 100644 --- a/base-hw/src/core/kernel/configuration.h +++ b/base-hw/src/core/kernel/configuration.h @@ -22,7 +22,7 @@ namespace Kernel MAX_PDS = 256, MAX_THREADS = 256, MAX_SIGNAL_RECEIVERS = 2048, - MAX_SIGNAL_CONTEXTS = 2048, + MAX_SIGNAL_CONTEXTS = 4096, MAX_VMS = 4, MAX_PRIORITY = 128, };