summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-10-20 19:14:53 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-10-25 08:01:02 +0200
commit28632b558c70c8edd60179bbde8e41d552d61752 (patch)
tree67d3f1a6b1bb9fe0e1e8fb6626c225806d63edaf /cpukit
parentrtems: Fix rate monotonic statistics (diff)
downloadrtems-28632b558c70c8edd60179bbde8e41d552d61752.tar.bz2
score: Fix typo
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/include/rtems/score/schedulersmpimpl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/include/rtems/score/schedulersmpimpl.h b/cpukit/include/rtems/score/schedulersmpimpl.h
index dbfc241b18..dd0551972c 100644
--- a/cpukit/include/rtems/score/schedulersmpimpl.h
+++ b/cpukit/include/rtems/score/schedulersmpimpl.h
@@ -590,7 +590,7 @@ static inline void _Scheduler_SMP_Release_idle_thread(
*
* @param[in, out] idle The thread to extract the node of.
*/
-static inline void _Scheduler_SMP_Exctract_idle_thread(
+static inline void _Scheduler_SMP_Extract_idle_thread(
Thread_Control *idle
)
{
@@ -1768,7 +1768,7 @@ static inline Thread_Control *_Scheduler_SMP_Remove_processor(
_Assert( victim_owner == victim_user );
_Assert( _Scheduler_Node_get_idle( victim_node ) == NULL );
idle = victim_owner;
- _Scheduler_SMP_Exctract_idle_thread( idle );
+ _Scheduler_SMP_Extract_idle_thread( idle );
}
return idle;