base: start signal-proxy thread on construction

Thanks @ssumpf for the investigation.
This commit is contained in:
Christian Helmuth 2016-09-07 12:05:58 +02:00
parent e7d5b34fc5
commit fcf5bc9187

View File

@ -61,7 +61,7 @@ class Genode::Entrypoint : Genode::Noncopyable
:
Thread(env, "signal_proxy", STACK_SIZE),
ep(ep)
{ }
{ start(); }
void entry() override { ep._process_incoming_signals(); }
};