1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #7470 from gebart/pr/core-thread-doxygen

core/thread: fix Doxygen nesting
This commit is contained in:
Alexandre Abadie 2017-08-15 13:24:07 +02:00 committed by GitHub
commit fa51e1e972

View File

@ -134,14 +134,16 @@
extern "C" {
#endif
/* Thread states */
/**
* @name List of thread states
* @name Special meaning thread states
* @{
*/
#define STATUS_NOT_FOUND (-1) /**< Describes an illegal thread status */
#define STATUS_NOT_FOUND (-1) /**< Describes an illegal thread status */
/** @} */
/**
* @name Blocked states
* @name Blocked thread states
* @{
*/
#define STATUS_STOPPED 0 /**< has terminated */
@ -156,14 +158,14 @@
/** @} */
/**
* @name Queued states
* @{*/
* @name Queued thread states
* @{
*/
#define STATUS_ON_RUNQUEUE STATUS_RUNNING /**< to check if on run queue:
`st >= STATUS_ON_RUNQUEUE` */
#define STATUS_RUNNING 9 /**< currently running */
#define STATUS_PENDING 10 /**< waiting to be scheduled to run */
/** @} */
/** @} */
/**
* @brief @c thread_t holds thread's context data.