mirror of https://github.com/ARMmbed/mbed-os.git
fix mutex stub for unit tests
parent
f1de1c33fd
commit
6835a5a06b
|
@ -27,7 +27,12 @@ rtos::Mutex::~Mutex()
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
osStatus rtos::Mutex::lock(unsigned int)
|
osStatus rtos::Mutex::lock(void)
|
||||||
|
{
|
||||||
|
return osOK;
|
||||||
|
}
|
||||||
|
|
||||||
|
osStatus rtos::Mutex::lock(uint32_t millisec)
|
||||||
{
|
{
|
||||||
return osOK;
|
return osOK;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue