From e1fc243323f9f0fab2b7b9912c0211522efe0dc2 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 8 Mar 2011 22:14:14 +0000 Subject: 2011-03-08 Joel Sherrill PR 1759/cpukit * posix/src/cancel.c, posix/src/pthreaddetach.c, posix/src/pthreadequal.c, posix/src/pthreadgetschedparam.c, posix/src/pthreadjoin.c, posix/src/pthreadkill.c, posix/src/pthreadsetschedparam.c: Some POSIX pthread services did not support using Classic API Task Ids. --- cpukit/posix/src/pthreadgetschedparam.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/posix/src/pthreadgetschedparam.c') diff --git a/cpukit/posix/src/pthreadgetschedparam.c b/cpukit/posix/src/pthreadgetschedparam.c index 6b981c3d1e..b8e0a83153 100644 --- a/cpukit/posix/src/pthreadgetschedparam.c +++ b/cpukit/posix/src/pthreadgetschedparam.c @@ -36,7 +36,7 @@ int pthread_getschedparam( if ( !policy || !param ) return EINVAL; - the_thread = _POSIX_Threads_Get( thread, &location ); + the_thread = _Thread_Get( thread, &location ); switch ( location ) { case OBJECTS_LOCAL: -- cgit v1.2.3