summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/pthread.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-06-14 17:23:03 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-06-22 14:00:28 +0200
commit6bab009a61ae9ca7f7ac76140f8f13fbaab784c6 (patch)
tree7f10aaf87cf912151429fb1cfbde65071e804d87 /cpukit/posix/src/pthread.c
parentposix: Delete POSIX_API_Control::schedpolicy (diff)
downloadrtems-6bab009a61ae9ca7f7ac76140f8f13fbaab784c6.tar.bz2
posix: Delete POSIX_API_Control::schedparam
This field was redundant.
Diffstat (limited to 'cpukit/posix/src/pthread.c')
-rw-r--r--cpukit/posix/src/pthread.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/cpukit/posix/src/pthread.c b/cpukit/posix/src/pthread.c
index 33c2830aef..ead24cf4f7 100644
--- a/cpukit/posix/src/pthread.c
+++ b/cpukit/posix/src/pthread.c
@@ -116,7 +116,9 @@ void _POSIX_Threads_Sporadic_budget_TSR( Watchdog_Control *watchdog )
_Watchdog_Per_CPU_remove_relative( &api->Sporadic_timer );
_POSIX_Threads_Sporadic_timer_insert( the_thread, api );
- new_priority = _POSIX_Priority_To_core( api->schedparam.sched_priority );
+ new_priority = _POSIX_Priority_To_core(
+ api->Attributes.schedparam.sched_priority
+ );
_Thread_State_release( the_thread, &lock_context );
@@ -167,7 +169,9 @@ void _POSIX_Threads_Sporadic_budget_callout(
_Thread_Change_priority(
the_thread,
- _POSIX_Priority_To_core( api->schedparam.sched_ss_low_priority ),
+ _POSIX_Priority_To_core(
+ api->Attributes.schedparam.sched_ss_low_priority
+ ),
NULL,
_POSIX_Threads_Sporadic_budget_callout_filter,
true
@@ -193,9 +197,9 @@ static bool _POSIX_Threads_Create_extension(
/* XXX check all fields are touched */
api->thread = created;
_POSIX_Threads_Initialize_attributes( &api->Attributes );
- api->schedparam = _POSIX_Threads_Default_attributes.schedparam;
- api->schedparam.sched_priority =
- _POSIX_Priority_From_core( created->current_priority );
+ api->Attributes.schedparam.sched_priority = _POSIX_Priority_From_core(
+ created->current_priority
+ );
/*
* If the thread is not a posix thread, then all posix signals are blocked