1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #756 from josephnoir/add_test_pthread_factorial

tests: Add test for pthread
This commit is contained in:
Christian Mehlis 2014-02-26 16:08:45 +01:00
commit 5247fa48e1
2 changed files with 92 additions and 0 deletions

View File

@ -0,0 +1,14 @@
export PROJECT = test_pthread_cooperation
include ../Makefile.tests_common
USEMODULE += posix
USEMODULE += pthread
ifeq ($(BOARD),native)
CFLAGS += -isystem $(RIOTBASE)/sys/posix/pthread/include
else
export INCLUDES = -I$(RIOTBASE)/sys/posix/pthread/include \
-I$(RIOTBASE)/sys/posix/include
endif
include $(RIOTBASE)/Makefile.include

View File

@ -0,0 +1,78 @@
/*
* Copyright (C) 2014 Hamburg University of Applied Sciences
*
* 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 pthread test application
*
* @author Raphael Hiesgen <raphael.hiesgen@haw-hamburg.de>
*
* @}
*/
#include <stdio.h>
#include <pthread.h>
#define NUM_THREADS 12
pthread_t ths[NUM_THREADS];
pthread_mutex_t mtx;
volatile int storage = 1;
void *run(void *parameter)
{
int arg = (int) parameter;
printf("My arg: %d\n", arg);
int err = pthread_mutex_lock(&mtx);
if (err != 1) {
printf("[!!!] pthread_mutex_lock failed with %d\n", err);
return NULL;
}
storage *= arg;
printf("val = %d\n", storage);
pthread_mutex_unlock(&mtx);
return NULL;
}
int main(void)
{
pthread_attr_t th_attr;
pthread_attr_init(&th_attr);
pthread_mutex_init(&mtx, NULL);
for (int i = 0; i < NUM_THREADS; ++i) {
printf("Creating thread with arg %d\n", (i + 1));
pthread_create(&ths[i], &th_attr, run, (void *)(i + 1));
}
for (int i = 0; i < NUM_THREADS; ++i) {
printf("join\n");
pthread_join(ths[i], NULL);
}
printf("Factorial: %d\n", storage);
if (storage != 479001600) {
puts("[!!!] Error, expected: 12!= 479001600.");
}
pthread_mutex_destroy(&mtx);
pthread_attr_destroy(&th_attr);
puts("finished");
return 0;
}