aboutsummaryrefslogtreecommitdiffstats
path: root/os/rt/include/chschd.h
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2016-01-07 16:18:22 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2016-01-07 16:18:22 +0000
commit78a39fd01b36aef25aedb23df2bede6f1e2d36fc (patch)
treefa5c32565632a41b0ec183247c49e8c42272d083 /os/rt/include/chschd.h
parent0c827780f0dcfe27259e64787afa3fb69e92a42f (diff)
downloadChibiOS-78a39fd01b36aef25aedb23df2bede6f1e2d36fc.tar.gz
ChibiOS-78a39fd01b36aef25aedb23df2bede6f1e2d36fc.tar.bz2
ChibiOS-78a39fd01b36aef25aedb23df2bede6f1e2d36fc.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8713 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/rt/include/chschd.h')
-rw-r--r--os/rt/include/chschd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/rt/include/chschd.h b/os/rt/include/chschd.h
index 5c81fdf2d..93b72ec31 100644
--- a/os/rt/include/chschd.h
+++ b/os/rt/include/chschd.h
@@ -180,7 +180,7 @@ struct ch_threads_list {
/**
* @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_prev; /**< @brief Previous in the queue. */
};
@@ -478,7 +478,7 @@ struct ch_system {
*/
kernel_stats_t kernel_stats;
#endif
-#if CH_CFG_NO_IDLE_THREAD == FALSE
+#if (CH_CFG_NO_IDLE_THREAD == FALSE) || defined(__DOXYGEN__)
/**
* @brief Idle thread working area.
*/