diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-02-26 10:06:37 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-02-26 10:06:37 +0000 |
commit | e628eeb8528f8d23d47ca5bf04ab0ee4fe3238ca (patch) | |
tree | 517c755ff9c0440526906985d15083595d83bebc /os/rt/include | |
parent | c2a407c4d58b69cda4c1f7504bbf79c1aeffb594 (diff) | |
download | ChibiOS-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.h | 6 |
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
};
/*===========================================================================*/
|