Increase signal handler stack size

Fixes #616.
This commit is contained in:
Christian Prochaska 2013-01-15 15:47:58 +01:00 committed by Norman Feske
parent 5c6d5081b0
commit e2889f3f11
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ static Signal_connection *signal_connection()
** Process-wide connection to core's signal service **
******************************************************/
enum { STACK_SIZE = 4096 };
enum { STACK_SIZE = 2*1024*sizeof(addr_t) };
class Signal_handler_thread : Thread<STACK_SIZE>, Lock
{