mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 12:32:56 +01:00
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:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user