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";