mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-02 23:50:55 +00: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:
parent
6c25ced5f2
commit
4c01f261d3
@ -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";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user