Skip to content

Commit

Permalink
Merge pull request #5373 from authmillenon/core/fix/mutex-debug-bp
Browse files Browse the repository at this point in the history
core: allow DEBUG in mutex.c to run without DEVELHELP (backport)
  • Loading branch information
haukepetersen committed Apr 20, 2016
2 parents c838f3d + b55e603 commit 7a4e6bc
Showing 1 changed file with 21 additions and 12 deletions.
33 changes: 21 additions & 12 deletions core/mutex.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,18 +40,21 @@
int _mutex_lock(mutex_t *mutex, int blocking)
{
unsigned irqstate = irq_disable();
DEBUG("%s: Mutex in use.\n", sched_active_thread->name);

DEBUG("PID[%" PRIkernel_pid "]: Mutex in use.\n", sched_active_pid);

if (mutex->queue.next == NULL) {
/* mutex is unlocked. */
mutex->queue.next = MUTEX_LOCKED;
DEBUG("%s: mutex_wait early out.\n", sched_active_thread->name);
DEBUG("PID[%" PRIkernel_pid "]: mutex_wait early out.\n",
sched_active_pid);
irq_restore(irqstate);
return 1;
}
else if (blocking) {
thread_t *me = (thread_t*) sched_active_thread;
DEBUG("%s: Adding node to mutex queue: prio: %" PRIu32 "\n", me->name, (uint32_t)me->priority);
thread_t *me = (thread_t*)sched_active_thread;
DEBUG("PID[%" PRIkernel_pid "]: Adding node to mutex queue: prio: %"
PRIu32 "\n", sched_active_pid, (uint32_t)me->priority);
sched_set_status(me, STATUS_MUTEX_BLOCKED);
if (mutex->queue.next == MUTEX_LOCKED) {
mutex->queue.next = (list_node_t*)&me->rq_entry;
Expand All @@ -62,7 +65,8 @@ int _mutex_lock(mutex_t *mutex, int blocking)
}
irq_restore(irqstate);
thread_yield_higher();
/* we were woken up by scheduler. waker removed us from queue. we have the mutex now. */
/* We were woken up by scheduler. Waker removed us from queue.
* We have the mutex now. */
return 1;
}
else {
Expand All @@ -74,7 +78,9 @@ int _mutex_lock(mutex_t *mutex, int blocking)
void mutex_unlock(mutex_t *mutex)
{
unsigned irqstate = irq_disable();
DEBUG("mutex_unlock(): queue.next: 0x%08x pid: %" PRIkernel_pid "\n", (unsigned)mutex->queue.next, sched_active_pid);

DEBUG("mutex_unlock(): queue.next: 0x%08x pid: %" PRIkernel_pid "\n",
(unsigned)mutex->queue.next, sched_active_pid);

if (mutex->queue.next == NULL) {
/* the mutex was not locked */
Expand All @@ -93,7 +99,8 @@ void mutex_unlock(mutex_t *mutex)

thread_t *process = container_of((clist_node_t*)next, thread_t, rq_entry);

DEBUG("mutex_unlock: waking up waiting thread %" PRIkernel_pid "\n", process->pid);
DEBUG("mutex_unlock: waking up waiting thread %" PRIkernel_pid "\n",
process->pid);
sched_set_status(process, STATUS_PENDING);

if (!mutex->queue.next) {
Expand All @@ -107,7 +114,8 @@ void mutex_unlock(mutex_t *mutex)

void mutex_unlock_and_sleep(mutex_t *mutex)
{
DEBUG("%s: unlocking mutex. queue.next: 0x%08x pid: %" PRIkernel_pid ", and taking a nap\n", sched_active_thread->name, (unsigned)mutex->queue.next, sched_active_pid);
DEBUG("PID[%" PRIkernel_pid "]: unlocking mutex. queue.next: 0x%08x, and "
"taking a nap\n", sched_active_pid, (unsigned)mutex->queue.next);
unsigned irqstate = irq_disable();

if (mutex->queue.next) {
Expand All @@ -116,17 +124,18 @@ void mutex_unlock_and_sleep(mutex_t *mutex)
}
else {
list_node_t *next = list_remove_head(&mutex->queue);
thread_t *process = container_of((clist_node_t*)next, thread_t, rq_entry);
DEBUG("%s: waking up waiter.\n", process->name);
thread_t *process = container_of((clist_node_t*)next, thread_t,
rq_entry);
DEBUG("PID[%" PRIkernel_pid "]: waking up waiter.\n", process->pid);
sched_set_status(process, STATUS_PENDING);
if (!mutex->queue.next) {
mutex->queue.next = MUTEX_LOCKED;
}
}
}

DEBUG("%s: going to sleep.\n", sched_active_thread->name);
sched_set_status((thread_t*) sched_active_thread, STATUS_SLEEPING);
DEBUG("PID[%" PRIkernel_pid "]: going to sleep.\n", sched_active_pid);
sched_set_status((thread_t*)sched_active_thread, STATUS_SLEEPING);
irq_restore(irqstate);
thread_yield_higher();
}

0 comments on commit 7a4e6bc

Please sign in to comment.