aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/include/ch.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-08-10 08:07:43 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-08-10 08:07:43 +0000
commitc3dc5598c315f4650bfcd1e595104a2ace7aa87c (patch)
tree890774f4ca76e9729624adfc0254544791e9cecb /os/kernel/include/ch.h
parent16712a78831d021d9ee40ade082aefafc9aea196 (diff)
downloadChibiOS-c3dc5598c315f4650bfcd1e595104a2ace7aa87c.tar.gz
ChibiOS-c3dc5598c315f4650bfcd1e595104a2ace7aa87c.tar.bz2
ChibiOS-c3dc5598c315f4650bfcd1e595104a2ace7aa87c.zip
Global variables consolidation.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6116 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel/include/ch.h')
-rw-r--r--os/kernel/include/ch.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/os/kernel/include/ch.h b/os/kernel/include/ch.h
index d2a29ac0c..a3d475db4 100644
--- a/os/kernel/include/ch.h
+++ b/os/kernel/include/ch.h
@@ -100,9 +100,9 @@
#endif
/** @} */
-/* Forward declaration of the thread structure, it is used in most
- modules.*/
+/* Forward declarations.*/
typedef struct thread thread_t;
+typedef struct virtual_timer virtual_timer_t;
/* Inclusion of all the kernel sub-headers.*/
#include "chconf.h"
@@ -111,6 +111,7 @@ typedef struct thread thread_t;
#include "chcore.h"
#include "chtm.h"
#include "chstats.h"
+#include "chglobal.h"
#include "chsys.h"
#include "chvt.h"
#include "chthreads.h"