aboutsummaryrefslogtreecommitdiffstats
path: root/os/rt/include
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2016-02-26 10:06:37 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2016-02-26 10:06:37 +0000
commite628eeb8528f8d23d47ca5bf04ab0ee4fe3238ca (patch)
tree517c755ff9c0440526906985d15083595d83bebc /os/rt/include
parentc2a407c4d58b69cda4c1f7504bbf79c1aeffb594 (diff)
downloadChibiOS-e628eeb8528f8d23d47ca5bf04ab0ee4fe3238ca.tar.gz
ChibiOS-e628eeb8528f8d23d47ca5bf04ab0ee4fe3238ca.tar.bz2
ChibiOS-e628eeb8528f8d23d47ca5bf04ab0ee4fe3238ca.zip
Removed idle working area from the 'ch' structure because alignment constraints.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8949 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/rt/include')
-rw-r--r--os/rt/include/chschd.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/os/rt/include/chschd.h b/os/rt/include/chschd.h
index 6af0cdedb..f442286c9 100644
--- a/os/rt/include/chschd.h
+++ b/os/rt/include/chschd.h
@@ -490,12 +490,6 @@ struct ch_system {
*/
kernel_stats_t kernel_stats;
#endif
-#if CH_CFG_NO_IDLE_THREAD == FALSE
- /**
- * @brief Idle thread working area.
- */
- THD_WORKING_AREA(idle_thread_wa, PORT_IDLE_THREAD_STACK_SIZE);
-#endif
};
/*===========================================================================*/