From 51e008dda169dcfed0cfb2d64328811107974845 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 23 Jun 2016 11:49:22 +0200 Subject: posix: Fix pthread_create() Do not access data of the executing thread without proper locks. --- cpukit/posix/src/pthreadcreate.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/cpukit/posix/src/pthreadcreate.c b/cpukit/posix/src/pthreadcreate.c index 54b6a71040..411882d532 100644 --- a/cpukit/posix/src/pthreadcreate.c +++ b/cpukit/posix/src/pthreadcreate.c @@ -27,6 +27,7 @@ #include #include +#include #include #include #include @@ -103,7 +104,6 @@ int pthread_create( #endif executing = _Thread_Get_executing(); - scheduler = _Scheduler_Get_own( executing ); /* * P1003.1c/Draft 10, p. 121. @@ -115,9 +115,12 @@ int pthread_create( */ switch ( the_attr->inheritsched ) { case PTHREAD_INHERIT_SCHED: - api = executing->API_Extensions[ THREAD_API_POSIX ]; - schedpolicy = api->Attributes.schedpolicy; - schedparam = api->Attributes.schedparam; + error = pthread_getschedparam( + pthread_self(), + &schedpolicy, + &schedparam + ); + _Assert( error == 0 ); break; case PTHREAD_EXPLICIT_SCHED: -- cgit v1.2.3