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

added pthread_cond.h to pthread.h

adjusted `test_pthread_condition_variable\main.c` includes reflecting the above change
This commit is contained in:
Martin Landsmann 2014-05-07 07:54:54 +02:00
parent cef93bd6ef
commit 61b0331980
2 changed files with 2 additions and 2 deletions

View File

@ -23,5 +23,6 @@
#include "pthread_once.h"
#include "pthread_scheduling.h"
#include "pthread_cancellation.h"
#include "pthread_cond.h"
#endif /* pthread.h */

View File

@ -19,9 +19,8 @@
*/
#include <stdio.h>
#include "pthread_cond.h"
#include "pthread.h"
#include "thread.h"
#include "mutex.h"
static mutex_t mutex;
static struct pthread_cond_t cv;