Merge pull request #858 from Kijewski/mutex-clutter

core:mutex: remove refactor remnant
This commit is contained in:
Kaspar Schleiser 2014-03-05 14:28:39 +01:00
commit dc8cbf58cb

View File

@ -48,11 +48,6 @@ int mutex_trylock(struct mutex_t *mutex)
return (atomic_set_return(&mutex->val, thread_pid) == 0);
}
int prio(void)
{
return active_thread->priority;
}
int mutex_lock(struct mutex_t *mutex)
{
DEBUG("%s: trying to get mutex. val: %u\n", active_thread->name, mutex->val);