mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
add test for mutex_unlock_and_sleep()
This commit is contained in:
parent
05f085d51a
commit
35106e3391
@ -120,7 +120,7 @@ void mutex_unlock(struct mutex_t *mutex)
|
||||
|
||||
void mutex_unlock_and_sleep(struct mutex_t *mutex)
|
||||
{
|
||||
DEBUG("%s: unlocking mutex. val: %u pid: %u, and take a nap\n", active_thread->name, mutex->val, thread_pid);
|
||||
DEBUG("%s: unlocking mutex. val: %u pid: %u, and taking a nap\n", active_thread->name, mutex->val, thread_pid);
|
||||
int irqstate = disableIRQ();
|
||||
|
||||
if (mutex->val != 0) {
|
||||
|
4
tests/test_mutex_unlock_and_sleep/Makefile
Normal file
4
tests/test_mutex_unlock_and_sleep/Makefile
Normal file
@ -0,0 +1,4 @@
|
||||
export PROJECT = test_mutex_unlock_and_sleep
|
||||
include ../Makefile.tests_common
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
69
tests/test_mutex_unlock_and_sleep/main.c
Normal file
69
tests/test_mutex_unlock_and_sleep/main.c
Normal file
@ -0,0 +1,69 @@
|
||||
/*
|
||||
* Copyright (C) 2014 Hamburg University of Applied Siences (HAW)
|
||||
*
|
||||
* This file is subject to the terms and conditions of the GNU Lesser General
|
||||
* Public License. See the file LICENSE in the top level directory for more
|
||||
* details.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup tests
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief simple test application for atomic mutex unlocking and sleeping
|
||||
*
|
||||
* @author Martin Landsmann <martin.landsmann@haw-hamburg.de>
|
||||
*
|
||||
* @}
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include "thread.h"
|
||||
#include "mutex.h"
|
||||
|
||||
static mutex_t mutex;
|
||||
static volatile int indicator, count;
|
||||
|
||||
static char stack[KERNEL_CONF_STACKSIZE_MAIN];
|
||||
static void second_thread(void)
|
||||
{
|
||||
while (1) {
|
||||
mutex_lock(&mutex);
|
||||
thread_wakeup(1);
|
||||
indicator--;
|
||||
mutex_unlock_and_sleep(&mutex);
|
||||
}
|
||||
}
|
||||
|
||||
int main(void)
|
||||
{
|
||||
indicator = 0;
|
||||
count = 0;
|
||||
mutex_init(&mutex);
|
||||
|
||||
thread_create(stack,
|
||||
KERNEL_CONF_STACKSIZE_MAIN,
|
||||
PRIORITY_MAIN - 1,
|
||||
CREATE_WOUT_YIELD | CREATE_STACKTEST,
|
||||
second_thread,
|
||||
"second_thread");
|
||||
|
||||
while (1) {
|
||||
mutex_lock(&mutex);
|
||||
thread_wakeup(2);
|
||||
indicator++;
|
||||
count++;
|
||||
|
||||
if (indicator > 1 || indicator < -1) {
|
||||
printf("Error, threads did not sleep properly. [indicator: %d]\n", indicator);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if ((count % 100000) == 0) {
|
||||
printf("Still alive alternated [count: %dk] times.\n", count / 1000);
|
||||
}
|
||||
|
||||
mutex_unlock_and_sleep(&mutex);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user