mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
61b0331980
adjusted `test_pthread_condition_variable\main.c` includes reflecting the above change
29 lines
569 B
C
29 lines
569 B
C
#ifndef RIOT_PTHREAD_H
|
|
#define RIOT_PTHREAD_H 1
|
|
|
|
/**
|
|
* @ingroup pthread
|
|
*/
|
|
|
|
#include <time.h>
|
|
|
|
#include "kernel.h"
|
|
#include "mutex.h"
|
|
#include "sched.h"
|
|
|
|
#include "pthread_threading_attr.h"
|
|
#include "pthread_threading.h"
|
|
#include "pthread_mutex_attr.h"
|
|
#include "pthread_mutex.h"
|
|
#include "pthread_rwlock_attr.h"
|
|
#include "pthread_rwlock.h"
|
|
#include "pthread_spin.h"
|
|
#include "pthread_barrier.h"
|
|
#include "pthread_cleanup.h"
|
|
#include "pthread_once.h"
|
|
#include "pthread_scheduling.h"
|
|
#include "pthread_cancellation.h"
|
|
#include "pthread_cond.h"
|
|
|
|
#endif /* pthread.h */
|