aboutsummaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-01-17 09:34:46 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-01-17 09:34:46 +0000
commit3e62617990c8fcea0649eacd6f769f4e544b920d (patch)
tree6c1ac8f7bd61bdc63186af8002d649857cb1140c /src/include
parente8aefc848a06089e99abd665db850483907f95b6 (diff)
downloadChibiOS-3e62617990c8fcea0649eacd6f769f4e544b920d.tar.gz
ChibiOS-3e62617990c8fcea0649eacd6f769f4e544b920d.tar.bz2
ChibiOS-3e62617990c8fcea0649eacd6f769f4e544b920d.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@178 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/include')
-rw-r--r--src/include/ch.h14
-rw-r--r--src/include/lists.h2
2 files changed, 6 insertions, 10 deletions
diff --git a/src/include/ch.h b/src/include/ch.h
index dcb486626..52d3dd772 100644
--- a/src/include/ch.h
+++ b/src/include/ch.h
@@ -27,9 +27,6 @@
#define _CHIBIOS_RT_
-struct Thread;
-
-#ifndef __DOXIGEN__
#ifndef _CHCONF_H_
#include <chconf.h>
#endif
@@ -38,19 +35,18 @@ struct Thread;
#include <chtypes.h>
#endif
+#ifndef _LISTS_H_
+#include "lists.h"
+#endif
+
#ifndef _CHCORE_H_
#include <chcore.h>
#endif
-#endif /* __DOXIGEN__ */
-#ifndef _LISTS_H_
+#ifndef _DELTA_H_
#include "delta.h"
#endif
-#ifndef _LISTS_H_
-#include "lists.h"
-#endif
-
#ifndef _SCHEDULER_H_
#include "scheduler.h"
#endif
diff --git a/src/include/lists.h b/src/include/lists.h
index 2a8f20e82..1038cb340 100644
--- a/src/include/lists.h
+++ b/src/include/lists.h
@@ -32,7 +32,7 @@ typedef struct Thread Thread;
#define notempty(p) ((p)->p_next != (Thread *)(p))
/**
- * Generic threads FIFO queue header and element.
+ * Generic threads queue header and element.
*/
typedef struct {
/** Next \p Thread in the queue, in FIFO order.*/