ARM Kernel stubs: Fix mutex stubs

This commit is contained in:
Puck Meerburg 2014-02-23 21:07:28 +01:00 committed by Adrien Destugues
parent 5c9657b7e5
commit 92d40f5451

View File

@ -35,14 +35,14 @@ kgetc()
extern "C" status_t extern "C" status_t
_mutex_lock(mutex*, bool) _mutex_lock(mutex*, void*)
{ {
return true; return B_OK;
} }
extern "C" void extern "C" void
_mutex_unlock(mutex*, bool) _mutex_unlock(mutex*)
{ {
} }