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

Merge pull request #1117 from BytesGalore/add_missing_pthread_cv_header

sys:posix:pthread added missing `pthread_cond.h` to `pthread.h`
This commit is contained in:
René Kijewski 2014-05-07 09:11:39 +02:00
commit 5879ccbcd3
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;