core: use Mutex/Blockade

Issue #3612
This commit is contained in:
Alexander Boettcher
2020-02-18 15:29:47 +01:00
committed by Christian Helmuth
parent 85a1f91f59
commit e87d60ddf7
48 changed files with 218 additions and 232 deletions

View File

@ -28,7 +28,7 @@ inline int lx_gettimeofday(struct timeval *tv, struct timeval *tz) {
Microseconds Timer::Time_source::max_timeout() const
{
Lock::Guard lock_guard(_lock);
Mutex::Guard mutex_guard(_mutex);
return Microseconds(1000 * 1000);
}