mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-31 08:25:38 +00:00
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:
parent
f014c2fac6
commit
f577c451ef
@ -55,7 +55,7 @@ class Genode::Entrypoint : Genode::Noncopyable
|
|||||||
|
|
||||||
struct Signal_proxy_thread : Thread
|
struct Signal_proxy_thread : Thread
|
||||||
{
|
{
|
||||||
enum { STACK_SIZE = 1024*sizeof(long) };
|
enum { STACK_SIZE = 2*1024*sizeof(long) };
|
||||||
Entrypoint &ep;
|
Entrypoint &ep;
|
||||||
Signal_proxy_thread(Env &env, Entrypoint &ep)
|
Signal_proxy_thread(Env &env, Entrypoint &ep)
|
||||||
:
|
:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user