doxygen: score: adjust doc in threadq.h to doxygen guidelines

Update #3706.
This commit is contained in:
Andreas Dachsberger
2019-04-16 12:52:26 +02:00
committed by Sebastian Huber
parent 8f89dc6263
commit f1507fb848

View File

@@ -1,10 +1,12 @@
/** /**
* @file * @file
* *
* @brief Constants and Structures Needed to Declare a Thread Queue * @ingroup RTEMSScoreThreadQueue
* *
* This include file contains all the constants and structures * @brief Constants and Structures Needed to Declare a Thread Queue
* needed to declare a thread queue. *
* This include file contains all the constants and structures
* needed to declare a thread queue.
*/ */
/* /*
@@ -36,15 +38,18 @@ struct Per_CPU_Control;
struct Scheduler_Node; struct Scheduler_Node;
/** /**
* @defgroup RTEMSScoreThreadQueue Thread Queue Handler * @defgroup RTEMSScoreThreadQueue Thread Queue Handler
* *
* @ingroup RTEMSScore * @ingroup RTEMSScore
* *
* This handler provides the capability to have threads block in * @brief Thread Queue Handler
* ordered sets. The sets may be ordered using the FIFO or priority *
* discipline. * This handler provides the capability to have threads block in
* ordered sets. The sets may be ordered using the FIFO or priority
* discipline.
*
* @{
*/ */
/**@{*/
typedef struct _Thread_Control Thread_Control; typedef struct _Thread_Control Thread_Control;
@@ -578,7 +583,7 @@ typedef struct {
Thread_queue_Queue Queue; Thread_queue_Queue Queue;
} Thread_queue_Control; } Thread_queue_Control;
/**@}*/ /** @} */
#ifdef __cplusplus #ifdef __cplusplus
} }