From 4c01f261d39dc8a1260eb035b6d90d14483428df Mon Sep 17 00:00:00 2001 From: Norman Feske Date: Tue, 27 Nov 2012 20:32:06 +0100 Subject: [PATCH] base-hw: add 'Thread_base::join' to core In the recent change of the RPC-entrypoint destruction, the '~Rpc_entrypoint' calls 'Thread_base::join'. Hence, we need to provide an implementation wherever RPC entrypoints are used. --- base-hw/src/core/thread.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/base-hw/src/core/thread.cc b/base-hw/src/core/thread.cc index 16e76a5df..c3eb128b4 100644 --- a/base-hw/src/core/thread.cc +++ b/base-hw/src/core/thread.cc @@ -84,6 +84,12 @@ void Thread_base::start() } +void Thread_base::join() +{ + _join_lock.lock(); +} + + void Thread_base::cancel_blocking() { kernel_log() << __PRETTY_FUNCTION__ << ": Not implemented\n";