From fcf5bc9187893d8d4b638221ae2e9109ef22c8a9 Mon Sep 17 00:00:00 2001 From: Christian Helmuth Date: Wed, 7 Sep 2016 12:05:58 +0200 Subject: [PATCH] base: start signal-proxy thread on construction Thanks @ssumpf for the investigation. --- 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 830cfda1ef..e0f1c6af7b 100644 --- a/repos/base/include/base/entrypoint.h +++ b/repos/base/include/base/entrypoint.h @@ -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(); } };