From f577c451ef820e020ff956a573511488afd6822e Mon Sep 17 00:00:00 2001 From: Norman Feske Date: Wed, 2 Nov 2016 11:36:37 +0100 Subject: [PATCH] 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. --- repos/base/include/base/entrypoint.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/base/include/base/entrypoint.h b/repos/base/include/base/entrypoint.h index e0f1c6af7b..96860e349b 100644 --- a/repos/base/include/base/entrypoint.h +++ b/repos/base/include/base/entrypoint.h @@ -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) :