git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_16.1.x@8712 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
d27ee4ac03
commit
989e81e77c
|
@ -180,7 +180,7 @@ struct ch_threads_list {
|
||||||
/**
|
/**
|
||||||
* @brief Generic threads bidirectional linked list header and element.
|
* @brief Generic threads bidirectional linked list header and element.
|
||||||
*/
|
*/
|
||||||
struct ch_threads_queue{
|
struct ch_threads_queue {
|
||||||
thread_t *p_next; /**< @brief Next in the list/queue. */
|
thread_t *p_next; /**< @brief Next in the list/queue. */
|
||||||
thread_t *p_prev; /**< @brief Previous in the queue. */
|
thread_t *p_prev; /**< @brief Previous in the queue. */
|
||||||
};
|
};
|
||||||
|
@ -476,7 +476,7 @@ struct ch_system {
|
||||||
*/
|
*/
|
||||||
kernel_stats_t kernel_stats;
|
kernel_stats_t kernel_stats;
|
||||||
#endif
|
#endif
|
||||||
#if CH_CFG_NO_IDLE_THREAD == FALSE
|
#if (CH_CFG_NO_IDLE_THREAD == FALSE) || defined(__DOXYGEN__)
|
||||||
/**
|
/**
|
||||||
* @brief Idle thread working area.
|
* @brief Idle thread working area.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue