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.
This commit is contained in:
Norman Feske 2012-11-27 20:32:06 +01:00
parent 6c25ced5f2
commit 4c01f261d3

View File

@ -84,6 +84,12 @@ void Thread_base::start()
} }
void Thread_base::join()
{
_join_lock.lock();
}
void Thread_base::cancel_blocking() void Thread_base::cancel_blocking()
{ {
kernel_log() << __PRETTY_FUNCTION__ << ": Not implemented\n"; kernel_log() << __PRETTY_FUNCTION__ << ": Not implemented\n";