summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threaddispatch.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-06-14 09:14:31 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-30 09:53:25 +0200
commitd5ef7ae2a36bee532702d609f1dbb209cc47dd29 (patch)
treefe23444d0b02c06e7447ab169c88f7a16258bf5f /cpukit/score/src/threaddispatch.c
parentscore: Move _Thread_Dispatch_if_necessary() (diff)
downloadrtems-d5ef7ae2a36bee532702d609f1dbb209cc47dd29.tar.bz2
smp: Delete _SMP_Request_other_cores_to_dispatch()
Use an event triggered unicast to inform remote processors about a necessary thread dispatch instead.
Diffstat (limited to 'cpukit/score/src/threaddispatch.c')
-rw-r--r--cpukit/score/src/threaddispatch.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/cpukit/score/src/threaddispatch.c b/cpukit/score/src/threaddispatch.c
index ac906e44d9..c5d0a2199b 100644
--- a/cpukit/score/src/threaddispatch.c
+++ b/cpukit/score/src/threaddispatch.c
@@ -65,11 +65,6 @@ void _Thread_Dispatch( void )
* once someone calls _Thread_Dispatch().
*/
_Thread_Disable_dispatch();
-
- /*
- * If necessary, send dispatch request to other cores.
- */
- _SMP_Request_other_cores_to_dispatch();
#else
_Thread_Dispatch_set_disable_level( 1 );
#endif