hw: adjust core's signal thread's stack size

The stack size should be architecture dependent.

Fix #1854
This commit is contained in:
Stefan Kalkowski 2016-01-15 15:46:16 +01:00 committed by Christian Helmuth
parent 5afad64586
commit f539cf1231
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ namespace Genode
*/
class Signal_handler
{
enum { STACK_SIZE = 4096 };
enum { STACK_SIZE = 1024 * sizeof(addr_t) };
Rpc_entrypoint _entrypoint;