diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2007-10-01 17:42:47 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2007-10-01 17:42:47 +0000 |
commit | 3a90ab685aaae59f242ae31260e67e9125ae78cd (patch) | |
tree | 1413d1fa5a06ee7e720a1de121c537bb1ecb1c45 /src/include/ch.h | |
parent | 9a0ef300bce50901d5de3d6d722e29b79a2f9a36 (diff) | |
download | ChibiOS-3a90ab685aaae59f242ae31260e67e9125ae78cd.tar.gz ChibiOS-3a90ab685aaae59f242ae31260e67e9125ae78cd.tar.bz2 ChibiOS-3a90ab685aaae59f242ae31260e67e9125ae78cd.zip |
Preparation for AVR core support.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@27 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/include/ch.h')
-rw-r--r-- | src/include/ch.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/include/ch.h b/src/include/ch.h index 80204bb2d..aa77df544 100644 --- a/src/include/ch.h +++ b/src/include/ch.h @@ -25,8 +25,6 @@ #ifndef _CH_H_
#define _CH_H_
-typedef struct Thread Thread;
-
#ifndef __DOXIGEN__
#ifndef _CHCONF_H_
#include <chconf.h>
@@ -41,14 +39,22 @@ typedef struct Thread Thread; #endif
#endif /* __DOXIGEN__ */
-#ifndef _DELTA_H_
+#ifndef _LISTS_H_
#include "delta.h"
#endif
+#ifndef _LISTS_H_
+#include "lists.h"
+#endif
+
#ifndef _SCHEDULER_H_
#include "scheduler.h"
#endif
+#ifndef _SEMAPHORES_H_
+#include "semaphores.h"
+#endif
+
#ifndef _EVENTS_H_
#include "events.h"
#endif
@@ -65,10 +71,6 @@ typedef struct Thread Thread; #include "sleep.h"
#endif
-#ifndef _SEMAPHORES_H_
-#include "semaphores.h"
-#endif
-
#ifndef _QUEUES_H_
#include "queues.h"
#endif
|