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
This commit is contained in:
Martin Stein 2014-04-15 18:23:51 +02:00 committed by Christian Helmuth
parent b53601d01b
commit 5d23e5903e
1 changed files with 1 additions and 1 deletions

View File

@ -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,
};