increase stack size of signal-proxy thread

This fixes the warning "small stack of 3996 bytes [...] may break Linux
signal handling" on 32-bit base-linux.
This commit is contained in:
Norman Feske 2016-11-02 11:36:37 +01:00 committed by Christian Helmuth
parent f014c2fac6
commit f577c451ef

View File

@ -55,7 +55,7 @@ class Genode::Entrypoint : Genode::Noncopyable
struct Signal_proxy_thread : Thread
{
enum { STACK_SIZE = 1024*sizeof(long) };
enum { STACK_SIZE = 2*1024*sizeof(long) };
Entrypoint &ep;
Signal_proxy_thread(Env &env, Entrypoint &ep)
: