summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/pthreaddetach.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-03-08 22:14:56 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-03-08 22:14:56 +0000
commit97b6dc0bb9fe356d8d3b893aba0031c8a1d3f2e4 (patch)
treee5faa2d3c9f3eed724ac4431c040c03d4ee7c522 /cpukit/posix/src/pthreaddetach.c
parent2011-03-07 Joel Sherrill <joel.sherrilL@OARcorp.com> (diff)
downloadrtems-97b6dc0bb9fe356d8d3b893aba0031c8a1d3f2e4.tar.bz2
2011-03-08 Joel Sherrill <joel.sherrilL@OARcorp.com>
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.
Diffstat (limited to 'cpukit/posix/src/pthreaddetach.c')
-rw-r--r--cpukit/posix/src/pthreaddetach.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/posix/src/pthreaddetach.c b/cpukit/posix/src/pthreaddetach.c
index 06a95bfd05..6078fcc97e 100644
--- a/cpukit/posix/src/pthreaddetach.c
+++ b/cpukit/posix/src/pthreaddetach.c
@@ -30,7 +30,7 @@ int pthread_detach(
POSIX_API_Control *api;
Objects_Locations location;
- the_thread = _POSIX_Threads_Get( thread, &location );
+ the_thread = _Thread_Get( thread, &location );
switch ( location ) {
case OBJECTS_LOCAL: