Skip to content

Commit

Permalink
hw: raise max amount of signal contexts
Browse files Browse the repository at this point in the history
This is needed at least for the resource-request test since all available
interrupts are provided through a signal context.

fix #1123
  • Loading branch information
m-stein authored and chelmuth committed Apr 17, 2014
1 parent b53601d commit 5d23e59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base-hw/src/core/kernel/configuration.h
Expand Up @@ -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,
};
Expand Down

0 comments on commit 5d23e59

Please sign in to comment.