summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadglobalconstruction.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-05-20score: Split _Thread_Restart()Sebastian Huber1-6/+4
Split _Thread_Restart() into _Thread_Restart_self() and _Thread_Restart_other(). Move content of existing _Thread_Restart_self() into new _Thread_Restart_self(). Avoid Giant lock for thread restart. _Thread_Restart_self() is a no-return function and used by _Thread_Global_construction(). Update #2555. Update #2626.
2016-03-23score: Add and use RTEMS_UNREACHABLESebastian Huber1-2/+1
2016-01-11score: Introduce Thread_Entry_informationSebastian Huber1-14/+5
This avoids potential dead code in _Thread_Handler(). It gets rid of the dangerous function pointer casts. Update #2514.
2016-01-08score: Avoid dead code in global constructionSebastian Huber1-17/+1
Update #2514.
2016-01-04Remove M32R architectureJoel Sherrill1-3/+1
updates #2446.
2014-10-16score: Fix compile error for POSIX disabledSebastian Huber1-2/+1
2014-10-13score: Rework global constructionSebastian Huber1-0/+94
Ensure that the global construction is performed in the context of the first initialization thread. On SMP this was not guaranteed in the previous implementation.