blob: f8cc173b3feb4cf61c58e3303b47f66d50dea3fd [file] [log] [blame]
#include <runtime/mutex.h>
#include <threads.h>
int mtx_unlock(mtx_t* m) {
zxr_mutex_unlock((zxr_mutex_t*)&m->__i);
return thrd_success;
}