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/pthreadequal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/posix/src/pthreadequal.c') diff --git a/cpukit/posix/src/pthreadequal.c b/cpukit/posix/src/pthreadequal.c index 5fbe0c4f5e..9944026f3e 100644 --- a/cpukit/posix/src/pthreadequal.c +++ b/cpukit/posix/src/pthreadequal.c @@ -51,7 +51,7 @@ int pthread_equal( * Validate the first id and return 0 if it is not valid */ - (void) _POSIX_Threads_Get( t1, &location ); + (void) _Thread_Get( t1, &location ); switch ( location ) { case OBJECTS_LOCAL: @@ -60,7 +60,7 @@ int pthread_equal( * Validate the second id and return 0 if it is not valid */ - (void) _POSIX_Threads_Get( t2, &location ); + (void) _Thread_Get( t2, &location ); switch ( location ) { case OBJECTS_LOCAL: -- cgit v1.2.3