1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/posix/pthread/include/pthread.h
René Kijewski e135bdc266 documentation: fix doxygen for pthread_*.h
The pthread header files aren't in the doxygen page anymore after #1137,
because I `@file`'d the `.c` files, not the `.h` files.

This change moves doxygen boilerplate.

Closes #1199.
2014-05-18 17:33:49 +02:00

40 lines
970 B
C

/**
* @defgroup pthread POSIX threads
* POSIX conforming multi-threading features.
* @ingroup posix
* @{
* @file
* @brief POSIX conforming multi-threading features.
* @details Please see the transcluded `pthread_*.h` files for further information.
* @see [The Open Group Base Specifications Issue 7: pthread.h - threads](http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/pthread.h.html)
*/
#ifndef __SYS__POSIX__PTHREAD__H
#define __SYS__POSIX__PTHREAD__H
#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
/**
* @}
*/